I am trying to convert .docx to.HTML. But the text box is showing as an image. I need it as text.
My input and out file is given below…test.zip (17.8 KB)
I need output like it will be text not image. My expected output is given below…
expected Output.zip (17.5 KB)
i nedd text box will treat as text in html file.
CODE:–>
Document document = new Document(“D:\test\Aspose\problemDocx\test\” + file.getName());
String fileNameWithoutExtension = FilenameUtils.removeExtension(file.getName());
document.save(“D:\test\Aspose\problemDocx\html\” + fileNameWithoutExtension + “.html”);