2

我尝试研究,但似乎 ASP.NET 中没有解决方案,只有 webforms 等。

例如,我可以为 a 隐藏 RGB 通道(例如,只有 RED 通道).jpg吗?

4

1 回答 1

1
using(var bmp = new Bitmap("C:\\temp\\source.jpg"))
{
    for (int x = 0; x < bmp.Width; x++)
    for (int y = 0; y < bmp.Height; y++)
    {
        var c = bmp.GetPixel(x, y);
        bmp.SetPixel(x, y, Color.FromArgb(c.A, 0, c.G, c.B));
    }
    bmp.Save("C:\\temp\\target.jpg", ImageFormat.Jpeg);
}
于 2012-06-05T20:55:48.820 回答