In my app, I can rotate the image by 90 degrees. When I rotate a no of times... it is getting blurred and the image loses quality. Here i the code I am using:
(UIImage *)rotateImage:(UIImage *) img {
CGRect rect = CGRectMake(0, 0, img.size.width, img.size.height);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextRotateCTM(context, M_PI_2);
CGContextTranslateCTM(context,0, -(img.size.width));
[img drawInRect:CGRectMake(0, 0, img.size.height,img.size.width)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
appDelegate.savedImage=newImage;
UIGraphicsEndImageContext();
//CGContextRelease(context);
return newImage;
}
Can anyone suggest a btter way to implement this?
