Search found 1 match

by igeka_szef
Mon Jul 28, 2008 2:29 pm
Forum: GFL SDK
Topic: Using gflSetColorAt function for monochromatic raster
Replies: 1
Views: 1597

Using gflSetColorAt function for monochromatic raster

I have problem with monochromatic raster (BitsPerComponent=1) when I use gflSetColorAt set color function. When I use function like that:

GFL_BITMAP *bmp;

GFL_COLOR col;
col.Red = 0;
col.Green = 0;
col.Blue = 0;
col.Alpha = 0;

int x, y;

gflSetColorAt( bmp, x, y, &col );

the function filled ...