我试图检测图片中的某些绿色文字,然后操纵文字下的像素。
为此,我加载了地图(没有文字)和操纵图片的图片。在矩阵中移动检查RGB值,在完成工作后,我再次将位图sn保存为.jpg(以新名称)。
问题是:加载的图片大小约为3mb。新保存的图片有30mb。
相同的宽度/高度和DPI。只是颜色深度高1个字节(24位 - > 32位)。 从来没有,这不是10倍因素。
有人知道会发生什么吗?
或者更有趣的是:如何只用3mb保存新的位图?
感谢您的回答, -LD -
CODE:
// no text, picture shows a map
Bitmap MapBitmap = new Bitmap("C:\\Users\\LD\\Desktop\\Karte\\Map.jpg");
// with green text
Bitmap OriginalBitmap = new Bitmap("C:\\Users\\LD\\Desktop\\Karte\\Original.jpg");
// manipulated text
Bitmap NeueBitmap = new Bitmap(OriginalBitmap.Width,OriginalBitmap.Height);
// move throug matix
for (int x = 0; x < OriginalBitmap.Width; x++)
{
for (int y = 0; y < OriginalBitmap.Height; y++)
{
progressBar1.Value = x * 10000 / OriginalBitmap.Width; // show progress
Color OriginalColor = OriginalBitmap.GetPixel(x, y);
int r = OriginalColor.R; // for later use
int g = OriginalColor.G;
int b = OriginalColor.B;
Color MapColor = MapBitmap.GetPixel(x, y);
int R = MapColor.R; // for later use
int G = MapColor.G;
int B = MapColor.B;
if ((g/1.5) > r && (g/1.5) > b)
{ // check the green-value compared to the others
Color NeueColor = Color.FromArgb((R + 20), (G + 20), (B + 20));
NeueBitmap.SetPixel(x, y, NeueColor);
}
else
{
Color NeueColor = Color.FromArgb(R, G, B);
NeueBitmap.SetPixel(x, y, NeueColor);
}
}
}
NeueBitmap.Save("C:\\Users\\LD\\Desktop\\Karte\\Neu2.jpg");
答案 0 :(得分:0)
在适当的NeueBitmap.Save()
重载中指定格式;就目前而言,它将默认为带有.JPG扩展名的.PNG。
NeueBitmap.Save("C:\\Users\\LD\\Desktop\\Karte\\Neu2.jpg", ImageFormat.Jpeg);