修正UIImage的Orientation属性

在 iOS 中展示图片时有时会遇到图片颠倒或者旋转展示的情况,通常来说这与图片的 orientation 值有关系。

照片的“方向”

相机拍摄照片时是没有方向概念的,只有使用者明确照片按照什么方向放置最合适,因此对于同一个方向的物体,例如 ^ 上箭头,相机可能的拍摄角度就有上下左右四种,能拍出 ^(上)、V(下)、<(左)、>(右) 这四种情况,而相机并不知道如何放置能正确表现其拍摄内容的方向性。所以现代相机中加入了方向传感器,能将拍摄时的相机方向记录下来,需要显示图片的数字设备就可以根据相机的方向信息来正确摆放目标图片达到合理展示效果。

而这一方向信息就存放于图像的 Exif 中。EXIF 是一种可交换图像文件格式,可以附加于 JPEG、TIFF、RIFF 格式的图像文件中,包含拍摄信息的内容和索引图或图像处理软件的版本等信息,也包括这里的方向信息 orientation。

orientation 定义了八个值

Value 0th Row 0th Column
1 top left side
2 top right side
3 bottom right side
4 bottom left side
5 left side top
6 right side top
7 right side bottom
8 left side bottom

它们具体的区分如下图所示

EXIFOrientation.png

从图中可以看到,表格将图片的 0th Row 定义为顶边线,0th Column 定义为左边线。例如,对于 orientation 为 1,顶边线就在顶部,左边线就在左边,所以这张照片就是以正常视角拍出来的。

正确展示照片

当我们需要在 iOS 中展示一个图片对象 UIImage 时,我们可以通过 UIImage 的 imageOrientation 属性获取到它的 orientation 信息,这是一个枚举值,它的定义如下

typedef NS_ENUM(NSInteger, UIImageOrientation) {
    UIImageOrientationUp,            // default orientation
    UIImageOrientationDown,          // 180 deg rotation
    UIImageOrientationLeft,          // 90 deg CCW
    UIImageOrientationRight,         // 90 deg CW
    UIImageOrientationUpMirrored,    // as above but image mirrored along other axis. horizontal flip
    UIImageOrientationDownMirrored,  // horizontal flip
    UIImageOrientationLeftMirrored,  // vertical flip
    UIImageOrientationRightMirrored, // vertical flip
};

对应到图片如下

UIImageOrientation.png

所以可以根据 UIImage 的 orientation 属性对 UIImage 做矩阵变换,获得正确方向下的图片再展示,就不会出现展示的图片旋转颠倒的情况了。

Github 有一个 UIImage 的 category 流传很广,就是解决这一问题的,恰好在项目的历史代码中看到了,下面是源码

- (UIImage *)fixOrientation {

    // No-op if the orientation is already correct
    if (self.imageOrientation == UIImageOrientationUp) return self;

    // 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 (self.imageOrientation) {
        case UIImageOrientationDown:
        case UIImageOrientationDownMirrored:
            transform = CGAffineTransformTranslate(transform, self.size.width, self.size.height);
            transform = CGAffineTransformRotate(transform, M_PI);
            break;

        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
            transform = CGAffineTransformTranslate(transform, self.size.width, 0);
            transform = CGAffineTransformRotate(transform, M_PI_2);
            break;

        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            transform = CGAffineTransformTranslate(transform, 0, self.size.height);
            transform = CGAffineTransformRotate(transform, -M_PI_2);
            break;
    }

    switch (self.imageOrientation) {
        case UIImageOrientationUpMirrored:
        case UIImageOrientationDownMirrored:
            transform = CGAffineTransformTranslate(transform, self.size.width, 0);
            transform = CGAffineTransformScale(transform, -1, 1);
            break;

        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRightMirrored:
            transform = CGAffineTransformTranslate(transform, self.size.height, 0);
            transform = CGAffineTransformScale(transform, -1, 1);
            break;
    }

    // Now we draw the underlying CGImage into a new context, applying the transform
    // calculated above.
    CGContextRef ctx = CGBitmapContextCreate(NULL, self.size.width, self.size.height,
                                             CGImageGetBitsPerComponent(self.CGImage), 0,
                                             CGImageGetColorSpace(self.CGImage),
                                             CGImageGetBitmapInfo(self.CGImage));
    CGContextConcatCTM(ctx, transform);
    switch (self.imageOrientation) {
        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            // Grr...
            CGContextDrawImage(ctx, CGRectMake(0,0,self.size.height,self.size.width), self.CGImage);
            break;

        default:
            CGContextDrawImage(ctx, CGRectMake(0,0,self.size.width,self.size.height), self.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;
}

这里用到了 CGAffineTransform 类来做矩阵变换,要注意一点是,合并两个 Transform 有两种方式,一种是 CGAffineTransformConcat(T1, T2),它的执行顺序是 T1 -> T2,一种是 CGAffineTransformXXX(T1, T2),它的执行顺序是 T2 -> T1,所以在这里要注意所有变换操作都是后加入的先执行。

fixOrientation 的基本思路是

  • 如果 orientation 为 UIImageOrientationUp 则不需要变换
  • 否则,首先对于镜像类 orientation 先恢复原样,变为非镜像
  • 对于非镜像类 orientation,旋转回正常方向
  • 根据旋转后的方向,利用 CoreGraphic 得到 UIImage 后返回

其中会有一些必要的移位操作,下面以 UIImageOrientationRightMirrored 为例进行具体操作说明

  • 这是 orientation 为 UIImageOrientationRightMirrored 的图片
Step01.png
  • transform = CGAffineTransformScale(transform, -1, 1) 将图片进行镜像还原
Step02.png
  • transform = CGAffineTransformTranslate(transform, image.size.height, 0)将图片移动到坐标原点
Step03.png
  • transform = CGAffineTransformRotate(transform, -M_PI_2) 将图片顺时针旋转 90 度
Step04.png
  • transform = CGAffineTransformTranslate(transform, 0, image.size.height) 将图片移动到坐标原点
Step05.png

这里还要注意一点,在最后进行 drawImage 操作时代码如下

    switch (image.imageOrientation) {
        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
            CGContextDrawImage(ctx, CGRectMake(0,0,image.size.height,image.size.width), image.CGImage);
            break;
            
        default:
            CGContextDrawImage(ctx, CGRectMake(0,0,image.size.width,image.size.height), image.CGImage);
            break;
    }

对于左右放置的图片,由于进行了旋转操作,因此最终进行 drawImage 时,rect 需要进行长宽变换。

而实际上,UIImage 的 drawInRect 方法已经实现了这一过程,并自动返回调整后的图片,且图片 orientation 为 UIImageOrientationUp。

This method draws the entire image in the current graphics context, respecting the image’s orientation setting. In the default coordinate system, images are situated down and to the right of the origin of the specified rectangle. This method respects any transforms applied to the current graphics context, however.

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容