我无法显示在 C# 应用程序中创建的位图。我创建以下位图:
int w = 150;
int h = w/3;
Bitmap aBMP = new Bitmap(w, h);
using (Graphics G = Graphics.FromImage(aBMP))
{ ...G.FillRectangle(...) } //here I am painting an image
稍后在应用程序中,我将图像保存如下:
aBMP.Save(anIMGfilename);
通过右键单击生成的图像属性,我没有收到与任何其他位图图像一起获得的安全选项卡。你见过这种行为吗?