Hi
Our application requires users to be able to upload a word document and see a PDF preview of said document, and we are using Aspose Words for java to do this conversion. I am noticing that some color images in the word documents are rendering grey and slightly cut off on the right hand side on the PDFs. Is this a known problem in the product?
The jar we are using is Aspose.Words.jdk15.jar. Please see attached for screen shots and a sample document containing an image that is causing the behavior. The code is simple:
public void saveDocAsPdf(String docFileName, String pdfFileName) throws Exception
{
Document doc = new Document(docFileName);
Document pdf = doc.deepClone();
pdf.save(pdfFileName, SaveFormat.PDF);
}
Thanks a lot,
Matt