Method | Description | |
---|---|---|
DrawBitmap ( byte data, int width, byte palette ) : |
Computes height and draws bitmap.
|
|
DrawBitmap ( byte data, int width, int height, RenderOptions options ) : |
Draws bitmap.
|
|
DrawBitmap ( byte data, int width, int height, byte palette ) : |
Draws bitmap.
|
|
LoadBitmap ( |
Converts bitmap to byte array using external palette.
|
public static DrawBitmap ( byte data, int width, byte palette ) : |
||
data | byte | /// Image pixel data. /// |
width | int | /// Output image width. /// |
palette | byte | /// Used palette index. /// |
return |
public static DrawBitmap ( byte data, int width, int height, RenderOptions options ) : |
||
data | byte | /// Image pixel data. /// |
width | int | /// Output image width. /// |
height | int | /// Output image height. /// |
options | RenderOptions | /// More rendering options. /// |
return |
public static DrawBitmap ( byte data, int width, int height, byte palette ) : |
||
data | byte | /// Image pixel data. /// |
width | int | /// Output image width. /// |
height | int | /// Output image height. /// |
palette | byte | /// Used palette index. /// |
return |
public static LoadBitmap ( |
||
bmp | ||
palette | ImagePalette | |
return | byte[] |