博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java Swing
阅读量:5172 次
发布时间:2019-06-13

本文共 539 字,大约阅读时间需要 1 分钟。

参考帖子

 

BufferedImage ImageOne = new BufferedImage(width2, height2,

BufferedImage.TYPE_INT_RGB);
Graphics g = ImageOne.getGraphics();//

g.fillRect(0, 0,width2, height2);

g.setColor(Color.BLACK);
Font mFont = new Font("宋体", Font.PLAIN, 20);
g.setFont(mFont);
//String str = "添加文字测试";
FontMetrics fm = g.getFontMetrics(mFont);
int textWidth = fm.stringWidth(str); //计算文字的宽度
g.drawString(str,(600-textWidth)/2, 100); //文字居中显示
g.drawImage(image,(600-image.getWidth())/2 , 500, null);//将二维码画入大图片中

转载于:https://www.cnblogs.com/abc8023/p/5895049.html

你可能感兴趣的文章
使用JMeter代理录制app测试脚本
查看>>
Linq to Object实现分页获取数据
查看>>
mac常用系统命令
查看>>
android上传文件到服务器
查看>>
我回答了90%的面试题,为什么还被拒?
查看>>
Html - Table 表头固定和 tbody 设置 height 在IE不起作用的解决
查看>>
HDU 2262 回溯算法 递归枚举
查看>>
九度0J 1374 所有员工年龄排序
查看>>
微信小程序图片使用示例
查看>>
Ubuntu16.04+cuda8.0rc+opencv3.1.0+caffe+Theano+torch7搭建教程
查看>>
1.开发准备
查看>>
centos su命令
查看>>
CLR:基元类型、引用类型和值类型
查看>>
dubbo序列化hibernate.LazyInitializationException could not initialize proxy - no Session懒加载异常的解决...
查看>>
jQuery中的事件绑定的几种方式
查看>>
泥塑课
查看>>
setImageBitmap和setImageResource
查看>>
springMVC4 注解配置实例
查看>>
单片机编程
查看>>
Filter in Servlet
查看>>