Possible Duplicate:
How to Rotate a UIImage 90 degrees?

How to programmatically rotate image by 90 Degrees in iPhone?

link|improve this question

feedback

closed as exact duplicate by Vladimir, DarkDust, Parth Bhatt, Yi Jiang, Graviton Apr 10 '11 at 8:50

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

up vote 6 down vote accepted
//create rect
UIImageView *myImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"my_image.png"]];

//set point of rotation
myImageView.center = CGPointMake(100.0, 100.0);

//rotate rect
myImageView.transform = CGAffineTransformMakeRotation(3.14159265/2); //rotation in radians
link|improve this answer
Almost perfect answer. Just that you gave rotation by 180 degrees and I wanted by 90 degrees but apart from that it is exactly what I needed. Thanks a lot. :) – Parth Bhatt Apr 8 '11 at 5:04
Your welcome. :) – Sabobin Apr 8 '11 at 8:41
feedback

see this:

Rotate image in Quartz? Image is upside down! (iPhone)

http://cocoapi.wordpress.com/2009/03/23/iphone-how-to-rotate-an-image/

 myImage.center = CGPointMake(0, 0);
 myImage.transform = CGAffineTransformMakeRotation([degreesToRadians:imageRotationFix]);
link|improve this answer
feedback

Most direct method can be seen near the bottom of this thread: iPhone SDK: Orientation (Landscape and Portrait views) Hope that helps - Perry

link|improve this answer
feedback

this code will rotate the button..

UIButton *btn=[UIButton buttonWithType:UIButtonTypeRoundedRect];
[btn setFrame:CGRectMake(100, 100, 200, 44)];
btn.transform=CGAffineTransformMakeRotation(M_PI / -4);
[btn setTitle:@"RakeshBhatt" forState:UIControlStateNormal];
[self.view addSubview:btn];

same way u can rotate imageview.

link|improve this answer
feedback

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