Syntax
dbSetBitmapFormat(BitmapFormat)
Description
This command will set any future bitmap created to the following format. Be aware that not all surface formats support a render target bitmap. Here are some common values you can set:
#GDK_Bitmap_24bitRGB : 24-bit RGB pixel format with 8 bits per channel.
#GDK_Bitmap_16bitRGB : 16-bit RGB pixel format with 5 bits for red, 6 bits for green, and 5 bits for blue.
#GDK_Bitmap_16bit5b : 16-bit pixel format where 5 bits are reserved for each color.
#GDK_Bitmap_16bit5b1b: 16-bit pixel format where 5 bits are reserved for each color and 1 bit is reserved for alpha.
#GDK_Bitmap_16bitARGB: 16-bit ARGB pixel format with 4 bits for each channel.
#GDK_Bitmap_32bitARGB: 32-bit ARGB pixel format with alpha, using 8 bits per channel.
#GDK_Bitmap_32bitRGB : 32-bit RGB pixel format, where 8 bits are reserved for each color.
See Also