Hi,
Tried the following with no luck:
Bitmap:= TBitmap.Create;
Bitmap.LoadFromFile('MyBitmap.bmp');
Bitmap.Transparent := true;
Bitmap.TransparentColor:=Bitmap.Canvas.Pixels[0, 0];
PaintBox1.Canvas.Draw(
(PaintBox1.Width - Bitmap.Width) div 2,
(PaintBox1.Height - Bitmap.Height) div 2,
Bitmap);
Am I doing something wrong or is transparency not possible in android?
/stab
