C# 클래스 AlbLib.Imaging.RawImage

상속: ImageBase
파일 보기 프로젝트 열기: IllidanS4/AlbLib 1 사용 예제들

공개 메소드들

메소드 설명
FromBitmap ( Bitmap bmp, ImagePalette palette ) : RawImage

Creates new instance.

FromRawData ( byte data ) : RawImage

Creates new instance.

FromStream ( Stream stream, int length ) : RawImage

Creates new instance.

GetHeight ( ) : int
GetWidth ( ) : int
RawImage ( Stream stream, int length ) : System

Initializes new instance.

RawImage ( Stream stream, int width, int height ) : System

Initializes new instance.

RawImage ( byte rawdata ) : System

Initializes new instance.

RawImage ( byte data, int width ) : System

Initializes new instance.

RawImage ( byte data, int width, int height ) : System

Initializes new instance.

ToRawData ( ) : byte[]

Converts entire image to format-influenced byte array.

메소드 상세

FromBitmap() 공개 정적인 메소드

Creates new instance.
public static FromBitmap ( Bitmap bmp, ImagePalette palette ) : RawImage
bmp System.Drawing.Bitmap
palette ImagePalette
리턴 RawImage

FromRawData() 공개 정적인 메소드

Creates new instance.
public static FromRawData ( byte data ) : RawImage
data byte
리턴 RawImage

FromStream() 공개 정적인 메소드

Creates new instance.
public static FromStream ( Stream stream, int length ) : RawImage
stream Stream
length int
리턴 RawImage

GetHeight() 공개 메소드

public GetHeight ( ) : int
리턴 int

GetWidth() 공개 메소드

public GetWidth ( ) : int
리턴 int

RawImage() 공개 메소드

Initializes new instance.
public RawImage ( Stream stream, int length ) : System
stream Stream
length int
리턴 System

RawImage() 공개 메소드

Initializes new instance.
public RawImage ( Stream stream, int width, int height ) : System
stream Stream
width int
height int
리턴 System

RawImage() 공개 메소드

Initializes new instance.
public RawImage ( byte rawdata ) : System
rawdata byte
리턴 System

RawImage() 공개 메소드

Initializes new instance.
public RawImage ( byte data, int width ) : System
data byte
width int
리턴 System

RawImage() 공개 메소드

Initializes new instance.
public RawImage ( byte data, int width, int height ) : System
data byte
width int
height int
리턴 System

ToRawData() 공개 메소드

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