如何在Java中使用iText添加pdf的页面背景颜色 [英] How can I add page background color of pdf using iText in java

查看:1590
本文介绍了如何在Java中使用iText添加pdf的页面背景颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是iText pdf库的新手.谁能指导我如何使用Java中的iText pdf将背景颜色添加到整个 页面 (不适用于块或段落).

I am new to iText pdf library. Can any one guide me how to add background color to entire page (not for chunk or paragraph) using iText pdf in java.

推荐答案

此代码将完成这项工作:

This code will do the job:

Rectangle pageSize = new Rectangle(216, 720);
pageSize.setBackgroundColor(new BaseColor(0xFF, 0xFF, 0xDE));
Document document = new Document(pageSize);

这篇关于如何在Java中使用iText添加pdf的页面背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆