Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用此代码尝试创建图像文件并将其位于 (0, 0) 位置的像素设置为黑色。我的目标是使用存储在数组中的像素值,但首先我想尝试创建图像文件,然后设置像素。
Bitmap my = new Bitmap("D:\\new.bmp"); my.SetPixel(0, 0, Color.Black);
如果您能想到任何事情,请帮助我!
谢谢!