我正在编写一个 .NET 4 应用程序来导入和保存图像以供打印。将保存的图像分辨率(DPI 不是像素尺寸)设置为我们指定的值非常重要,这样它们才能正确打印。
我们导入的一些图像没有分辨率值(生成时 EXIF 错误),因此我们必须在编写它们之前更正它。我们为此使用 Bitmap.SetResolution。它在 XP 和 Windows 8 上运行良好,但是当我们在 Windows 7 上写入(Bitmap.Save)图像时,它们总是使用原始分辨率元信息写入,忽略 SetResolution。
这是我们进行的测试,适用于 XP 和 8,而不是 7。
string originalFile = @"D:\temp\img\original_img.jpg";
string newFile = @"D:\temp\img\new_img.jpg";
Bitmap bitmap = (Bitmap)Image.FromFile(originalFile);
bitmap.SetResolution(200, 200);
bitmap.Save(newFile, ImageFormat.Jpeg);
Image image = Image.FromFile(newFile);
int dpiX = (int)Math.Round(image.HorizontalResolution, MidpointRounding.ToEven);
int dpiY = (int)Math.Round(image.VerticalResolution, MidpointRounding.ToEven);
Console.WriteLine("DPI is {0} x {1}", dpiX, dpiY);
在保存之前,调试总是显示由 SetResolution 分配的正确分辨率,保存的图像就是问题所在。
但那里的问题似乎仍未解决。真的没有办法让它工作吗?我必须为此使用额外的库吗?