0

UIImageWriteToSavedPhotosAlbum() 在我旋转图像之前工作得很好。根据条件,我想在保存之前旋转图像。但是当我这样做时,它恰好只有在旋转之后才具有低分辨率。

UIGraphicsBeginImageContextWithOptions(selectedPhoto.bounds.size, self.view.opaque, 2.0);
    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    myImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    if (rotate == true) {


        myImage = [myImage imageRotatedByDegrees:-90];
        UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil);
    }else {

        UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil);
    }

请问有什么提示吗?

4

1 回答 1

2

干得好。在orientation上设置特定的方向。使用时不要忘记释放rotatedImage。

UIImage *rotatedImage = [[UIImage alloc] initWithCGImage: originalImage.CGImage
                                                       scale: 1.0
                                                 orientation: UIImageOrientationLeft];
于 2012-04-10T10:05:29.803 回答