我正在尝试创建一个黑白图像,一方面可以显示在 UIImageView 中,另一方面应该可以通过电子邮件或共享此图像只需保存到相机胶卷。
我有一个二维数组(NSArray 包含其他 NSArrays ),其中包含一个具有 NSInteger 值 0 的矩阵和 1(用于白色和黑色像素)。
所以我只想为 1 放置一个黑色像素,为 0 放置一个白色像素。
我发现的所有其他问题都涉及从现有图像更改像素。
我希望你能帮助我!
[编辑]:
当然,我不想让别人做我的工作。一开始我不知道如何创建新图像并按照我的意愿放置像素,因此我尝试编辑仅包含白色像素的现有图像,并在必要时更改像素的颜色。所以我尝试这个的代码,但正如你所看到的,我不知道如何改变像素。我希望这表明我是在自己尝试。
- (UIImage*) createQRCodeWithTextNSString*) text andErrorCorrectionLevelNSInteger) level {
QRGenerator *qr = [[QRGenerator alloc] init];
NSArray *matrix = [qr createQRCodeMatrixWithText:text andCorrectionLevel:level];
UIImage *image_base = [UIImage imageNamed"qr_base.png"];
CGImageRef imageRef = image_base.CGImage;
for (int row = 0; row < [matrix count]; row++) {
for (int column = 0; column < [matrix count]; column++) {
if ([[[matrix objectAtIndex:row] objectAtIndex:column] integerValue] == 1) {
//set pixel (column, row) black
}
}
}
return [[UIImage alloc] initWithCGImage:imageRef];
}
Best Answer-推荐答案 strong>
我会使用 CGBitmapContext 从头开始创建图像。您可以调用CGBitmapContextCreate() 为图像分配内存。然后,您可以像现在一样遍历像素,从数组中设置它们。完成后,您可以调用 CGBitmapContextCreateImage() 来制作一个 CGImageRef 。如果你需要 UIImage 你可以调用 [+UIImage imageWithCGImage:] 并将您在上面创建的 CGImageRef 传递给它。
关于ios - 如何创建具有黑白像素的图像?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20846905/
|