问这个问题很尴尬,但找不到答案。
我徒劳地尝试了这个。
Image resultImage = new Bitmap(image1.Width, image1.Height, PixelFormat.Format24bppRgb);
using (Graphics grp = Graphics.FromImage(resultImage))
{
grp.FillRectangle(
Brushes.White, 0, 0, image1.Width, image1.Height);
resultImage = new Bitmap(image1.Width, image1.Height, grp);
}
我基本上想在 C# 中用白色填充 1024x1024 RGB 位图图像。我怎样才能做到这一点?