程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> uiimage-image尺寸改變後保留Exif數據

uiimage-image尺寸改變後保留Exif數據

編輯:編程綜合問答
image尺寸改變後保留Exif數據

使用UIImage和resize.m獲取圖片,進行尺寸重置。但是還想保留圖片的Exif數據,所以我希望寫如下:

CGImageDestinationAddImageFromSource(destination, resized, 0, imagePropertiesDictionary);

獲取了exif數據,但是圖片根據圖片的原始方向進行旋轉了。有沒有獲取數據但是還能讓圖片修改尺寸的方法?

最佳回答:


你可以寫一個方向屬性來覆蓋前一個:

[imagePropertiesDictionary setObject:[NSNumber numberWithInt:orientation] forKey:@"Orientation"];

注意保證imagePropertiesDictionary是NSMutableDictionary

//        case UIDeviceOrientationLandscapeLeft: return 1; // Top, left
//        case UIDeviceOrientationPortrait: return 6; // Right, top
//        case UIDeviceOrientationLandscapeRight: return 3; // Bottom, right
//        case UIDeviceOrientationPortraitUpsideDown: return 8; // Left, bottom
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved