How to draw an image with an angle using Graphics.DrawImage()?
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, I wanted to draw an image with an angle ____ | | | | | | ---- to . ____ . / / / / / / ---- Is it possible using Graphics.DrawImage()? How will I do it? Please comment. Thank you.
-
Hi, I wanted to draw an image with an angle ____ | | | | | | ---- to . ____ . / / / / / / ---- Is it possible using Graphics.DrawImage()? How will I do it? Please comment. Thank you.
You can use Graphics::RotateTransform()[^] before calling DrawImage(). Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
You can use Graphics::RotateTransform()[^] before calling DrawImage(). Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
Ok, Thank you very much.