-
Java 设置PDF中的文本旋转、倾斜
本文介绍通过Java程序在PDF文档中设置文本旋转、倾斜的方法。设置文本倾斜时,通过定义方法TransformText(page);并设置page.getCanvas().skewTransform(float angleX, float angleY);
来实现文本倾斜;设置文本旋转时,通过定义方法RotateText(page);并设置page.getCanvas().rotateTransform(float angle);来实现文本旋转。详细代码示例参考以下内容。
注:需要使用PDF类库工具Spire.PDF for Java,可下载jar包 https://www.e-iceblue.cn/Downloads/Spire-PDF-JAVA.html,并解压将lib文件夹下的jar文件导入java程序,或者通过maven仓库下载导入 https://www.e-iceblue.cn/licensing/install-spirepdf-for-java-from-maven-repository.html
Java示例
import com.spire.pdf.*; import com.spire.pdf.graphics.*; import java.awt.*; public class TextStyle { public static void main(String[] args) { //创建PDF文档,添加一页 PdfDocument pdf = new PdfDocument(); PdfPageBase page = pdf.appendPage(); //设置文本倾斜 TransformText(page); //旋转文本 RotateText(page); //保存文档 pdf.saveToFile("DrawText.pdf",FileFormat.PDF); pdf.close(); } //自定义方法在页面添加文本,并设置文本偏移 private static void TransformText(PdfPageBase page) { PdfGraphicsState state = page.getCanvas().save();//保存画布状态 PdfFont font = new PdfFont(PdfFontFamily.Helvetica, 18f);//创建字体,包括字体、字号等 //创建三个画刷,并指定颜色 PdfSolidBrush brush1 = new PdfSolidBrush(new PdfRGBColor(new Color(60,179,113))); PdfSolidBrush brush2 = new PdfSolidBrush(new PdfRGBColor(new Color(139,0,139))); PdfSolidBrush brush3 = new PdfSolidBrush(new PdfRGBColor(new Color(205,92,92))); page.getCanvas().translateTransform(20,120);//设置文本在画布中的坐标位置 page.getCanvas().scaleTransform(1f,1f);//设置文本大小(scaleX值越大,文本越向右横向拉伸;scaleY值越大,文本越向上纵向拉伸) page.getCanvas().skewTransform(-10,0);//设置文本偏转角度(angleX值为文本整体偏移角度,angleY值为字符偏移角度) page.getCanvas().drawString("Go! Turn Around! Go! Go! Go!", font, brush1, 0, 0);//绘制文本 page.getCanvas().skewTransform(10, 10); page.getCanvas().drawString("Go! Turn Around! Go! Go! Go!", font, brush2, 0, 0);//绘制文本 page.getCanvas().scaleTransform(1f, -2f); page.getCanvas().drawString("Go! Turn Around! Go! Go! Go!", font, brush3, 0, -2 * 18);//绘制文本 //再次保存画布状态 page.getCanvas().restore(state); } //自定义方法在页面添加文本,并设置文本旋转 private static void RotateText(PdfPageBase page) { PdfGraphicsState state = page.getCanvas().save();//保存画布状态 PdfFont font = new PdfFont(PdfFontFamily.Helvetica, 10f);//创建字体 PdfSolidBrush brush4 = new PdfSolidBrush(new PdfRGBColor(139,69,19));//创建画刷4 PdfStringFormat centerAlignment = new PdfStringFormat(PdfTextAlignment.Left, PdfVerticalAlignment.Middle);//设置文本对齐方式 //指定文本在画布中的坐标位置 float x = (float) (page.getCanvas().getClientSize().getWidth()/2); float y = 390; page.getCanvas().translateTransform(x,y); //循环绘制12条文本内容,并设置每条文本内容间隔30度,即每一条文本内容以绘制的上一文本内容旋转30度(这里如只需绘制单个文本,直接指定旋转角度即可) for (int i = 0; i < 12; i++) { page.getCanvas().rotateTransform(30); page.getCanvas().drawString("Go! Turn Around! Go! Go! Go!", font, brush4, 20, 0, centerAlignment); } //再次保存画布状态 page.getCanvas().restore(state); } }
设置结果:
(完)
最新更新
带有参数的装饰器
类装饰器
django中的auth模块与admin后台管理
python的日期处理
字符串常用方法
基本数据类型概述
python-map()函数基本用法
python带你实现任意下载AcFun视频数据~
bbs项目之注册功能
变量的定义和使用
三大常用数据库事务详解之三:事务运行
三大常用关系型数据库事务详解之二:基
三大关系型数据库事务详解之一:基本概
MongoDB常用命令(2)
MongoDB基本介绍与安装(1)
SQLServer触发器调用JavaWeb接口
SQL Server索引的原理深入解析
SqlServer2016模糊匹配的三种方式及效率问题
SQL中Truncate的用法
sqlserver 多表关联时在where语句中慎用tri
VB.NET中如何快速访问注册表
ASP.NET中图象处理过程详解
Vue(1)Vue安装与使用
JavaScript 语言入门
js将一段字符串的首字母转成大写
纯原生html编写的h5视频播放器
H5仿原生app短信验证码vue2.0组件附源码地
TypeScript(4)接口
TypeScript(3)基础类型
TypeScript(2)WebStorm自动编译TypeScript配置