使用 Word Automation Services,我有一些非常简单的代码,如下所示:
SyncConverter sync = new SyncConverter(wordAutomationServiceName);
sync.Settings.OutputFormat = input.Format;
sync.Settings.UpdateFields = true;
ConversionItemInfo convInfo = sync.Convert(input.StreamData, ms);
当 input.Format 为 Word 时,图像看起来很棒。但是当它是 PDF 时,图像看起来像是经过平滑处理,最终看起来有点模糊。是否有任何选项可以控制图像如何转换为 PDF?我所有的图像基本上都是线条图(图表和地图),所以我真的不需要应用任何平滑。
这是 pdf(左)和 word(右)中相同图像的比较。