C# 클래스 AlbLib.Imaging.ILBMImage

상속: ImageBase, IRenderable
파일 보기 프로젝트 열기: IllidanS4/AlbLib

공개 메소드들

메소드 설명
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[]