public partial class Grayscale
#region Bitmap ToGrayscale(Bitmap bmColor)
public static unsafe Bitmap ToGrayscale(Bitmap bmColor)
if (!IsGrayscale(bmColor))
Bitmap bmMono = new Bitmap(cx, cy, PixelFormat.Format8bppIndexed);
bmMono.SetResolution(bmColor.HorizontalResolution,
bmColor.VerticalResolution);
ColorPalette colorPalette = bmMono.Palette;
for (int i = 0; i < colorPalette.Entries.Length; i++)
colorPalette.Entries[i] = Color.FromArgb(i, i, i);
bmMono.Palette = colorPalette;
BitmapData bmd = bmMono.LockBits(
new Rectangle(Point.Empty, bmMono.Size),
ImageLockMode.WriteOnly, PixelFormat.Format8bppIndexed);
Byte* pPixel = (Byte*)bmd.Scan0;
for (int y = 0; y < cy; y++)
for (int x = 0; x < cx; x++)
Color clr = bmColor.GetPixel(x, y);
Byte byPixel = (byte)((30 * clr.R + 59 * clr.G + 11 * clr.B) / 100);
throw new Exception("Already a grayscale");
public static int[,] ToGrayscaleInteger(Bitmap InputImageBitmap)
if (!IsGrayscale(InputImageBitmap))
Bitmap bmp = Grayscale.ToGrayscale(InputImageBitmap);
return ImageDataConverter.ToInteger(bmp);
throw new Exception("Already a grayscale");
public static Bitmap CreateImage(int width, int height)
Bitmap image = new Bitmap(width, height, PixelFormat.Format8bppIndexed);
SetGrayscalePalette(image);
public static Bitmap CreateImage(int width, int height, Color fill)
Bitmap image = CreateImage(width, height);
image = Fill(image, fill);
public static Bitmap Fill(Bitmap image, Color fill)
BitmapLocker locker = new BitmapLocker(image);
for (int i = 0; i < image.Width; i++)
for (int j = 0; j < image.Height; j++)
locker.SetPixel(i, j, fill);
public static void SetGrayscalePalette(Bitmap image)
if (image.PixelFormat == PixelFormat.Format8bppIndexed)
ColorPalette cp = image.Palette;
for (int i = 0; i < 256; i++)
cp.Entries[i] = Color.FromArgb(i, i, i);
throw new Exception("8 bit grayscaleImage required");
public static bool IsGrayscale(Bitmap bitmap)
return bitmap.PixelFormat == PixelFormat.Format8bppIndexed ? true : false;
public static bool IsDimensionsPowerOf2(Bitmap bitmap)
return (Tools.IsPowerOf2(bitmap.Width) && Tools.IsPowerOf2(bitmap.Height));