Hello
I am using to convert to pdf to doc, docx , html , svg , and many more.(in java)
Document doc = null;
try {
doc = new Document(“C:\Users\admin\Desktop\Wed Dec 01 11 12 15 IST 2021\GeoEye_GeoEye1_50cm_8bit_RGB_DRA_Mining_2009FEB14_8bits_sub_r_15.pdf”);
DocSaveOptions options = new DocSaveOptions();
options.setFormat(DocSaveOptions.DocFormat.DocX);// doc and docx
options.setMode(DocSaveOptions.RecognitionMode.Flow);
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
doc.save(“C:\Users\admin\Desktop\Wed Dec 01 11 12 15 IST 2021\GeoEyeghgth_GeoEye1_50cm_8b.html”, saveOptions);
doc.close();
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage()+“ex”);
}catch (Error e) {
// TODO: handle exception
System.out.println(e.getMessage()+“error”);
}
but getting error internally : FrameworkException: Not enough memory to process jpeg file.
i also attached file link :https://drive.google.com/file/d/1WmgU32JnK4UUKpYE6q4uZT18ZC3WW3EQ/view?usp=sharing .
How can handle this ?
Thanks