下面的示例将介绍通过Java编程来对PDF页面进行个性化设置的方法,包括设置页面大小、页边距、纸张方向、页面旋转等。这里有如下多种页面大小尺寸可供选择:
同时,设置文档内容旋转时,可支持如下角度进行内容旋转:
使用工具:
Java示例(供参考)
import com.spire.pdf.*;
import com.spire.pdf.graphics.PdfMargins;
import java.awt.*;
import java.awt.geom.Dimension2D;
import java.awt.geom.Point2D;
public class PageSettings_PDF {
public static void main(String[] args){
//创建PdfDocument对象
PdfDocument originalDoc = new PdfDocument();
//加载PDF文件
originalDoc.loadFromFile("input.pdf");
//创建一个新的PdfDocument实例
PdfDocument newDoc = new PdfDocument();
//遍历所有PDF 页面
Dimension2D dimension2D = new Dimension();
for (int i = 0; i < originalDoc.getPages().getCount(); i++) {
PdfPageBase page = originalDoc.getPages().get(i);
if (i == 0) {
//设置新文档第一页的页面宽、高为原来的1.2倍
float scale = 1.2f;
float width = (float) page.getSize().getWidth() * scale;
float height = (float) page.getSize().getHeight() * scale;
dimension2D.setSize(width, height);
//设置新文档第一页的页边距为左右50,上下100
PdfMargins margins = new PdfMargins(50, 100);
PdfPageBase newPage = newDoc.getPages().add(dimension2D, margins);
//复制原文档的内容到新文档
newPage.getCanvas().drawTemplate(page.createTemplate(), new Point2D.Float());
}
if (i == 1) {
//设置新文档第二页的页边距为左右100、上下100
PdfMargins margins = new PdfMargins(100,100);
//设置新文档第二页的页面大小为A3
PdfPageBase newPage = newDoc.getPages().add(PdfPageSize.A3, margins);
//调整画布,设置内容也根据页面的大小进行缩放
double wScale = (PdfPageSize.A3.getWidth() - 10) / PdfPageSize.A3.getWidth();
double hScale = (PdfPageSize.A3.getHeight() - 10) / PdfPageSize.A3.getHeight();
newPage.getCanvas().translateTransform(wScale, hScale);
//复制原文档的内容到新文档
newPage.getCanvas().drawTemplate(page.createTemplate(), new Point2D.Float());
}
if (i == 2) {
//设置新文档第三页的页边距为左右200,上下50
PdfMargins margins = new PdfMargins(240, 50);
//设置新文档第三页的页面大小为A3, 页面旋转角度为0,纸张方向为水平
PdfPageBase newPage = newDoc.getPages().add(PdfPageSize.A3, margins, PdfPageRotateAngle.Rotate_Angle_0, PdfPageOrientation.Landscape);
//调整画布,设置内容也根据页面的大小进行缩放
double wScale = PdfPageSize.A4.getHeight() / page.getSize().getWidth();
double hScale = PdfPageSize.A4.getWidth() / page.getSize().getHeight();
newPage.getCanvas().translateTransform(wScale, hScale);
//复制原文档的内容到新文档
newPage.getCanvas().drawTemplate(page.createTemplate(), new Point2D.Float());
}
//保存PDF
newDoc.saveToFile("pdfPageSetting.pdf");
}
}
}
完成代码后,运行程序,生成文档。经过页面设置,效果如下图所示:
(本文完)
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
当前题目:JavaPDF页面设置——页面大小、页边距、纸张方向、页面旋转-创新互联
URL标题:https://www.cdcxhl.com/article12/hgjgc.html
成都网站建设公司_创新互联,为您提供网站维护、建站公司、网站建设、标签优化、网站收录、微信小程序
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联