Skip to content

PDF 转 RTF

概述

RTF是一种流行的文本格式,可以保留文本的格式和样式信息,适用于大多数文字处理器的读取和写入。应用程序可以轻松集成 ComPDFKit Conversion SDK,将 PDF 文件转换成 RTF 文档。

示例

以下是完整的示例代码,演示了如何将 PDF 文档转换为 RTF 文件。

java
        CPDFConvert  cpdfConvertRTF = new CPDFConvertRTF();
        CPDFConvertRTFOptions cpdfConvertRTFOptions = new CPDFConvertRTFOptions();
        cpdfConvertRTFOptions.setContainAnnot(true);
        cpdfConvertRTFOptions.setContainImg(true);
        String inputPath = rootDir + input_file + "word.pdf";
        List<Integer> pageCounts = getPageCounts(cpdfConvertRTF.getPageCount(inputPath, password));
        ConvertResult convert = cpdfConvertRTF.convert(inputPath, rootDir + output_file, "", cpdfConvertRTFOptions, pageCounts, password, page -> {
        });