Control rendering of PDF

130 views Asked by At

Using Word Automation Services, I have some very simple code like this:

SyncConverter sync = new SyncConverter(wordAutomationServiceName);
sync.Settings.OutputFormat = input.Format;
sync.Settings.UpdateFields = true;
ConversionItemInfo convInfo = sync.Convert(input.StreamData, ms);

When input.Format is Word, images look great. But when it's PDF, the images look like they've been smoothed and it ends up looking a little fuzzy. Are there any options anywhere that can control how images get converted into a PDF? All my images are basically line drawings (charts and maps) so I really don't need any smoothing applied.

Here's a comparison of the same image in a pdf (left) and word (right).

Comparison

0

There are 0 answers