Java二维码如何生成?
awt。image。BufferedImage;
import java。io。File;
import javax。imageio。ImageIO;
import com。swetake。util。Qrcode;
public class QRCodeEncoderTest {
public static void main(String[] args) throws Exception {
Qrcode qrcode=new Qrcode();
qrcode。
怎么生成二维码?怎么生成二维码
最常见的生成方式就是百度上在线生成。在线生成的二维码是兼容的码,一般的扫码软件都能识别。
还有特定的手机应用软件也能生成二维码(比如快拍、Chinalink)、但是这种二维码只能通过生成的软件才能扫出码上具体的信息,其他识别软件只能扫描出公告信息(大多是个网站)。
如果你想生成不兼容的二维码(只有自己的软件能识别),就只能研发生成软件了。。
java怎么生成带背景的二维码
把源码找到。或者调用api。如果提供了这个margin的方法的话。有两点原因:
1,你没有在工程中引用相应的jar包,所以找不到matrixtoimagewriter这个类;
2,你的jdk版本可能低于1.5,导致不支持参数化类型。
java 生成二维码后如何给该二维码添加信息
java可使用zxing生成二维码并为其添加信息。
以下是详细步骤:
1、创建MatrixToImageWriter类
import com.google.zxing.common.BitMatrix;
import javax.imageio.ImageIO;
import java.io.File;
import java.io.OutputStream;
import java.io.IOException;
import java.awt.image.BufferedImage;
public final 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
for (int y = 0; y
image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE);
}
}
return image;
}
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);
}
}
2、生成二维码并添加信息
import java.io.File;
import java.util.Hashtable;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
public class Test {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
String text = "";
int width = 300;
int height = 300;
//二维码的图片格式
String format = "gif";
Hashtable hints = new Hashtable();
//内容所使用编码
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
BitMatrix bitMatrix = new MultiFormatWriter().encode(text,
BarcodeFormat.QR_CODE, width, height, hints);
//生成二维码
File outputFile = new File("d:"+File.separator+"new.gif");
MatrixToImageWriter.writeToFile(bitMatrix, format, outputFile);
}
}二维码是记录信息的,往里面添加信息没有办法做,除非你重新生成一个二维码图片,比如你将原先的二维码信息识别出来,然后在那串信息中加上你要添加的信息,最后重新生成二维码。如果你要对现有的二维码直接修改貌似不怎么靠谱。我刚做了这个,用google的zxing包或者qrcode包,百度一下就知道了新代码:(注意点查看图片截图的标注)
map hints = new hashmap();
hints.put(encodehinttype.margin, 0);
bitmatrix bitmatrix = new qrcodewriter().encode("生成二维码的内容",
barcodeformat.qr_code, 256, 256,hints);
//1.1去白边
int[] rec = bitmatrix.getenclosingrectangle();
int reswidth = rec[2] + 1;
int resheight = rec[3] + 1;
bitmatrix resmatrix = new bitmatrix(reswidth, resheight);
resmatrix.clear();
for (int i = 0; i < reswidth; i++) {
for (int j = 0; j < resheight; j++) {
if (bitmatrix.get(i + rec[0], j + rec[1])) {
resmatrix.set(i, j);
}
}
int width = resmatrix.getwidth();
int height = resmatrix.getheight();
bufferedimage image = new bufferedimage(width, height,bufferedimage.type_int_argb);
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
image.setrgb(x, y, resmatrix.get(x, y) == true ?
color.black.getrgb():color.white.getrgb());
}
imageio.write(image,"png", new file("生成二维码保存的路径"));