Are there any mechanism within Windows Mobile programming to rotate a Bitmap?

I would like to rotate this to any angle.

link|improve this question

74% accept rate
Clarify please, do you want to rotate the image 90/180/270 degrees or at any angle? – zxcat Sep 3 '09 at 19:24
1  
Dupe of: stackoverflow.com/questions/875419/… – ctacke Sep 10 '09 at 19:26
feedback

1 Answer

You have to do this yourself in code, since RotateTransform isn't available in CF:

public Bitmap GetRotatedBitmap(Bitmap original)
{
    Bitmap output = new Bitmap(original.Height, original.Width);
    for (int x = 0; x < output.Width; x++)
    {
        for (int y = 0; y < output.Height; y++)
        {
            output.SetPixel(x, y, original.GetPixel(y, x));
        }
    }
    return output;
}

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).

link|improve this answer
+1 for the logo.. Great answser too. – Daniel M Nov 13 '09 at 2:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.