Am 13.09.2013 um 16:22 schrieb Koua Lo <[email protected]>: > Rotating picture seems to require a background color. I have a small icon > that I like to rotate in real time. How do I rotate the picture without > having a solid background color?
Function Rotate(extends p as Picture, angle as double) As Picture dim m as Picture = p.mask.RotateMBS(angle) dim q as Picture = p.RotateMBS(angle) q.mask.Graphics.DrawPicture m,0,0 Return q End Function this rotates a masked picture. Greetings Christian -- Read our blog about news on our plugins: http://www.mbsplugins.de/ _______________________________________________ Mbsplugins_monkeybreadsoftware.info mailing list [email protected] https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info
