gpt4 book ai didi

Objective-C:NSBitmapImageRep SetColor

转载 作者:行者123 更新时间:2023-12-05 06:44:36 26 4
gpt4 key购买 nike

我正在尝试将 NSImage 读入 NSBitmapImageRep,以更改某些像素的颜色。程序应该读取每个像素的颜色值,并检查它是否等于颜色池选择的颜色。我有一个名为“MainImageView”的 ImageView 和一个名为“MainColor”的 ColorWell。那是我的代码:

- (IBAction)ScanImg:(id)sender {

NSBitmapImageRep *ImgRep = [[NSBitmapImageRep alloc]initWithData: MainImageView.image.TIFFRepresentation];

for (int pixelx = 0; pixelx < ImgRep.pixelsWide; pixelx ++) {
for (int pixely = 0; pixely < ImgRep.pixelsHigh;pixely ++){
if ([ImgRep colorAtX:pixelx y:pixely] == MainColor.color) {
[ImgRep setColor: [NSColor whiteColor] atX:pixelx y:pixely];
} else{
[ImgRep setColor: [NSColor blackColor] atX:pixelx y:pixely];
}
}
}

struct CGImage *CG = [ImgRep CGImage];
NSImage *Image = [[NSImage alloc] initWithCGImage:CG size:ImgRep.size];
MainImageView.image = Image;

}

但是代码在图片上没有任何改变!有什么问题?还是有另一种方法来改变像素的颜色?

感谢您的帮助!大日

最佳答案

我也有同样的问题。我找到的解决方法是使用 -setPixel 方法,尽管这感觉有点笨拙:

NSUInteger pix[4]; pix[0] = 0; pix[1] = 0; pix[2] = 0; pix[3] = 255; //black
[ImgRep setPixel:pix atX:x y:y];

注意:像素数据必须根据您使用的颜色空间进行排列,在此示例中 0,0,0,255 在 RGBA 颜色空间中为黑色。

但最终,这仍然比复制和修改 [ImgRep bitmapData] 返回的底层(unsigned char*)数据要好......

关于Objective-C:NSBitmapImageRep SetColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28487374/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com