-
Java 添加Word形状或图形
本文将介绍通过java编程在Word文档中添加形状(图形),包括添加单个图形、组合图形,以及格式化图形样式,如设置形状填充色、大小、位置、边框样式、边框颜色、边框粗细、图形旋转角度、图形文本环绕方式等。
使用工具:Free Spire.Doc for Java(免费版)
Jar获取及导入
方法1:通过官网下载jar包。下载后,解压文件,并将lib文件夹下的Spire.Doc.jar文件导入到java程序。参考如下导入效果:
方法2:可通过maven仓库安装导入。
Java代码示例
import com.spire.doc.*; import com.spire.doc.documents.Paragraph; import com.spire.doc.documents.ShapeLineStyle; import com.spire.doc.documents.ShapeType; import com.spire.doc.documents.TextWrappingStyle; import com.spire.doc.fields.ShapeGroup; import com.spire.doc.fields.ShapeObject; import java.awt.*; public class DrawShape { public static void main(String[]args){ //创建文档,添加段落 Document doc = new Document(); Paragraph para = doc.addSection().addParagraph(); //添加指定大小的矩形到文档中的指定位置 ShapeObject rectangle = para.appendShape(60,60, ShapeType.Rectangle); rectangle.setFillColor(Color.MAGENTA); rectangle.setStrokeColor(Color.GREEN); rectangle.setStrokeWeight(5); rectangle.setLineStyle(ShapeLineStyle.Double); rectangle.setVerticalPosition(50); rectangle.setHorizontalPosition(70); rectangle.setRotation(10); rectangle.setAlternativeText("矩形"); //添加三角形 ShapeObject triangle = para.appendShape(60,60,ShapeType.Triangle); triangle.setStrokeColor(Color.pink); triangle.setFillColor(Color.orange); triangle.setVerticalPosition(50); triangle.setHorizontalPosition(170); triangle.setRotation(-30); triangle.setTextWrappingStyle(TextWrappingStyle.Through); //添加圆形 ShapeObject circle = para.appendShape(60,60, ShapeType.Ellipse); circle.setFillColor(Color.cyan); circle.setStrokeWeight(7); circle.setStrokeColor(Color.BLUE); circle.setVerticalPosition(50); circle.setHorizontalPosition(270); //添加波浪图形 ShapeObject wave = para.appendShape(80,60, ShapeType.Double_Wave); wave.setFillColor(new Color(255,228,196)); wave.setStrokeWeight(3); wave.setStrokeColor(Color.ORANGE); wave.setVerticalPosition(50); wave.setHorizontalPosition(370); //添加图形组合到段落,指定其大小和水平位置 ShapeGroup shapegroup = para.appendShapeGroup(200, 150); shapegroup.setHorizontalPosition(150); shapegroup.setVerticalPosition(150); //计算缩放比率 float X = (shapegroup.getWidth() / 1000.0f); float Y = (shapegroup.getHeight() / 1000.0f); //创建一个圆形 ShapeObject circle_1 = new ShapeObject(doc, ShapeType.Ellipse); circle_1.setWidth(80 / X); circle_1.setHeight(80 / Y); circle_1.setFillColor(new Color(144,238,144)); circle_1.setStrokeColor(new Color(144,238,144)); circle_1.setHorizontalPosition(60 / X);//设置其相对于图形组合的水平位置 //将圆形添加到图形组合 shapegroup.getChildObjects().add(circle_1); //添加另外两个圆形到图形组合 ShapeObject circle_2 = new ShapeObject(doc, ShapeType.Ellipse); circle_2.setWidth(80 / X); circle_2.setHeight(80 / Y); circle_2.setFillColor(new Color(255,192,203)); circle_2.setStrokeColor(new Color(255,192,203)); circle_2.setHorizontalPosition(30 / X); circle_2.setVerticalPosition(50 / Y); shapegroup.getChildObjects().add(circle_2); ShapeObject circle_3 = new ShapeObject(doc, ShapeType.Ellipse); circle_3.setWidth(80 / X); circle_3.setHeight(80 / Y); circle_3.setFillColor(new Color(255,239,213)); circle_3.setStrokeColor(new Color(255,239,213)); circle_3.setHorizontalPosition(90 / X); circle_3.setVerticalPosition(50 / Y); shapegroup.getChildObjects().add(circle_3); //保存文档 doc.saveToFile("AddShape.docx",FileFormat.Docx_2013); doc.dispose(); } }
形状添加效果:
出 处:https://www.cnblogs.com/Yesi/p/11975332.html
最新更新
python爬虫及其可视化
使用python爬取豆瓣电影短评评论内容
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比