我们可以使用java中的iText库将PDF转换为HTML文件吗?我已将html转换为pdf,并希望使用iText实现PDF到HTML。我不想使用两个不同的库进行相同的操作,因此避免使用pdfBox。
答案 0 :(得分:-3)
调查 https://itextpdf.com/itext7/pdfHTML
public static void main() throws IOException {
// IO
File htmlSource = new File("input.html");
File pdfDest = new File("output.pdf");
// pdfHTML specific code
ConverterProperties converterProperties = new ConverterProperties();
HtmlConverter.convertToPdf(new FileInputStream(htmlSource), new FileOutputStream(pdfDest), converterProperties);
}