我有一个 EMF 文件。我想把它调整得更小。
我如何在.net(或任何工具)中做到这一点而不会得到模糊的图像?
生成的调整大小的图像将转换为另一种格式(png/jpg/whatever),我可以处理(我认为)。
我没有在.Net(或任何语言平台)中找到一个处理 emf/元文件的明确示例。
我查看了使用 GDI+ 进行图形编程,但它只介绍了元文件。
我已经尝试过 Image Magick,但您必须转换为另一种格式(无论如何我都需要这样做),结果是模糊的(例如,当缩小并转换为 png 时)。
我尝试过 Inkscape,但您只能导入 EMF 文件,而 Inkscape 将其颠倒 并不成比例地导入到现有绘图中。
另外,(别笑)我已经在 Window's Paint(少数几个可以打开 emf 的图像编辑软件程序之一)中打开它并调整了绘图的大小,但它又是模糊的。
更新:这是我用来调整大小的代码。
这可行,但生成的图像模糊。该代码只是一个通用的图像大小调整例程,并不特定于 EMF
private static Image resizeImage(Image imgToResize, Size size)
{
int sourceWidth = imgToResize.Width;
int sourceHeight = imgToResize.Height;
float nPercent = 0;
float nPercentW = 0;
float nPercentH = 0;
nPercentW = ((float)size.Width / (float)sourceWidth);
nPercentH = ((float)size.Height / (float)sourceHeight);
if (nPercentH < nPercentW)
nPercent = nPercentH;
else
nPercent = nPercentW;
int destWidth = (int)(sourceWidth * nPercent);
int destHeight = (int)(sourceHeight * nPercent);
Bitmap b = new Bitmap(destWidth, destHeight);
Graphics g = Graphics.FromImage((Image)b);
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.DrawImage(imgToResize, 0, 0, destWidth, destHeight);
g.Dispose();
return (Image)b;
}
资料来源: http ://www.switchonthecode.com/tutorials/csharp-tutorial-image-editing-saving-cropping-and-resizing