代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
根据姓名批量生成图片
作者:
旅行
/ 发布于
2012/12/4
/
688
wp的人脉中光秃秃的不好看,就自己根据姓名简单的批量生成一些图片,类似印章的样子。 背景的颜色是随机的,可以设置自己喜欢的颜色,图片大小,字体、位置、图片的格式可自行更改。
import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.image.BufferedImage; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; import java.util.Random; import javax.imageio.ImageIO; public class ImgGenerator { public static void main(String[] args) throws IOException { String fileName = "G:/names/names.txt"; List<String> nameList = readFileByLine(fileName); for (int i = 0; i < nameList.size(); i++) { generateImg(nameList.get(i)); } } public static List<String> readFileByLine(String fileName) throws IOException { List<String> nameList = new ArrayList<String>(); File file = new File(fileName); InputStreamReader isr = new InputStreamReader(new FileInputStream(file), "UTF-8"); BufferedReader reader = new BufferedReader(isr); String tmp; while ((tmp = reader.readLine()) != null) { nameList.add(tmp); } reader.close(); return nameList; } public static void generateImg(String name) throws IOException { int width = 100; int height = 100; String first = null, second = null, third = null, fourth = null; first = name.substring(0, 1); second = name.substring(1, 2); if (name.length() == 2) { third = "印"; fourth = null; } else if (name.length() == 3) { third = name.substring(2, 3); fourth = "印"; } else { third = name.substring(2, 3); fourth = name.substring(3, 4); } String fileName = "G:/names/" + name + ".jpg"; System.out.println(fileName); File file = new File(fileName); Font font = new Font("黑体", Font.PLAIN, 30); BufferedImage bi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g2 = (Graphics2D) bi.getGraphics(); g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON); g2.setBackground(getRandomColor()); g2.clearRect(0, 0, width, height); g2.setFont(font); g2.setPaint(Color.white); g2.drawString(first, 55, 40); g2.drawString(second, 55, 80); g2.drawString(third, 15, 40); if (fourth == null) { drawStar(g2); } else { g2.drawString(fourth, 15, 80); } ImageIO.write(bi, "jpg", file); } public static Color getRandomColor() { Random r = new Random(); return new Color(r.nextInt(255), r.nextInt(255), r.nextInt(255)); } public static void drawStar(Graphics2D g) { // 定义外切圆和内接圆的半径 int R = 16; int r = (int) (R * Math.sin(Math.PI / 10) / Math.sin(3 * Math.PI / 10)); // 定义两个数组, 分别存放10个顶点的x, y 坐标 int[] x = new int[10]; int[] y = new int[10]; // 通过循环给两个数组赋值 for (int i = 0; i < 10; i++) { if (i % 2 == 0) { x[i] = 30 + (int) (R * Math.cos(Math.PI / 10 + (i - 1) * Math.PI / 5)); y[i] = 70 + (int) (R * Math.sin(Math.PI / 10 + (i - 1) * Math.PI / 5)); } else { x[i] = 30 + (int) (r * Math.cos(Math.PI / 10 + (i - 1) * Math.PI / 5)); y[i] = 70 + (int) (r * Math.sin(Math.PI / 10 + (i - 1) * Math.PI / 5)); } } g.setPaint(Color.white); // 调用fillPolygon方法绘制 g.fillPolygon(x, y, 10); } }
试试其它关键字
批量生成图片
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
旅行
贡献的其它代码
(
1
)
.
根据姓名批量生成图片
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3