在 NSBitmapImageRep 上设置颜色在 Swift 中不起作用



我试图弄清楚setColor是如何工作的。我有以下代码:



lazy var imageView:NSImageView = {
let imageView = NSImageView(frame: view.frame)
return imageView
}()

override func viewDidLoad() {
super.viewDidLoad()
createColorProjection()
view.wantsLayer = true
view.addSubview(imageView)

view.needsDisplay = true
}

func createColorProjection() {
var bitmap = NSBitmapImageRep(cgImage: cgImage!)
var x = 0
while x < bitmap.pixelsWide {
var y = 0
while y < bitmap.pixelsHigh {
//pixels[Point(x: x, y: y)] = (getColor(x: x, y: y, bitmap: bitmap))
bitmap.setColor(NSColor(cgColor: .black)!, atX: x, y: y)
y += 1
}
x += 1
}

let image = createImage(bitmap: bitmap)
imageView.image = image
imageView.needsDisplay = true
}


func createImage(bitmap:NSBitmapImageRep) -> NSImage {
let image = bitmap.cgImage
return NSImage(cgImage: image! , size: CGSize(width: image!.width, height: image!.height))
}

代码的目的是将照片(彩虹)更改为完全黑色(我现在只是用黑色进行测试,以确保我了解它是如何工作的)。但是,当我运行程序时,显示的是彩虹的未更改图片,而不是黑色照片。

我收到这些错误:Unrecognized colorspace number -1Unknown number of components for colorspace model -1.

谢谢。

首先,你是对的:至少自卡塔利娜以来,setColor已经被打破了。苹果还没有修复它,可能是因为它太慢了,效率低下,而且没有人用过它。

其次,文档说NSBitmapImageRep(cgImage: CGImage)生成一个只读位图,所以即使setColor工作,你的代码也不会工作。

正如亚历山大所说,制作自己的CIFilter是将照片像素更改为不同颜色的最佳方式。编写和实现OpenGL并不容易,但它是最好的。

如果要像这样向NSBitmapImageRep添加扩展:

extension NSBitmapImageRep {
func setColorNew(_ color: NSColor, atX x: Int, y: Int) {
guard let data = bitmapData else { return }

let ptr = data + bytesPerRow * y + samplesPerPixel * x

ptr[0] = UInt8(color.redComponent * 255.1)
ptr[1] = UInt8(color.greenComponent * 255.1)
ptr[2] = UInt8(color.blueComponent * 255.1)

if samplesPerPixel > 3 {
ptr[3] = UInt8(color.alphaComponent * 255.1)
}
}
}

然后简单地更改图像的像素可以像这样完成:

func changePixels(image: NSImage, newColor: NSColor) -> NSImage {
guard let imgData = image.tiffRepresentation,
let bitmap = NSBitmapImageRep(data: imgData),
let color = newColor.usingColorSpace(.deviceRGB)
else { return image }

var y = 0
while y < bitmap.pixelsHigh {
var x = 0
while x < bitmap.pixelsWide {
bitmap.setColorNew(color, atX: x, y: y)
x += 1
}
y += 1
}

let newImage = NSImage(size: image.size)
newImage.addRepresentation(bitmap)

return newImage
}

相关内容

  • 没有找到相关文章

最新更新