为了账号安全,请及时绑定邮箱和手机立即绑定

QRCODE

byte[] d = qrData.getBytes("gd2312");


qrDate是错的,识别不了

正在回答

3 回答

public static void main(String[] args) throws IOException {
		Qrcode xQrcode = new Qrcode();
		xQrcode.setQrcodeEncodeMode('B');//N代表数字,A代表a-Z,B代表其他字符
		xQrcode.setQrcodeErrorCorrect('M');//纠错等级
		xQrcode.setQrcodeVersion(7);//版本
		String qrData = "www.imooc.com";
		int width = 67 + 12 * ( 7 - 1 );//7是版本
		int height = 67 + 12 * ( 7 - 1 );
		
		BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
		
		Graphics2D gs = bufferedImage.createGraphics();
		
		gs.setBackground(Color.white);
		gs.setColor(Color.BLACK);
		gs.clearRect(0, 0, width, height);
		
		int pixoff = 2;//偏移量
		
		byte[] d = qrData.getBytes("gb2312");
		if(d.length>0 && d.length<120){
			boolean[][] s = xQrcode.calQrcode(d);
			
			for(int i=0;i<s.length;i++){
				for(int j=0;j<s.length;j++){
					if(s[j][i]){
						gs.fillRect(j*3+pixoff, i*3+pixoff, 3, 3);
					}
				}
			}
		}
		
		gs.dispose();
		bufferedImage.flush();
		
		ImageIO.write(bufferedImage, "png", new File("c:/image2.png"));
	}


0 回复 有任何疑惑可以回复我~

public static void main(String[] args) throws IOException {

Qrcode xQrcode = new Qrcode();

xQrcode.setQrcodeEncodeMode('B');//N代表数字,A代表a-Z,B代表其他字符

xQrcode.setQrcodeErrorCorrect('M');//纠错等级

xQrcode.setQrcodeVersion(7);//版本

String qrData = "www.imooc.com";

int width = 67 + 12 * ( 7 - 1 );//7是版本

int height = 67 + 12 * ( 7 - 1 );

BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

Graphics2D gs = bufferedImage.createGraphics();

gs.setBackground(Color.white);

gs.setColor(Color.BLACK);

gs.clearRect(0, 0, width, height);

int pixoff = 2;//偏移量

byte[] d = qrData.getBytes("gb2312");

if(d.length>0 && d.length<120){

boolean[][] s = xQrcode.calQrcode(d);

for(int i=0;i<s.length;i++){

for(int j=0;j<s.length;j++){

if(s[j][i]){

gs.fillRect(j*3+pixoff, i*3+pixoff, 3, 3);

}

}

}

}

gs.dispose();

bufferedImage.flush();

ImageIO.write(bufferedImage, "png", new File("c:/image2.png"));

}



0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信