- 代码实现
public static void dxfToPdf(){// 加载DXF文件String inputFile = "input.dxf";CadImage cadImage = (CadImage) Image.load(inputFile);// 设置PDF输出选项PdfOptions pdfOptions = new PdfOptions();pdfOptions.setPageWidth(200);pdfOptions.setPageHeight(200);// 输出PDF文件String outputFile = "outeput.pdf";cadImage.save(outputFile, pdfOptions);// 关闭CadImage对象cadImage.dispose();
}
- 需要引入文件 文件下载