保存图像.net时不需要的旋转

时间:2015-04-28 14:59:48

标签: .net image rotation

我正在尝试将图像保存在此处,但是当它保存时它会旋转。目前的代码是这样的:

filepath是垂直图像的路径(宽度<高度)

using (Image img = Image.FromFile(filePath))
                {
                    img.Save(savePath + Path.GetFileNameWithoutExtension(filePath) + ".bmp", ImageFormat.Bmp);

            }

运行代码后,当我检查保存的新图像时,它会逆时针旋转90度。我无法理解这种行为

关于如何防止这种情况的建议和指导将不胜感激。

0 个答案:

没有答案