I am stuck with a strange problem that, I have a image view which has to shown at some angle approx 5 degree.For that I rotate my UIImageView to 5 degree but the image in UIImageView not coming proper as it was before transformation.

For more understanding see images

image before rotation image after rotation

You can see the second image is looking like clipped from corners and looks some blur also.

My code for rotation:-

myimageView.transform = CGAffineTransformMakeRotation(radians(5));

Please suggest me how to solve this problem.

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Have you tried using CGContextRotateCTM(context, radians); and [sourceImage drawInRect:rect];?

link|improve this answer
Please elaborate , how to use this hint. – Gypsa Jan 25 at 10:56
feedback

Looks like there are several solutions located in this similar SO Q&A: Any quick and dirty anti-aliasing techniques for a rotated UIImageView?

If it is, in fact, just the edges that are jagged, try adding a 1px transparent border around in image content (this is a suggestion in the above link).

link|improve this answer
thanks for the answer but not solved the problem. – Gypsa Jan 25 at 10:57
feedback

Your Answer

 
or
required, but never shown

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