【图片旋转】很怪异的问题

程老师2088 2014-09-11 11:41:44
从相册里面拿到一张照片,如果是自己手机上拍的图片,旋转就会出现问题,如果是外部导入的图片,旋转就正确。。实在不知道怎么回事。。附上旋转的代码。。

- (UIImage *)rotatedImage:(UIImage *)imageToRotate withRotion:(NSInteger)rotation
{

CGFloat rotationAngle = rotation * M_PI / 180;
CGSize imageSize = imageToRotate.size;

// Image size after the transformation
CGSize outputSize = [self sizeForRotatedImage:imageToRotate withRotation:rotation];


CGSize absoluteOutputSize = CGSizeAbsolute(outputSize);


UIImage *outputImage = nil;

// Create the bitmap context
UIGraphicsBeginImageContext(absoluteOutputSize);
CGContextRef imageContextRef = UIGraphicsGetCurrentContext();

// Set the anchor point to {0.5, 0.5}
CGContextTranslateCTM(imageContextRef, .5 * absoluteOutputSize.width, .5 * absoluteOutputSize.height);

// Apply rotation
CGContextRotateCTM(imageContextRef, rotationAngle);

// Draw the current image
CGContextScaleCTM(imageContextRef, 1.0, -1.0);
CGContextDrawImage(imageContextRef, (CGRect) {{-(.5 * imageSize.width), -(.5 * imageSize.height)}, imageSize}, imageToRotate.CGImage);

outputImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();


return outputImage;
}

- (CGSize)sizeForRotatedImage:(UIImage *)imageToRotate withRotation:(NSInteger)rotation
{
if (imageToRotate == nil) {
return CGSizeMake(0, 0);
}

CGFloat rotationAngle = rotation * M_PI / 180;

CGSize imageSize = imageToRotate.size;
// Image size after the transformation
CGSize outputSize = CGSizeApplyAffineTransform(imageSize, CGAffineTransformMakeRotation(rotationAngle));

return outputSize;
}
...全文
211 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
流火緋瞳 2016-02-23
  • 打赏
  • 举报
回复
遇到同样的问题,楼主最后的解决方法能否共享一下呢?
Bannings 2014-09-12
  • 打赏
  • 举报
回复
引用 6 楼 chengzhf 的回复:
我的解决办法是用imageWithCGImage:scale:orientation:方法把orientation恢复为0,但此时图像也旋转了,我根据原始图片不同的orientation再旋回来就好了。。标准化处理。。 不知道还有没有更好的办法。。。
标准化处理会麻烦很多,特别是有对图片进行操作的时候(scale、crop等),简单粗暴的用我上面的方法也不会有任何问题,因为它在内部也是通过标准化的方法处理的,外层就不用考虑那么多了
程老师2088 2014-09-12
  • 打赏
  • 举报
回复
楼上的厉害 哈哈 问题解决 学习了!
程老师2088 2014-09-11
  • 打赏
  • 举报
回复
偏偏imageOrientation是个只读属性。。
程老师2088 2014-09-11
  • 打赏
  • 举报
回复
我发现跟图像的imageOrientation属性有关,当imageOrientation=0的时候是正常的。当imageOrientation=2或3的时候就不正常了。。正在研究怎么处理。。。。有没有高人告诉我一下啊。。。版主大大。。。
梦一场Monster 2014-09-11
  • 打赏
  • 举报
回复
图片大小你都设置一样试试,应该是你没有自动识别图片的大小
程老师2088 2014-09-11
  • 打赏
  • 举报
回复
CGSize CGSizeAbsolute(CGSize size) { return (CGSize){fabs(size.width), fabs(size.height)}; } 少了一点~~
程老师2088 2014-09-11
  • 打赏
  • 举报
回复
我的解决办法是用imageWithCGImage:scale:orientation:方法把orientation恢复为0,但此时图像也旋转了,我根据原始图片不同的orientation再旋回来就好了。。标准化处理。。 不知道还有没有更好的办法。。。
Bannings 2014-09-11
  • 打赏
  • 举报
回复
这是因为图片是有元数据的,你发现的imageOrientation只是其中元数据的一种,有两种方式处理: 一。在draw的时候判断图片方向 二。把方向数据干掉:

- (UIImage *)fixOrientation:(UIImage *)aImage {
    
    // No-op if the orientation is already correct
    if (aImage.imageOrientation == UIImageOrientationUp) 
        return aImage;
    
    // We need to calculate the proper transformation to make the image upright.
    // We do it in 2 steps: Rotate if Left/Right/Down, and then flip if Mirrored.
    CGAffineTransform transform = CGAffineTransformIdentity;
    
    switch (aImage.imageOrientation) {
        case UIImageOrientationDown:
        case UIImageOrientationDownMirrored:
            transform = CGAffineTransformTranslate(transform, aImage.size.width, aImage.size.height);
            transform = CGAffineTransformRotate(transform, M_PI);
            break;
            
        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
            transform = CGAffineTransformTranslate(transform, aImage.size.width, 0);
            transform = CGAffineTransformRotate(transform, M_PI_2);
            break;
            
        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            transform = CGAffineTransformTranslate(transform, 0, aImage.size.height);
            transform = CGAffineTransformRotate(transform, -M_PI_2);
            break;
        default:
            break;
    }
    
    switch (aImage.imageOrientation) {
        case UIImageOrientationUpMirrored:
        case UIImageOrientationDownMirrored:
            transform = CGAffineTransformTranslate(transform, aImage.size.width, 0);
            transform = CGAffineTransformScale(transform, -1, 1);
            break;
            
        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRightMirrored:
            transform = CGAffineTransformTranslate(transform, aImage.size.height, 0);
            transform = CGAffineTransformScale(transform, -1, 1);
            break;
        default:
            break;
    }
    
    // Now we draw the underlying CGImage into a new context, applying the transform
    // calculated above.
    CGContextRef ctx = CGBitmapContextCreate(NULL, aImage.size.width, aImage.size.height,
                                             CGImageGetBitsPerComponent(aImage.CGImage), 0,
                                             CGImageGetColorSpace(aImage.CGImage),
                                             CGImageGetBitmapInfo(aImage.CGImage));
    CGContextConcatCTM(ctx, transform);
    switch (aImage.imageOrientation) {
        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            // Grr...
            CGContextDrawImage(ctx, CGRectMake(0,0,aImage.size.height,aImage.size.width), aImage.CGImage);
            break;
            
        default:
            CGContextDrawImage(ctx, CGRectMake(0,0,aImage.size.width,aImage.size.height), aImage.CGImage);
            break;
    }
    
    // And now we just create a new UIImage from the drawing context
    CGImageRef cgimg = CGBitmapContextCreateImage(ctx);
    UIImage *img = [UIImage imageWithCGImage:cgimg];
    CGContextRelease(ctx);
    CGImageRelease(cgimg);
    return img;
}

29,027

社区成员

发帖
与我相关
我的任务
社区描述
主要讨论与iOS相关的软件和技术
社区管理员
  • iOS
  • 大熊猫侯佩
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧