Hi there,
We have a problem when converting a html to word. Please see attached files. However, with the same html file, converting to pdf appears to be ok.
Code used for converting to docx:
com.aspose.words.Document input = new com.aspose.words.Document(inputStream);
input.save(os, SaveFormat.DOCX);
Code used for converting to pdf:
com.aspose.words.Document input = new com.aspose.words.Document(inputStream);
PdfSaveOptions options = new PdfSaveOptions();
input.save(os, options);
Thanks,
Tien