C# Class AlbLib.Imaging.ILBMImage

Inheritance: ImageBase, IRenderable
Afficher le fichier Open project: IllidanS4/AlbLib

Méthodes publiques

Méthode 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 méthode

Creates new instance.
public static FromRawData ( byte data ) : ILBMImage
data byte
Résultat ILBMImage

FromStream() public static méthode

Creates new instance.
public static FromStream ( Stream stream ) : ILBMImage
stream Stream
Résultat ILBMImage

GetHeight() public méthode

public GetHeight ( ) : int
Résultat int

GetWidth() public méthode

public GetWidth ( ) : int
Résultat int

ILBMImage() public méthode

public ILBMImage ( Stream stream ) : System
stream Stream /// Stream containing ILBM image data. ///
Résultat System

ILBMImage() public méthode

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

Render() public méthode

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

Render() public méthode

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

RenderTiny() public méthode

Draws the thumbnail to bitmap.
public RenderTiny ( ) : Image
Résultat Image

RenderTiny() public méthode

Draws the thumbnail to bitmap.
public RenderTiny ( RenderOptions options ) : Image
options RenderOptions
Résultat Image

ToRawData() public méthode

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