C# Класс AlbLib.Imaging.ILBMImage

Наследование: ImageBase, IRenderable
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

FromRawData() публичный статический Метод

Creates new instance.
public static FromRawData ( byte data ) : ILBMImage
data byte
Результат ILBMImage

FromStream() публичный статический Метод

Creates new instance.
public static FromStream ( Stream stream ) : ILBMImage
stream Stream
Результат ILBMImage

GetHeight() публичный Метод

public GetHeight ( ) : int
Результат int

GetWidth() публичный Метод

public GetWidth ( ) : int
Результат int

ILBMImage() публичный Метод

public ILBMImage ( Stream stream ) : System
stream Stream /// Stream containing ILBM image data. ///
Результат System

ILBMImage() публичный Метод

public ILBMImage ( byte rawdata ) : System
rawdata byte /// Byte array containing ILBM image data. ///
Результат System

Render() публичный Метод

Draws the image to bitmap using its own palette.
public Render ( ) : Image
Результат Image

Render() публичный Метод

Draws the image to bitmap using rendering options.
public Render ( RenderOptions options ) : Image
options RenderOptions /// Rendering options. ///
Результат Image

RenderTiny() публичный Метод

Draws the thumbnail to bitmap.
public RenderTiny ( ) : Image
Результат Image

RenderTiny() публичный Метод

Draws the thumbnail to bitmap.
public RenderTiny ( RenderOptions options ) : Image
options RenderOptions
Результат Image

ToRawData() публичный Метод

Converts entire image to format-influenced byte array.
public ToRawData ( ) : byte[]
Результат byte[]