Hi,
When generating a PNG or JPG from PDF using Java 1.7 on Mac 10.9, we're getting very blurred output. I've attached the output from Aspose, the one from Apple's Preview and the PDF.
The code we use to generate it is:
Document doc = new Document(inStream);PngDevice dev = new PngDevice(new Resolution(72));
dev.process(doc.getPages().get_Item(1), outStream);
I've tried with different resolutions and with different files, but Aspose's text is always blurry.
Can we do something to fix this, or is this a bug in Aspose.PDF?
Thank you in advance.