我有一个简单的程序,以及香港专业教育学院包括System.Drawing中,我没有使用getPixel()方法的能力。 它说,它没有找到。 可能是什么原因呢?
using System.Drawing;
namespace isolatepixels
{
class Program
{
static void Main(string[] args)
{
System.Drawing.Image image1 = System.Drawing.Image.FromFile(@"C:\1.jpg");
int x, y;
// Loop through the images pixels to reset color.
for (x = 0; x < image1.Width; x++)
{
for (y = 0; y < image1.Height; y++)
{
Color pixelColor = image1.GetPixel(x, y);
Color newColor = Color.FromArgb(pixelColor.R, 0, 0);
image1.SetPixel(x, y, newColor);
}
}
}
}
}