Transparent Images
| Mon, 2006-02-20 09:54 | |
|
Hi All,
This question has been posted many times but still iam not able to get clear answer. Can i use PNG image to draw a transparent image without the white background and is there any way to do this without using Mask image. If i have to use mask image is there any way to generate mask image dynamically. Thanks, Prabhu. |
|






Forum posts: 53
gc.SetFadingParameters(30,150);
gc.UseBrushPattern(iBackgroundImage);
gc.SetBrushStyle(CGraphicsContext::EPatternedBrush);
gc.SetDrawMode(CGraphicsContext::EDrawModeOR);
..... draw ur image
gc.DiscardBrushPattern();
gc.SetFaded(EFalse);
try different combinations of
drawmode with and with out brushpattern