Are there any mechanism within Windows Mobile programming to rotate a Bitmap?
I would like to rotate this to any angle.
|
Are there any mechanism within Windows Mobile programming to rotate a Bitmap? I would like to rotate this to any angle.
| |||||||
feedback
|
|
You have to do this yourself in code, since RotateTransform isn't available in CF:
SetPixel and GetPixel are absurdly slow; a faster way to do this is with the LockBits method (there are a number of questions on SO that show how to use this). | |||
|
feedback
|