⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imageensure.java

📁 MIS管理系统
💻 JAVA
字号:
package database;

import java.io.*;
import java.util.*;
import javax.imageio.*;
import java.awt.*;
import java.awt.image.*;

public class ImageEnsure {
	public ImageEnsure() {
	}
	
	private char mapTable[]={'0','1','2','3','4','5','6','7','8','9'};

	public String getEnsure(int width, int height, OutputStream os) {
		
		if(width<=0)width=60;
		if(height<=0)height=25;
		
		BufferedImage image = new BufferedImage(width, height, 
									BufferedImage.TYPE_INT_RGB); 

		// 获取图形上下文 
		Graphics g = image.getGraphics(); 

		// 设定背景色 
		g.setColor(new Color(0x00FFFF)); 
		g.fillRect(0, 0, width, height); 

		//画边框 
//		g.setColor(Color.black); 
//		g.drawRect(0,0,width-1,height-1); 

		// 取随机产生的认证码
		String strEnsure = "";

		// 4代表4位验证码
		for(int i=0; i<4; ++i) {
			strEnsure += mapTable[(int)(mapTable.length*Math.random())];
		}
		
		// 将认证码显示到图象中 
		g.setColor(Color.black); 
		g.setFont(new Font("Atlantic Inline",Font.PLAIN,18)); //18表示字号
		String str = strEnsure.substring(0,1); 
		g.drawString(str,2,17); 
		
		str = strEnsure.substring(1,2); 
		g.drawString(str,16,15); 
		str = strEnsure.substring(2,3); 
		g.drawString(str,30,18); 
		
		str = strEnsure.substring(3,4); 
		g.drawString(str,44,15); 
		
		// 随机产生20个干扰点
//		Random rand = new Random();
//		for (int i=0;i<20;i++) 
//		{ 
//			int x = rand.nextInt(width); 
//			int y = rand.nextInt(height); 
//			g.drawOval(x,y,1,1); 
//		} 

		// 释放图形上下文
		g.dispose(); 
		
		try {
			// 输出图象到页面 
			ImageIO.write(image, "JPEG", os);
		} catch (IOException e) {
			return "";
		}
		
		return strEnsure;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -