2011-07-06 143 views

回答

1
+0

我不想旋轉圖像視圖我需要旋轉iamge比保存 – Harshal

+0

檢查更新,我想,你想最後一個環節;) –

1
CGSize size = sizeOfImage; 
UIGraphicsBeginImageContext(size); 
CGContextRef ctx = UIGraphicsGetCurrentContext(); 
CGContextRotateCTM(ctx, angleInRadians); 
CGContextDrawImage(UIGraphicsGetCurrentContext(), 
    CGRectMake(0,0,size.width, size.height), 
    image); 

UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); 
UIGraphicsEndImageContext(); 
return image; 
+0

可以請讓我知道什麼將會在foll: sizeOfImage image(在cgrectmake) – Harshal

+0

你應該聲明來源你複製。 http://stackoverflow.com/questions/917713/uiimage-rotation-custom-degrees/918794#918794。 –

1

您可以使用imageWithCGImage:scale:orientation:(從4.0)