Hello Aspose team,
After the upgrading of the aspose pdf version to 22.8, and 22.9 for word we encountered issues with conversion. When converting a PDF file to a Word Document, we have experienced overlapping of text issues. We used the following code snippet for testing:
import com.aspose.pdf.Document
import com.aspose.pdf.SaveFormat
class Test{
static void pdfToWordConverter(){
Locale.setDefault(new Locale(‘en-us’));
Document document = new Document(‘test.pdf’)
document.save(‘test.docx’, SaveFormat.DocX)
}
static void main(String[] args){
pdfToWordConverter();
}
}
Please refer to the attached resources which contains the pdf file and the corresponding converted word file to further analyze this from your end.
Also please let us know if we can work our way around this and fix this with minor fixes in the current code or not.
Thanks,
Bivek