C# Class AlbLib.Imaging.ILBMImage

Inheritance: ImageBase, IRenderable
ファイルを表示 Open project: IllidanS4/AlbLib

Public Methods

Method Description
FromRawData ( byte data ) : ILBMImage

Creates new instance.

FromStream ( Stream stream ) : ILBMImage

Creates new instance.

GetHeight ( ) : int
GetWidth ( ) : int
ILBMImage ( Stream stream ) : System
ILBMImage ( byte rawdata ) : System
Render ( ) : Image

Draws the image to bitmap using its own palette.

Render ( RenderOptions options ) : Image

Draws the image to bitmap using rendering options.

RenderTiny ( ) : Image

Draws the thumbnail to bitmap.

RenderTiny ( RenderOptions options ) : Image

Draws the thumbnail to bitmap.

ToRawData ( ) : byte[]

Converts entire image to format-influenced byte array.

Method Details

FromRawData() public static method

Creates new instance.
public static FromRawData ( byte data ) : ILBMImage
data byte
return ILBMImage

FromStream() public static method

Creates new instance.
public static FromStream ( Stream stream ) : ILBMImage
stream Stream
return ILBMImage

GetHeight() public method

public GetHeight ( ) : int
return int

GetWidth() public method

public GetWidth ( ) : int
return int

ILBMImage() public method

public ILBMImage ( Stream stream ) : System
stream Stream /// Stream containing ILBM image data. ///
return System

ILBMImage() public method

public ILBMImage ( byte rawdata ) : System
rawdata byte /// Byte array containing ILBM image data. ///
return System

Render() public method

Draws the image to bitmap using its own palette.
public Render ( ) : Image
return Image

Render() public method

Draws the image to bitmap using rendering options.
public Render ( RenderOptions options ) : Image
options RenderOptions /// Rendering options. ///
return Image

RenderTiny() public method

Draws the thumbnail to bitmap.
public RenderTiny ( ) : Image
return Image

RenderTiny() public method

Draws the thumbnail to bitmap.
public RenderTiny ( RenderOptions options ) : Image
options RenderOptions
return Image

ToRawData() public method

Converts entire image to format-influenced byte array.
public ToRawData ( ) : byte[]
return byte[]