up vote 1 down vote favorite
share [g+] share [fb]

I am rotating my image with the following code:

CGAffineTransform rotate = CGAffineTransformMakeRotation( [ratio floatValue] );
[imageView setTransform:rotate];

But it doesn't have sharp edges, does someone knows a solution for this?

Here's the link to the image i get: link

link|improve this question

75% accept rate
feedback

3 Answers

up vote 3 down vote accepted

The edges of the image itself look jagged because they are being placed into a pixel grid directly, and not being interpolated. Nearest Neighbor Interpolation is the simplest kind of interpolation, where if you have pixel grid A and you move your image to pixel grid B, the pixels in grid B are chosen by simply choosing the closest pixel from grid A. Other forms of interpolation choose a weighted average of the closest pixels to arrive at the pixel value in grid B.

Your image, with its jagged edges, looks like it's using nearest neighbor interpolation, which may be the default type of interpolation on an affine transform on an iphone.

When you use some other interpolation scheme other than nearest neighbor, you'll get aliasing effects, where the subsampling isn't perfect as you transfer from one pixel grid to another. That effect makes edges in the image itself seem blurrier than they otherwise would.

link|improve this answer
Thanks for your explaination, but do you know how i can do this in objective c for the iphone. – Ton Aug 1 '09 at 19:32
Maybe try setting CGInterpolationQuality to kCGInterpolationHigh – mmr Aug 1 '09 at 19:43
Do you have a example on ho to set that value. I just have my imageView with an UIImage inside it know. – Ton Aug 1 '09 at 22:17
feedback

Anytime you do transforms on an image (except in 90° increments) it is going to cause slightly softer edges due to pixel interpolation.

link|improve this answer
Oke, but i don't think my image has slight softer edges, it really looks ugly!, could you take a look at the image and tell me if you think its normal? i included the link in my question. – Ton Aug 1 '09 at 18:37
feedback

just add 1px transparent border to your image

CGRect imageRect = CGRectMake(0, 0, image.size.width, image.size.height);
UIGraphicsBeginImageContext( imageRect.size ); 
[image drawInRect:CGRectMake(1,1,image.size.width-2,image.size.height-2)];
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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