如何使用BitmapData做位图处理?
How to do Bitmap processing using BitmapData?
我构建了一个小测试示例,目标是将 .png
中的所有像素更改为白色。我正在使用 BitmapData
进行操作,因为据我了解,性能更好。如果我能让它工作;然后我可以改变我正在改变的像素并添加不同的条件来改变像素颜色。但我只坚持这个简单的测试。
这是我的 C#:
public static void TestConvertAllBlackBitmapToAllWhite()
{
string allBlackPNGFullFilePath = @"C:\Users\{Username}\Desktopx50AllBlack.png";
Bitmap allBlackBitmap = new Bitmap(allBlackPNGFullFilePath);
Bitmap newBitmap = (Bitmap)allBlackBitmap.Clone();
Size size = newBitmap.Size;
PixelFormat pixelFormat = newBitmap.PixelFormat;
byte bitDepth = (byte)(pixelFormat == PixelFormat.Format32bppArgb ? 4 : 3);
Rectangle rectangle = new Rectangle(Point.Empty, size);
BitmapData bitmapData = newBitmap.LockBits(rectangle, ImageLockMode.ReadOnly, pixelFormat);
int dataSize = bitmapData.Stride * bitmapData.Height;
byte[] data = new byte[dataSize];
Marshal.Copy(bitmapData.Scan0, data, 0, dataSize);
Color white = Color.White;
for (int y = 0; y < size.Height; y++)
{
for (int x = 0; x < size.Width; x++)
{
// Get Index
int index = y * bitmapData.Stride + x * bitDepth;
// Set Pixel Color
data[index] = white.B;
data[index + 1] = white.G;
data[index + 2] = white.R;
}
}
Marshal.Copy(data, 0, bitmapData.Scan0, data.Length);
newBitmap.UnlockBits(bitmapData);
// Save New Converted Bitmap
string originalFileName = Path.GetFileNameWithoutExtension(allBlackPNGFullFilePath);
string directory = Path.GetDirectoryName(allBlackPNGFullFilePath);
string newBitmapFileName = originalFileName + "_Converted";
string newBitmapFullFileName = directory + Path.DirectorySeparatorChar.ToString() + newBitmapFileName + ".png";
newBitmap.Save(newBitmapFullFileName, ImageFormat.Png);
}
我的输入是全黑 50x50 .png
:
问题是我得到的输出是另一个全黑的 .png
而不是全白的。
如何修改我的简单示例代码以生成全白 .png
结果?
非常感谢任何帮助/指导。
正如@Taw 指出的那样
这一行有点小事:
BitmapData bitmapData = newBitmap.LockBits(rectangle, ImageLockMode.ReadOnly, pixelFormat);
ImageLockMode
设置为 ReadOnly
。因为我在循环时对 BitmapData
进行了更改; ImageLockMode
应该是 ReadWrite
我构建了一个小测试示例,目标是将 .png
中的所有像素更改为白色。我正在使用 BitmapData
进行操作,因为据我了解,性能更好。如果我能让它工作;然后我可以改变我正在改变的像素并添加不同的条件来改变像素颜色。但我只坚持这个简单的测试。
这是我的 C#:
public static void TestConvertAllBlackBitmapToAllWhite()
{
string allBlackPNGFullFilePath = @"C:\Users\{Username}\Desktopx50AllBlack.png";
Bitmap allBlackBitmap = new Bitmap(allBlackPNGFullFilePath);
Bitmap newBitmap = (Bitmap)allBlackBitmap.Clone();
Size size = newBitmap.Size;
PixelFormat pixelFormat = newBitmap.PixelFormat;
byte bitDepth = (byte)(pixelFormat == PixelFormat.Format32bppArgb ? 4 : 3);
Rectangle rectangle = new Rectangle(Point.Empty, size);
BitmapData bitmapData = newBitmap.LockBits(rectangle, ImageLockMode.ReadOnly, pixelFormat);
int dataSize = bitmapData.Stride * bitmapData.Height;
byte[] data = new byte[dataSize];
Marshal.Copy(bitmapData.Scan0, data, 0, dataSize);
Color white = Color.White;
for (int y = 0; y < size.Height; y++)
{
for (int x = 0; x < size.Width; x++)
{
// Get Index
int index = y * bitmapData.Stride + x * bitDepth;
// Set Pixel Color
data[index] = white.B;
data[index + 1] = white.G;
data[index + 2] = white.R;
}
}
Marshal.Copy(data, 0, bitmapData.Scan0, data.Length);
newBitmap.UnlockBits(bitmapData);
// Save New Converted Bitmap
string originalFileName = Path.GetFileNameWithoutExtension(allBlackPNGFullFilePath);
string directory = Path.GetDirectoryName(allBlackPNGFullFilePath);
string newBitmapFileName = originalFileName + "_Converted";
string newBitmapFullFileName = directory + Path.DirectorySeparatorChar.ToString() + newBitmapFileName + ".png";
newBitmap.Save(newBitmapFullFileName, ImageFormat.Png);
}
我的输入是全黑 50x50 .png
:
问题是我得到的输出是另一个全黑的 .png
而不是全白的。
如何修改我的简单示例代码以生成全白 .png
结果?
非常感谢任何帮助/指导。
正如@Taw 指出的那样
这一行有点小事:
BitmapData bitmapData = newBitmap.LockBits(rectangle, ImageLockMode.ReadOnly, pixelFormat);
ImageLockMode
设置为 ReadOnly
。因为我在循环时对 BitmapData
进行了更改; ImageLockMode
应该是 ReadWrite