Hello!
I’ve get red cross instead of image while converting docx to pdf (see convertion_result_from_docx.png ).
At the same time .doc converted to pdf correctly.
Lib:aspose-words-16.1.0
The code:
final Document attachment = new Document(source - this is InputStream, null);
FontSettings fs = new FontSettings();
fs.setFontsFolder(fontFolder, true);
fs.setDefaultFontName(“Franklin Gothic Book”);
attachment.setFontSettings(fs);
PdfSaveOptions saveOptions = new PdfSaveOptions();
attachment.save(sink - this is OutputStream , saveOptions);
Any help will be very appreciated.