二维码生成器问题

289367 &建筑人的网上家园!!!做资料,查规范,就上筑业网!&
二维码问题
二维码问题
分类:资料软件|浏览110次|地区:通用|悬赏1
打印的时候有二维码是什么情况 & 怎么取消二维码
这是统一加上的,放心用吧
0回复()[资料软件]
0回复()[资料软件]
0回复()[资料软件]
0回复()[资料软件]
0回复()[资料软件]
0回复()[资料软件]
1回复()[资料软件]
级别:15级
级别:15级
级别:15级
级别:15级
级别:15级
全国******:400-163-8866 &&&京公网安备 &&&京ICP备号-11
Copyright (C) &筑业网() All Rights二维码问题?
MatrixToImageWriter这个类一直找不到,不在ZXING这个包里吗?还是要在另外一个包里下载。。
我把源码给你,自己把包名改了就可以了,望采纳!!!package top.rstyro.
import java.awt.image.BufferedI
import java.io.F
import java.io.IOE
import java.io.OutputS
import javax.imageio.ImageIO;
import com.mon.BitM
* 二维码生成辅助类
* @author Administrator
public class MatrixToImageWriter {
private static final int BLACK = 0xFF000000;
private static final int WHITE = 0xFFFFFFFF;
private MatrixToImageWriter() {}
public static BufferedImage toBufferedImage(BitMatrix matrix) {
int width = matrix.getWidth();
int height = matrix.getHeight();
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for (int x = 0; x & x++) {
for (int y = 0; y & y++) {
image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE);
public static void writeToFile(BitMatrix matrix, String format, File file)
throws IOException {
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, file)) {
throw new IOException("Could not write an image of format " + format + " to " + file);
public static void writeToStream(BitMatrix matrix, String format, OutputStream stream)
throws IOException {
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, stream)) {
throw new IOException("Could not write an image of format " + format);
你还没有登录,请先登录或注册慕课网帐号
72320人关注
Copyright (C)
All Rights Reserved | 京ICP备 号-2

参考资料

 

随机推荐