Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
i guess you need to show the code that you have tried. – Leena Dec 11 '12 at 6:06
2  
I'm peering into my crystal ball, but it's all blurry...I tried turning it the other way to no avail... – Mitch Wheat Dec 11 '12 at 6:06
Please post the code which you are using for rotating. – ACB Dec 11 '12 at 6:09
1  
BTW, 49 questions asked, zero upvotes cast, and a 17% accept rate. Very poor. – Mitch Wheat Dec 11 '12 at 6:11
This is the code that I used for rotation. – Lakshmi Dec 11 '12 at 6:34
show 1 more comment

closed as not a real question by Mitch Wheat, Janak Nirmal, valex, Jeffrey, Alessandro Minoccheri Dec 12 '12 at 7:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Store the original image, the rotated image, and the amount of rotation. Every time the rotation angle goes over 360 (or under 0), subtract (or add) 360 (keeping the rotation angle betweeo 0 and 360 at all times, or between -180 and 180 if you prefer, or whatever) and rotate the original image that much to get the new rotated image.

share|improve this answer

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