C# – Fast method to rotate image in .NET Compact Framework in C#

ccompact-frameworkgraphicswindows-mobile

Is there a fast way to rotate images in .NET Compact Framework.

I've found ways to do 90, 180,270, rotations but would like to be able to rotate images free form in similar speed.

Best Answer

90-, 180- or 270-degrees rotations require no calculation at all, only moving some data. On the other hand, free-angle rotations require heavy calculations. So this will never ba as fast as right-angle rotations...