gpt4 book ai didi

c# - c# System.Drawing 中的 Alpha 掩蔽?

转载 作者:IT王子 更新时间:2023-10-29 04:49:34 27 4
gpt4 key购买 nike

我正在尝试使用 System.Drawing.Graphics 使用源 Bitmap 和 alpha 掩码 Bitmap 绘制图像目的。目前我循环 X 和 Y 并使用 GetPixelSetPixel 将源颜色和 mask alpha 写入第三个 Bitmap,然后渲染那。然而,这是非常低效的,我想知道是否有更快的方法来实现这一点?

我想要的效果是这样的:

Effect I’m after

网格图案代表透明度;你可能知道这一点。

最佳答案

是的,更快的方法是使用 Bitmap.LockBits 并使用指针算法来检索值,而不是 GetPixelSetPixel。当然,缺点是您必须使用不安全的代码;如果你犯了一个错误,你可能会在你的程序中导致一些非常严重的崩溃。但如果你保持简单和独立,应该没问题(嘿,如果我能做到,你也能做到)。

例如,您可以这样做(未经测试,使用风险自负):

Bitmap mask = ...;
Bitmap input = ...;

Bitmap output = new Bitmap(input.Width, input.Height, PixelFormat.Format32bppArgb);
var rect = new Rectangle(0, 0, input.Width, input.Height);
var bitsMask = mask.LockBits(rect, ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
var bitsInput = input.LockBits(rect, ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
var bitsOutput = output.LockBits(rect, ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
unsafe
{
for (int y = 0; y < input.Height; y++)
{
byte* ptrMask = (byte*) bitsMask.Scan0 + y * bitsMask.Stride;
byte* ptrInput = (byte*) bitsInput.Scan0 + y * bitsInput.Stride;
byte* ptrOutput = (byte*) bitsOutput.Scan0 + y * bitsOutput.Stride;
for (int x = 0; x < input.Width; x++)
{
ptrOutput[4 * x] = ptrInput[4 * x]; // blue
ptrOutput[4 * x + 1] = ptrInput[4 * x + 1]; // green
ptrOutput[4 * x + 2] = ptrInput[4 * x + 2]; // red
ptrOutput[4 * x + 3] = ptrMask[4 * x]; // alpha
}
}
}
mask.UnlockBits(bitsMask);
input.UnlockBits(bitsInput);
output.UnlockBits(bitsOutput);

output.Save(...);

此示例从掩码图像中的 blue channel 导出输出中的 alpha channel 。如果需要,我相信您可以将其更改为使用 mask 的红色或 alpha channel 。

关于c# - c# System.Drawing 中的 Alpha 掩蔽?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3654220/

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