Java pdf使用aspose转图片后再转pdf再压缩代码
时间: 2023-02-14 13:11:46 浏览: 117
Java做图片压缩的代码
使用 Aspose 转换 PDF 为图片并再次转换为 PDF 并进行压缩的代码示例如下:
```java
import com.aspose.pdf.*;
import java.io.IOException;
public class PdfToImageToPdf {
public static void main(String[] args) throws IOException {
// Load the PDF document
Document pdfDocument = new Document("input.pdf");
// Convert the PDF to image
pdfDocument.save("output.jpg", SaveFormat.JPEG);
// Load the image
Document imageDocument = new Document("output.jpg");
// Compress the image
imageDocument.compress();
// Save the compressed image
imageDocument.save("compressed.pdf");
}
}
```
注意: 这只是一个示例, 你需要根据你的实际情况来调整图片和压缩的质量。
阅读全文