C# 클래스 AlbLib.Imaging.Drawing

Main class which works with palettes and draws images.
파일 보기 프로젝트 열기: IllidanS4/AlbLib 1 사용 예제들

공개 메소드들

메소드 설명
DrawBitmap ( byte data, int width, byte palette ) : Bitmap

Computes height and draws bitmap.

DrawBitmap ( byte data, int width, int height, RenderOptions options ) : Bitmap

Draws bitmap.

DrawBitmap ( byte data, int width, int height, byte palette ) : Bitmap

Draws bitmap.

LoadBitmap ( Bitmap bmp, ImagePalette palette ) : byte[]

Converts bitmap to byte array using external palette.

메소드 상세

DrawBitmap() 공개 정적인 메소드

Computes height and draws bitmap.
public static DrawBitmap ( byte data, int width, byte palette ) : Bitmap
data byte /// Image pixel data. ///
width int /// Output image width. ///
palette byte /// Used palette index. ///
리턴 System.Drawing.Bitmap

DrawBitmap() 공개 정적인 메소드

Draws bitmap.
public static DrawBitmap ( byte data, int width, int height, RenderOptions options ) : Bitmap
data byte /// Image pixel data. ///
width int /// Output image width. ///
height int /// Output image height. ///
options RenderOptions /// More rendering options. ///
리턴 System.Drawing.Bitmap

DrawBitmap() 공개 정적인 메소드

Draws bitmap.
public static DrawBitmap ( byte data, int width, int height, byte palette ) : Bitmap
data byte /// Image pixel data. ///
width int /// Output image width. ///
height int /// Output image height. ///
palette byte /// Used palette index. ///
리턴 System.Drawing.Bitmap

LoadBitmap() 공개 정적인 메소드

Converts bitmap to byte array using external palette.
public static LoadBitmap ( Bitmap bmp, ImagePalette palette ) : byte[]
bmp System.Drawing.Bitmap
palette ImagePalette
리턴 byte[]