找不到GetPixel方法

时间:2013-05-05 23:21:28

标签: c# bitmap system.drawing

我有一个简单的程序,并且我已经包含了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);
                }
            }



        }
    }
}

1 个答案:

答案 0 :(得分:2)

[编辑]正如汉斯在上面的评论中所说的那样,如果你没有在任何地方使用图像,你可以跳过Image.FromFile()并直接将文件名传递给Bitmap构造函数。

Image对象不包含这些方法,Graphics对象也不包含Bitmap对象。所以诀窍是从图像中创建Bitmap,使用new Bitmap(image),如下所示:

// Don't need this: Image image1 = Image.FromFile(@"C:\1.jpg");
Bitmap bitmap = new Bitmap(@"C:\1.jpg");

// Save the image in JPEG format.
bitmap.Save(@"C:\test.bmp", System.Drawing.Imaging.ImageFormat.Bmp);

int x, y;

// Loop through the images pixels to reset color. 

for (x = 0; x < bitmap.Width; x++)
{
    for (y = 0; y < bitmap.Height; y++)
    {
        Color pixelColor = bitmap.GetPixel(x, y);
        Color newColor = Color.FromArgb(pixelColor.R, 0, 0);
        bitmap.SetPixel(x, y, newColor);
    }
}

请注意,Bitmap来自System.Drawing.Image

认为应该有用。