Aspose.Pdf Java v17.6
It seems that a text underline in PDF is converted to a strikeThrougn text to DOC.
Please see attached the files that I use to reproduce the issue. How to fix that?
import com.aspose.pdf.Document;
import com.aspose.pdf.SaveFormat;
public class TestPdfToDoc {
public static void main(String[] args) throws Exception {
Document dstDoc = new Document("E:\\Download\\pdf to doc\\Test.pdf");
dstDoc.save("E:\\Download\\pdf to doc\\Test.doc", SaveFormat.Doc);
}
}
pdf to doc.zip (132.9 KB)