UIImage 在将其转换为 CIImage、然后转换为 CGImage 并返回 UIImage 时失去其方向

Tig*_*yan 3 uiimage cgimage ios ciimage swift

我知道有很多这样的问题,但他们的解决方案对我不起作用。

注:该图像是从互联网下载的。它不是从iPhone的相机中拍摄的。

我有一个UIImage。为了进行一些图像处理操作,我使用Metal并以MTKView. 因此,我将图像转换为CIImage. 对图像进行所有修改后,我将其转换回CGImageUIImage保存。

因此,保存的图像方向错误。

我不确定它在哪一步失去了方向(当从 转换UIImageCIImage添加到 时MTKView,或者从 转换CIImageCGImage然后转换UIImage为保存它时)。因为我不确定,所以下面我提供了我为每个步骤尝试过的所有内容:

用于从 转换UIImageCIImage

最初我只是简单地以这种方式转换图像:

let let ciImage = CIImage(image: image)
Run Code Online (Sandbox Code Playgroud)

然后我尝试使用以下方式:

  let ciImage = CIImage(image: image)?.oriented(forExifOrientation: imageOrientationToTiffOrientation(value: image.imageOrientation))
Run Code Online (Sandbox Code Playgroud)

这是该方法imageOrientationToTiffOrientation的实现(我在这里找到的):

func imageOrientationToTiffOrientation(value: UIImageOrientation) -> Int32
{
    switch (value)
    {
    case .up:
        return 1
    case .down:
        return 3
    case .left:
        return 8
    case .right:
        return 6
    case .upMirrored:
        return 2
    case .downMirrored:
        return 4
    case .leftMirrored:
        return 5
    case .rightMirrored:
        return 7
    }
}
Run Code Online (Sandbox Code Playgroud)

用于从 转换CIImageCGImage然后再转换为UIImage

我像往常一样转换CIImageCGImage

let cgImage = context?.createCGImage(ciImage, from: ciImage.extent)
Run Code Online (Sandbox Code Playgroud)

然后我这样转换cgImageUIImage( ) :imageToSave

let imageToSave = UIImage(cgImage: cgImage, scale: image.scale, orientation: imageOrientation)
Run Code Online (Sandbox Code Playgroud)

imageOrientationimage.scale是原始图像的方向和比例。

结果,保存的图像仍然有错误的方向。

有趣的是,当我打印这些图像方向原始值时,它们是相同的0.up但正如我所说,保存后,方向是错误的。

我很困惑为什么会发生这种情况。如果您对如何解决此问题有任何建议,我将不胜感激您的帮助。

jes*_*sse 5

总而言之:

let uiImage: UIImage = ...
let ciImage = CIImage(image: uiImage, options:
    [.applyOrientationProperty: true,
     .properties: [kCGImagePropertyOrientation: CGImagePropertyOrientation(uiImage.imageOrientation).rawValue]])
Run Code Online (Sandbox Code Playgroud)

要转换UIImageOrientation为此代码,请使用https://developer.apple.com/documentation/imageio/cgimagepropertyorientationCGImagePropertyOrientation中的扩展

extension CGImagePropertyOrientation {
    init(_ uiOrientation: UIImageOrientation) {
        switch uiOrientation {
            case .up: self = .up
            case .upMirrored: self = .upMirrored
            case .down: self = .down
            case .downMirrored: self = .downMirrored
            case .left: self = .left
            case .leftMirrored: self = .leftMirrored
            case .right: self = .right
            case .rightMirrored: self = .rightMirrored
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

长版:

我刚刚有类似的问题。将 UIImage 转换为 CIImage 时,图像可能会出现方向错误:

let uiImage: UIImage = ...
let ciImage CIImage(image: uiImage) /* does not use uiImage orientation */
Run Code Online (Sandbox Code Playgroud)

最简单的解决方案是使用oriented(_:)方法来改变方向:

let ciImage = CIImage(image: uiImage)?.oriented(CGImagePropertyOrientation(uiImage.imageOrientation))
/* uses CGImagePropertyOrientation extension (see above) */
Run Code Online (Sandbox Code Playgroud)

这可能没问题,但oriented(_:)方法会创建一个新图像。我认为必须有一种方法可以CIImage在没有中间对象的情况下创建正确的定向。确实有!虽然我在互联网上没有找到它,而且苹果也没有足够清楚地记录它,所以我把它发布在这里。@matt 朝着正确的方向迈出了一步,但这还不够。

该解决方案在描述中是“加密的” applyOrientationProperty

图像可以包含显示捕获时方向的元数据。当捕获的图像包含方向元数据时,您可以使用 imageWithContentsOfURL: 或 init(data:) 将此元数据加载到 CIImage 中。如果还提供了属性(元数据属性的 NSDictionary)选项,请使用任何 initWith:options: 方法。

强调了重要的部分。那是一把钥匙。同样重要的是不要混淆optionsproperties。)