使用Graphics2D画表格

2023-11-10 23:50
文章标签 使用 graphics2d 画表格

本文主要是介绍使用Graphics2D画表格,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在机器人需要发表格图片需求,我搜索了一些第三方包,最终使用了java内置的Graphics2D来画表格生成jpg图片,再通过cq语句发送。

表格图片,需要有标题,表格头,表格内容,将表格头和表格前三名设置背景色。

使用Graphics2D画图,需要画横线,竖线,还有字体,其中选择位置进行渲染比较繁琐。所以我将画表格分为几部分来画

1、先定图片大小

图片的高度,等于标题加表格头加表格内容所有高度再加上余留边角部分大概20个像素

图片的宽度,等于表格头的项数加上余留边角部分大概20个像素

 int rows = 0;int maxfont = 0;if (allValue != null && allValue.size() > 0) {rows += (2+allValue.size());}for (List<String> strings : allValue) {maxfont = strings.get(0).length()>maxfont?strings.get(0).length():maxfont;}// 实际数据行数+标题+备注//初始化宽度int numwidth = 50;//序号宽度int totalrow = 1+rows;//总行数int namewidth = maxfont * 22;//名字列宽度int otherwidth = 80;//其他列宽度int imageWidth = numwidth + namewidth  + otherwidth*(headers.length-2) + 20;//图片总宽度//初始化高度int imageHeight = totalrow * 30 + 20;//图片总高度int rowheight = 30;//行高//图片边框留白int startHeight = 10;//余留上方10像素int startWidth = 10;//余留左方10像素//创建Graphics2D对象,用图片缓存流BufferedImage image = new BufferedImage(imageWidth, imageHeight, BufferedImage.TYPE_INT_RGB);Graphics2D graphics = image.createGraphics();

2、画背景

通过刚刚计算的图片的高度和宽度,画一张白色的画补作为图片总背景

graphics.setColor(Color.WHITE);graphics.fillRect(0, 0, imageWidth, imageHeight);

再将表格头和前三名的背景画上,通过计算再使用fillRect画上

    //画表头背景graphics.setColor(new Color(150,0,0));if (allValue != null && allValue.size() > 0) {graphics.fillRect(startWidth + 1, startHeight +  rowheight + 1, imageWidth - startWidth - 6, rowheight - 1);}//画前三名背景int redstartH = 2;graphics.setColor(new Color(190,25,0));for (int temp = 0; temp < allValue.size(); temp++) {List strings = allValue.get(temp);if (strings != null) {graphics.fillRect(startWidth + 1,startHeight + redstartH*rowheight +1 , imageWidth - startWidth - 6,rowheight - 1);}redstartH++;if(temp==2)break;}

3、画表格体

画表格体,先画横线再画竖线,通过上方留白高度+行高*n来画横线,通过左方留白宽度+各列宽度来画竖线。

// 画横线for (int j = 0; j < totalrow - 1; j++) {graphics.setColor(Color.gray);graphics.drawLine(startWidth, startHeight + (j + 1) * rowheight, imageWidth - 5,startHeight + (j + 1) * rowheight);}int rightLine;// 画竖线graphics.setColor(Color.gray);if (allValue != null && allValue.size() > 0) {for (int k = 0; k < headers.length+1; k++) {rightLine = getRightMargin(k,startWidth, namewidth,otherwidth,imageWidth);graphics.drawLine(rightLine, startHeight + rowheight, rightLine,startHeight + (allValue.size()+2)*rowheight);}}

4、写标题,表头

已计算出每行的高度,把标题写在第一行,表头写在第二行。通过累加行高得出些的位置。

因为标题从第一行开始,表格头从第二行开始,内容从第三行开始,所以设置了startH来控制画图位置

// 设置字体,准备写入文字Font font = new Font("宋体", Font.BOLD, 20);graphics.setFont(font);graphics.setColor(Color.black);// 写标题if (allValue != null && allValue.size() > 0) {graphics.drawString(titles, imageWidth / 3 + startWidth+30, startHeight + rowheight - 10);}// 写入表头int startH = 2;graphics.setColor(Color.WHITE);font = new Font("宋体", Font.BOLD, 20);graphics.setFont(font);if (allValue != null && allValue.size() > 0) {for (int m = 0; m < headers.length; m++) {int strWidth = graphics.getFontMetrics().stringWidth(headers[m]);rightLine = getRightMargin(m,startWidth, namewidth,otherwidth,imageWidth);if(m==0)rightLine = rightLine + (numwidth-strWidth)/2;else if(m==1)rightLine = rightLine + (namewidth-strWidth)/2;elserightLine = rightLine + (otherwidth-strWidth)/2;graphics.drawString(headers[m], rightLine,startHeight + startH*rowheight  - 10);}}// 写入内容startH = 3;graphics.setColor(Color.white);graphics.setFont(new Font("宋体", Font.BOLD, 20));if (allValue != null && allValue.size() > 0) {for (int n = 0; n < allValue.size(); n++) {if (n == 3) {graphics.setColor(Color.black);graphics.setFont(new Font("宋体", Font.PLAIN, 20));}List<String> arr = allValue.get(n);for (int l = 0; l < arr.size() + 1; l++) {rightLine = getRightMargin(l, startWidth, namewidth, otherwidth, imageWidth) + 5;if (l == 0) {int strWidth = graphics.getFontMetrics().stringWidth(String.valueOf(n + 1));graphics.drawString(String.valueOf(n + 1), rightLine + (numwidth - strWidth) / 2 - 5,startHeight + rowheight * (n + startH) - 10);} else {int strWidth = graphics.getFontMetrics().stringWidth(arr.get(l - 1));if (l == 1)graphics.drawString(arr.get(l - 1), rightLine,startHeight + rowheight * (n + startH) - 10);elsegraphics.drawString(arr.get(l - 1), rightLine + (otherwidth - strWidth) / 2 - 5,startHeight + rowheight * (n + startH) - 10);}}}}

5、消除锯齿

因为2D画图画字体会有锯齿,而graphics2D类有抗锯齿和画笔柔顺的开关,设置如下

   graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);graphics.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_DEFAULT);graphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);Stroke s = new BasicStroke(imageWidth, BasicStroke.CAP_ROUND, BasicStroke.JOIN_MITER);graphics.setStroke(s);

6、生成图片

然后创建一个1.jpg将图片的缓存来写出到图片文件中,在项目的相对路径中就有一张图片1.jpg

graphics.drawImage(image.getScaledInstance(imageWidth, imageHeight, Image.SCALE_SMOOTH), 0, 0, null);String path = "1.jpg";ImageIO.write(image, "jpg", new File(path));

测试画图效果

List<List<List<String>>> allValue = new ArrayList<>();List<List<String>> contentArray1 = new ArrayList<>();for(int i = 0;i<10;i++){contentArray1.add(Arrays.asList(
new String[]{"谭宇","300","5.00","1.00","1234","1234","1234","100"}));}String[] headTitles = 
new String[]{"序号","名字","成绩","击键","码长","退格","回改","选重","错字"};String titles = "跟打成绩";try {graphicsGeneration(contentArray1,titles,headTitles);} catch (Exception e) {e.printStackTrace();}
14899865-56be6c0dad522194.png
image.png

例子源码

package ImgTest;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;public class imatest {public static String graphicsGeneration(List<List<String>> allValue, String titles, String[] headers ) throws Exception {int rows = 0;int maxfont = 0;if (allValue != null && allValue.size() > 0) {rows += (2+allValue.size());}for (List<String> strings : allValue) {maxfont = strings.get(0).length()>maxfont?strings.get(0).length():maxfont;}// 实际数据行数+标题+备注int numwidth = 50;int totalrow = 1+rows;int namewidth = maxfont * 22;int otherwidth = 80;int imageWidth = numwidth + namewidth  + otherwidth*(headers.length-2) + 20;int imageHeight = totalrow * 30 + 20;int rowheight = 30;int startHeight = 10;int startWidth = 10;BufferedImage image = new BufferedImage(imageWidth, imageHeight, BufferedImage.TYPE_INT_RGB);Graphics2D graphics = image.createGraphics();graphics.setColor(Color.WHITE);graphics.fillRect(0, 0, imageWidth, imageHeight);//画表头背景graphics.setColor(new Color(150,0,0));if (allValue != null && allValue.size() > 0) {graphics.fillRect(startWidth + 1, startHeight +  rowheight + 1, imageWidth - startWidth - 6, rowheight - 1);}//画前三名背景int redstartH = 2;graphics.setColor(new Color(190,25,0));for (int temp = 0; temp < allValue.size(); temp++) {List strings = allValue.get(temp);if (strings != null) {graphics.fillRect(startWidth + 1,startHeight + redstartH*rowheight +1 , imageWidth - startWidth - 6,rowheight - 1);}redstartH++;if(temp==2)break;}// 画横线for (int j = 0; j < totalrow - 1; j++) {graphics.setColor(Color.gray);graphics.drawLine(startWidth, startHeight + (j + 1) * rowheight, imageWidth - 5,startHeight + (j + 1) * rowheight);}int rightLine;// 画竖线graphics.setColor(Color.gray);if (allValue != null && allValue.size() > 0) {for (int k = 0; k < headers.length+1; k++) {rightLine = getRightMargin(k,startWidth, namewidth,otherwidth,imageWidth);graphics.drawLine(rightLine, startHeight + rowheight, rightLine,startHeight + (allValue.size()+2)*rowheight);}}// 设置字体,准备写入文字Font font = new Font("宋体", Font.BOLD, 20);graphics.setFont(font);graphics.setColor(Color.black);// 写标题if (allValue != null && allValue.size() > 0) {graphics.drawString(titles, imageWidth / 3 + startWidth+30, startHeight + rowheight - 10);}// 写入表头int startH = 2;graphics.setColor(Color.WHITE);font = new Font("宋体", Font.BOLD, 20);graphics.setFont(font);if (allValue != null && allValue.size() > 0) {for (int m = 0; m < headers.length; m++) {int strWidth = graphics.getFontMetrics().stringWidth(headers[m]);rightLine = getRightMargin(m,startWidth, namewidth,otherwidth,imageWidth);if(m==0)rightLine = rightLine + (numwidth-strWidth)/2;else if(m==1)rightLine = rightLine + (namewidth-strWidth)/2;elserightLine = rightLine + (otherwidth-strWidth)/2;graphics.drawString(headers[m], rightLine,startHeight + startH*rowheight  - 10);}}// 写入内容startH = 3;graphics.setColor(Color.white);graphics.setFont(new Font("宋体", Font.BOLD, 20));if (allValue != null && allValue.size() > 0) {for (int n = 0; n < allValue.size(); n++) {if (n == 3) {graphics.setColor(Color.black);graphics.setFont(new Font("宋体", Font.PLAIN, 20));}List<String> arr = allValue.get(n);for (int l = 0; l < arr.size() + 1; l++) {rightLine = getRightMargin(l, startWidth, namewidth, otherwidth, imageWidth) + 5;if (l == 0) {int strWidth = graphics.getFontMetrics().stringWidth(String.valueOf(n + 1));graphics.drawString(String.valueOf(n + 1), rightLine + (numwidth - strWidth) / 2 - 5,startHeight + rowheight * (n + startH) - 10);} else {int strWidth = graphics.getFontMetrics().stringWidth(arr.get(l - 1));if (l == 1)graphics.drawString(arr.get(l - 1), rightLine,startHeight + rowheight * (n + startH) - 10);elsegraphics.drawString(arr.get(l - 1), rightLine + (otherwidth - strWidth) / 2 - 5,startHeight + rowheight * (n + startH) - 10);}}}}graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);graphics.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_DEFAULT);graphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);Stroke s = new BasicStroke(imageWidth, BasicStroke.CAP_ROUND, BasicStroke.JOIN_MITER);graphics.setStroke(s);graphics.drawImage(image.getScaledInstance(imageWidth, imageHeight, Image.SCALE_SMOOTH), 0, 0, null);String path = "1.jpg";ImageIO.write(image, "jpg", new File(path));return path;}/*** 获取竖线和文字的水平位置* @param k* @param startWidth* @param namewidth* @param otherwidth* @param imageWidth* @return*/private static int getRightMargin(int k, int startWidth, int namewidth,int otherwidth, int imageWidth) {int rightLine = 0;if (k == 0) {rightLine = startWidth;} else if (k == 1) {rightLine = startWidth + 50;} else if (k == 2) {rightLine = startWidth + 50 + namewidth;} else if (k >= 3 &&k<9) {rightLine = startWidth + +50 + namewidth + (k - 2) * otherwidth;} else if (k == 9)rightLine = imageWidth - 5;return rightLine;}public static void initChartData(){List<List<String>> contentArray1 = new ArrayList<>();for(int i = 0;i<10;i++){contentArray1.add(Arrays.asList(new String[]{"谭宇","300","5.00","1.00","1234","1234","1234","100"}));}String[] headTitles = new String[]{"序号","名字","成绩","击键","码长","退格","回改","选重","错字"};String titles = "跟打成绩";try {graphicsGeneration(contentArray1,titles,headTitles);} catch (Exception e) {e.printStackTrace();}}public static void main(String[] args) {initChartData();}
}

这篇关于使用Graphics2D画表格的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/386114

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti

【Linux 从基础到进阶】Ansible自动化运维工具使用

Ansible自动化运维工具使用 Ansible 是一款开源的自动化运维工具,采用无代理架构(agentless),基于 SSH 连接进行管理,具有简单易用、灵活强大、可扩展性高等特点。它广泛用于服务器管理、应用部署、配置管理等任务。本文将介绍 Ansible 的安装、基本使用方法及一些实际运维场景中的应用,旨在帮助运维人员快速上手并熟练运用 Ansible。 1. Ansible的核心概念