Asopose pdf でpdfからhtmlに変換するとレイアウトが崩れる

添付のpdfファイルをhtmlに変換すると、レイアウトが崩れた状態となります。
サンプルソースと変換対象のpdfファイルを送付しますので、ご確認いただき解決方法があればご教示ください。

【ソース】
public static void main(String[] args) throws Exception {
String fileName = “”;
String fileNameTemp = “”;

	License license = new License();
	license.setLicense("C:\\rendition\\classes\\Aspose.Total.Java.lic");
	try{
		File file = new File(args[0]);

		// Access the first slide
		int index = file.getName().lastIndexOf('.');

		if (index!=-1){
			fileName =  file.getName().substring(0, index);
		}

		fileNameTemp = file.getParent() + "\\"  + args[1] + "_" + fileName;

		// Open the document
		Document pdfDocument = new  Document(args[0]);
		// Load PDF document
		// Instantiate HtmlSaveOptions instance
		HtmlSaveOptions saveOptions = new HtmlSaveOptions();
		// Save the HTML file
		pdfDocument.save("D\\Result\\" + fileName + ".html", saveOptions);

}

【Asposeのバージョン】
17.6

400046278.zip (1.3 MB)

@I.inoue

サポートにお問い合わせいただきありがとうございます

Aspose.PDF for Java 18.2を使用する環境でこのシナリオをテストし、いくつかの言語文字が出力 "HTML"と重なっていることに気付きました。

私たちはこの問題を問題追跡システムに「PDFJAVA-37569」として記録しました。さらに、問題の詳細を確認し、修正状況をお知らせします。一方、ご使用の環境で使用している「JDK」バージョンを共有しますか?

ご不便をおかけして申し訳ございません。