最近我学会了如何将图像保存为字节(文本文件中的 RGB 值),现在我想知道如何从 RGB 值数组创建一个完全有效的图像。
问问题
5101 次
1 回答
2
您可以使用@dasblinkenlight 提到的方法:
int width = 1; // read from file
int height = 1; // read from file
var bitmap = new Bitmap(width, height, PixelFormat.Canonical);
for (int y = 0; y < height; y++)
for (int x = 0; x < width; x++)
{
int red = 0; // read from array
int green = 0; // read from array
int blue = 0; // read from array
bitmap.SetPixel(x, y, Color.FromArgb(0, red, green, blue));
}
于 2012-04-15T11:58:54.900 回答