解決相簿圖片旋轉的問題
阿新 • • 發佈:2019-01-27
最近上傳圖片發現好多都是翻轉的,用以前的網上的程式碼“fixOrientation"
也不行,發現是從defaultRepresentation.fullResolutionImage初始化的UIImage的
imageOrientation屬性都是UIImageOrientationUp
後來發現ALAsset的defaultRepresentation.orientation卻是存在的,然後使用
- (id)initWithCGImage:(CGImageRef)cgImage scale:(CGFloat)scale orientation:(UIImageOrientation)orientation NS_AVAILABLE_IOS
這個方法就能得到正確方向的image。
ALAsset *asset = [self.AssetArray objectAtIndex:i];
UIImage *image = [[UIImagealloc] initWithCGImage:asset.defaultRepresentation.fullResolutionImagescale:1orientation:(UIImageOrientation)asset.defaultRepresentation.orientation];