将png保存为bmp会引入特殊的伪影

时间:2014-05-26 09:35:19

标签: c# .net graphics png bmp

我有3600 * 3600像素png file

enter image description here

我正在尝试使用此代码保存为bmp

var bmpSource = Path.ChangeExtension(source, "bmp");
lock (FileAccessString)
{
    if (!File.Exists(bmpSource))
    {
        var dummy = Image.FromFile(source);
        dummy.Save(bmpSource, ImageFormat.Bmp);
    }
}

结果是

enter image description here

非常接近,但眼睛可见的区域(特别是左侧)是不正确的。

什么可能导致这个奇怪的神器?

0 个答案:

没有答案