Peter Mello
unread,Sep 17, 2010, 12:23:47 PM9/17/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MetaDraw Developers Group
I'm saving a MetaDraw object to two database fields
ImageBytes = MDraw.SavePicture(ms, PictureSource.Picture,
PictureType.Metafile);
ImageBytesBMP = MDraw.SavePicture(ms, PictureSource.Picture,
PictureType.Bitmap);
I'm reading the ImageBytesBMP field to populate an image object in a
report and, despite setting transparency options, I get a black
background.
I use the following calls before SavePicture is called:
MDraw.BackColor = Color.Transparent;
MDraw.BackStyle = BackStyle.Transparent;
MDraw.FillColor = Color.Transparent;
Anyone had success with this or suggestions?
Thanks,
Peter