菜鸟教程小白 发表于 2022-12-13 15:45:55

ios - 替换 CGBitmapContext 中的特定颜色


                                            <p><p>如何替换 <code>CGBitmapContext</code> 中已经绘制的特定颜色(RGB 值)?</p>

<p>有什么简单的方法吗?</p>

<p>提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要通过执行以下操作来获得指向像素的指针和有关其格式的信息:</p>

<pre><code>// This assumes the data is RGBA format, 8-bits per channel.
// You&#39;ll need to verify that by calling CGBitmapContextGetBitsPerPixel (), etc.
typedef struct RGBA8 {
    UInt8 red;
    UInt8 green;
    UInt8 blue;
    UInt8 alpha;
} RGBA8;

RGBA8* pixels = CGBitmapContextGetData (context);
UInt32 height = CGBitmapContextGetHeight (context);
UInt32 width = CGBitmapContextGetWidth (context);
UInt32 rowBytes = CGBitmapContextGetBytesPerRow (context);
UInt32 x, y;
for (y = 0; y &lt; height; y++)
{
    RGBA8* currentRow = (RGBA8*)((UInt8*)pixels + y * rowBytes);
    for (x = 0; x &lt; width; x++)
    {
      if ((currentRow-&gt;red == replaceRed) &amp;&amp; (currentRow-&gt;green == replaceGreen) &amp;&amp;
            (currentRow-&gt;blue == replaceBlue) &amp;&amp; (currentRow-&gt;alpha == replaceAlpha))
      {
            currentRow-&gt;red = newRed;
            currentRow-&gt;green = newGreen;
            currentRow-&gt;blue = newBlue;
            currentRow-&gt;alpha = newAlpha;
      }
      currentRow++;
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 替换 CGBitmapContext 中的特定颜色,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12103083/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12103083/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 替换 CGBitmapContext 中的特定颜色