菜鸟教程小白 发表于 2022-12-12 17:37:24

ios - 如何创建具有黑白像素的图像?


                                            <p><p>我正在尝试创建一个黑白图像,一方面可以显示在 <code>UIImageView</code> 中,另一方面应该可以通过电子邮件或共享此图像只需保存到相机胶卷。 </p>

<p>我有一个二维数组(<code>NSArray</code> 包含其他 <code>NSArrays</code>),其中包含一个具有 <code>NSInteger</code> 值 <strong>0 的矩阵和 1</strong>(用于白色和黑色像素)。 </p>

<p>所以我只想为 1 放置一个黑色像素,为 0 放置一个白色像素。
我发现的所有其他问题都涉及从现有图像更改像素。
我希望你能帮助我!</p>

<p>[编辑]:</p>

<p>当然,我不想让别人做我的工作。一开始我不知道如何创建新图像并按照我的意愿放置像素,因此我尝试编辑仅包含白色像素的现有图像,并在必要时更改像素的颜色。所以我尝试这个的代码,但正如你所看到的,我不知道如何改变像素。我希望这表明我是在自己尝试。</p>

<pre><code>- (UIImage*) createQRCodeWithText:(NSString*) text andErrorCorrectionLevel:(NSInteger) level {
    QRGenerator *qr = [ init];
    NSArray *matrix = ;

    UIImage *image_base = ;
    CGImageRef imageRef = image_base.CGImage;

    for (int row = 0; row &lt; ; row++) {
      for (int column = 0; column &lt; ; column++) {
            if ([[ objectAtIndex:column] integerValue] == 1) {
                //set pixel (column, row) black
            }
      }
    }

    return [ initWithCGImage:imageRef];
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我会使用 <code>CGBitmapContext</code> 从头开始​​创建图像。您可以调用<a href="https://developer.apple.com/library/mac/documentation/graphicsimaging/reference/CGBitmapContext/Reference/reference.html" rel="noreferrer noopener nofollow"><code>CGBitmapContextCreate()</code></a>为图像分配内存。然后,您可以像现在一样遍历像素,从数组中设置它们。完成后,您可以调用 <code>CGBitmapContextCreateImage()</code> 来制作一个 <code>CGImageRef</code>。如果你需要 <code>UIImage</code> 你可以调用 <a href="https://developer.apple.com/library/ios/documentation/uikit/reference/UIImage_Class/Reference/Reference.html" rel="noreferrer noopener nofollow"><code>[+UIImage imageWithCGImage:]</code></a>并将您在上面创建的 <code>CGImageRef</code> 传递给它。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何创建具有黑白像素的图像?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20846905/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20846905/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何创建具有黑白像素的图像?