C# Image rotation

asp.net, c#, rotation

Solution

Image myImage = Image.FromFile("myimage.png");
myImage.RotateFlip(RotateFlipType.Rotate180FlipNone);

http://msdn.microsoft.com/en-us/library/system.drawing.image.rotateflip.aspx

Problem

What is the best way to rotate a image in asp.net I did use matrix.rotateAt but i can't get it to work so please tell me what is the best way? I should write out that hate to rotate a image with the image object.

Original source