图像在mac预览中颠倒显示,但在浏览器中正面显示

时间:2012-07-03 22:05:36

标签: image uiimage jpeg

jpg在我的Mac上呈现倒置,但在同一台Mac上的Safari浏览器中正确显示。什么是未正确读取的方向数据?它在EXIF中吗?

1 个答案:

答案 0 :(得分:0)

以下是如何以正确的方向显示它

  if (image.imageOrientation != UIImageOrientationUp)
  {            
    image = [UIImage 
              imageWithCGImage: image.CGImage 
              scale: 1 
              orientation: UIImageOrientationUp];
  }

基于ravin Save UIImage, Load it in Wrong Orientation

的回答