UIImagePickerController拍照上傳圖片旋轉問題
阿新 • • 發佈:2019-02-06
轉載地址:http://www.cnblogs.com/yajunLi/p/5796084.html
問題描述:
手機頭像上傳,遇到一個怪現象,就是拍照上傳時,手機端顯示頭像正常,但在web端檢視會有一個左旋90度的問題。
並且照片豎怕才會有此問題,橫拍不存在。
原因分析:
手機拍照時,用相機拍攝出來的照片是含有EXIF資訊的,在我們得到 UIImage時,可以檢視此Image的imageOrientation屬性,其實就是指的EXIF中的orientation資訊。
如果我們忽略orientation資訊,而直接對照片進行畫素處理或上傳等操作,得到的結果是翻轉或者旋轉90之後的樣子。
這是因為我們執行畫素處理或者drawInRect等操作之後,imageOrientaion資訊被刪除了,imageOrientaion被重設為0,造成照片內容和imageOrientaion不匹配。
所以,在對照片進行處理之前,先將照片旋轉到正確的方向,保證返回的imageOrientaion為0。
解決方法:
Swift版:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
/**
照片豎拍
web顯示旋轉解決:圖片大於2M會自動旋轉90度
-
parameter aImage: <#aImage description#>
-
returns: <#return value description#>
*/
class func fixOrientation ( aImage : UIImage )- > UIImage {
if aImage . imageOrientation |