0

除了最后一行,我已经成功地将许多错误转换为 Swift 3。它适用于 Xcode 7,但不适用于 Xcode 8。

还值得注意的是,Xcode 7 有文档,CGColorRenderingIntent但 Xcode 8 没有。

类型“CGColorRenderingIntent”没有成员“RenderingIntentDefault”

我正在使用的代码:

import CoreImage

// omitted code

public func imageFromPixels(pixels: ([Pixel], width: Int, height: Int)) -> CIImage {
let bitsPerComponent = 8
let bitsPerPixel = 32
let rgbColorSpace = CGColorSpaceCreateDeviceRGB()
let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue) // alpha is last
let providerRef = CGDataProvider(data: NSData(bytes: pixels.0, length: pixels.0.count * sizeof(Pixel)))
let image = CGImageCreate(pixels.1, pixels.2, bitsPerComponent, bitsPerPixel, pixels.1 * sizeof(Pixel), rgbColorSpace, bitmapInfo, providerRef!, nil, true, CGColorRenderingIntent.RenderingIntentDefault)
return CIImage(CGImage: image!)
}

苹果文档:

enum CGColorRenderingIntent : Int32 {
case RenderingIntentDefault
case RenderingIntentAbsoluteColorimetric
case RenderingIntentRelativeColorimetric
case RenderingIntentPerceptual
case RenderingIntentSaturation
}

更新代码:

let image = CGImage(width: pixels.1,
                    height: pixels.2,
                    bitsPerComponent: bitsPerComponent,
                    bitsPerPixel: bitsPerPixel,
                    bytesPerRow: pixels.1 * sizeof(Pixel),
                    space: rgbColorSpace,
                    bitmapInfo: bitmapInfo,
                    provider: providerRef!,
                    decode: nil,
                    shouldInterpolate: true,
                    intent: .defaultIntent)

return CGImage(CGImage: image!) //  Incorrect argument label in call (have 'CGImage:', expected 'copy:')
4

1 回答 1

4

⌘-click在符号上CGColorRenderingIntent,你会看到

public enum CGColorRenderingIntent : Int32 {

  case defaultIntent
  case absoluteColorimetric
  case relativeColorimetric
  case perceptual
  case saturation 
}

所以是

let image = CGImage(width: pixels.1, 
                   height: pixels.2, 
         bitsPerComponent: bitsPerComponent, 
             bitsPerPixel: bitsPerPixel, 
              bytesPerRow: pixels.1 * sizeof(Pixel), 
                    space: rgbColorSpace, 
               bitmapInfo: bitmapInfo, 
                 provider: providerRef!, 
                   decode: nil, 
        shouldInterpolate: true, 
                   intent: .defaultIntent)

return CIImage(cgImage: image!)

CGImage甚至和的初始化程序CIImage都已更改。

于 2016-06-19T21:07:46.330 回答