c#打印像素值

本文关键字:像素 打印 | 更新日期: 2023-09-27 18:18:28

我有一个8位的位图彩色图像。当我输入

Color pixelcolor = b.GetPixel(j,i);    
Console.Write(pixelcolor.ToString() + " " );

我得到

 Color [A=255, R=255, G=255, B=255]

我只需要得到8位的值。不是R,G,B,A的24位独立值。

c#打印像素值

没有办法直接使用Bitmap类来做到这一点。但是,您可以使用LockBits方法直接访问像素。

使用不安全代码:(记住首先在你的项目中启用不安全代码)

public static unsafe Byte GetIndexedPixel(Bitmap b, Int32 x, Int32 y)
{
    if (b.PixelFormat != PixelFormat.Format8bppIndexed) throw new ArgumentException("Image is not in 8 bit per pixel indexed format!");
    if (x < 0 || x >= b.Width) throw new ArgumentOutOfRangeException("x", string.Format("x should be in 0-{0}", b.Width));
    if (y < 0 || y >= b.Height) throw new ArgumentOutOfRangeException("y", string.Format("y should be in 0-{0}", b.Height));
    BitmapData data = b.LockBits(new Rectangle(0, 0, b.Width, b.Height), ImageLockMode.ReadOnly, b.PixelFormat);
    try
    {
        Byte* scan0 = (Byte*)data.Scan0;
        return scan0[x + y * data.Stride];
    }
    finally
    {
        if (data != null) b.UnlockBits(data);
    }
}

安全的替代品,使用Marshal.Copy:

public static Byte GetIndexedPixel(Bitmap b, Int32 x, Int32 y)
{
    if (b.PixelFormat != PixelFormat.Format8bppIndexed) throw new ArgumentException("Image is not in 8 bit per pixel indexed format!");
    if (x < 0 || x >= b.Width) throw new ArgumentOutOfRangeException("x", string.Format("x should be in 0-{0}", b.Width));
    if (y < 0 || y >= b.Height) throw new ArgumentOutOfRangeException("y", string.Format("y should be in 0-{0}", b.Height));
    BitmapData data = b.LockBits(new Rectangle(0, 0, b.Width, b.Height), ImageLockMode.ReadOnly, b.PixelFormat);
    try
    {
        Byte[] pixel = new Byte[1];
        Marshal.Copy(new IntPtr(data.Scan0.ToInt64() + x + y * data.Stride), pixel, 0, 1);
        return pixel[0];
    }
    finally
    {
        if (data != null) b.UnlockBits(data);
    }
}

Bitmap类中的方法不能让您直接获得调色板索引。

您可以使用Palette属性获得图像的调色板,并在那里寻找颜色,但这是一个变通方法。

要直接获得调色板索引,可以使用LockBits方法直接访问图像数据。您要么必须使用封送将数据复制到数组中,要么使用不安全模式的指针来访问它。


Color值中的A属性是Alpha组件。它的值可以是0到255,其中0是完全透明的,255是完全固体的。

您想要的值实际上是R, GB,它们是相应的Red, GreenBlue颜色分量的8位位图值。

AAlfa组件,颜色的透明度值。如果你不关心它,就不要在字符串输出中显示它。

如果您不想使用LockBits,您可以这样做:

警告:此方法仅在调色板没有重复值并且在设置pixelRGB后未被另一个线程更改时才有效。

/// <summary>
/// Gets the pixel value in bytes. Uses Bitmap GetPixel method.
/// </summary>
/// <param name="bmp">Bitmap</param>
/// <param name="location">Pixel location</param>
/// <returns>Pixel value</returns>
public static byte Get8bppImagePixel(Bitmap bmp, Point location)
{
    Color pixelRGB = bmp.GetPixel(location.X, location.Y);
    int pixel8bpp = Array.IndexOf(bmp.Palette.Entries, pixelRGB);
    return (byte)pixel8bpp;
}