[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Massimo

1/18/2005 1:05:00 PM

HI,

there is a way to rotate an EMF?
RotateFlip doesnt work with EMF.

How to copy EMF into a Bitmap and rotate it?

Thanks in advance.
Best Regards
Massimo
1 Answer

Andrew Deren

1/20/2005 8:11:00 PM

0

You can do:
Matrix m = new Matrix();
m.Rotate(angle);
g.Transform = m; // where g is Graphics object where you want to draw

"Massimo" wrote:

> HI,
>
> there is a way to rotate an EMF?
> RotateFlip doesnt work with EMF.
>
> How to copy EMF into a Bitmap and rotate it?
>
> Thanks in advance.
> Best Regards
> Massimo