java使用jar包生成二维码的示例代码

使用java进行二维码的生成与读取使用到了谷歌的zxing.jar

第一步 导入,maven依赖或者下载指定jar包

<!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
<dependency>
  <groupId>com.google.zxing</groupId>
  <artifactId>javase</artifactId>
  <version>3.2.1</version>
</dependency>

第二步 书写二维码生成器的工具类

import java.awt.Color;
import java.io.File;
import java.util.Hashtable;
import com.google.zxing.EncodeHintType;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
/**
 * QRCode 生成器的格式
 *
 * @author ai(ahx.show)
 */
public class QRCodeFormat {

  /** 图片大小 */
  private int size;

  /** 内容编码格式 */
  private String encode;

  /** 错误修正等级 (Error Collection Level) */
  private ErrorCorrectionLevel errorCorrectionLevel;

  /** 错误修正等级的具体值 */
  private double errorCorrectionLevelValue;

  /** 前景色 */
  private Color foreGroundColor;

  /** 背景色 */
  private Color backGroundColor;

  /** 图片的文件格式 */
  private String imageFormat;

  /** 图片的外边距大小 (Quiet Zone) */
  private int margin;

  /** 提供给编码器额外的参数 */
  private Hashtable<EncodeHintType, Object> hints;

  /** 需要添加的图片 */
  private File icon;

  /**
   * 创建一个带有默认值的 QRCode 生成器的格式。默认值如下
   *
   * <ul>
   * <li>图片大小: 256px</li>
   * <li>内容编码格式: UTF-8</li>
   * <li>错误修正等级: Level M (有15% 的内容可被修正)</li>
   * <li>前景色: 黑色</li>
   * <li>背景色: 白色</li>
   * <li>输出图片的文件格式: png</li>
   * <li>图片空白区域大小: 0个单位</li>
   * </ul>
   *
   * @return QRCode 生成器格式
   */
  public static QRCodeFormat NEW() {
    return new QRCodeFormat();
  }

  private QRCodeFormat() {
    this.size = 256;
    this.encode = "utf-8";
    this.errorCorrectionLevel = ErrorCorrectionLevel.M;
    this.errorCorrectionLevelValue = 0.15;
    this.foreGroundColor = Color.BLACK;
    this.backGroundColor = Color.WHITE;
    this.imageFormat = "png";
    this.margin = 0;
    this.hints = new Hashtable<EncodeHintType, Object>();
  }

  /**
   * 返回图片的大小。
   *
   * @return 图片的大小
   */
  public int getSize() {
    return this.size;
  }

  /**
   * 设置图片的大小。图片的大小等于实际内容与外边距的值(建议设置成偶数值)。
   *
   * @param size
   *      图片的大小
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setSize(int size) {
    this.size = size;
    return this;
  }

  /**
   * 返回内容编码格式。
   *
   * @return 内容编码格式
   */
  public String getEncode() {
    return encode;
  }

  /**
   * 设置内容编码格式。
   *
   * @param encode
   *      内容编码格式
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setEncode(String encode) {
    this.encode = encode;
    return this;
  }

  /**
   * 返回错误修正等级。
   *
   * @return 错误修正等级
   */
  public ErrorCorrectionLevel getErrorCorrectionLevel() {
    return errorCorrectionLevel;
  }

  /**
   * 返回错误修正等级的具体值。
   *
   * @return 错误修正等级的具体值
   */
  public double getErrorCorrectionLevelValue() {
    return errorCorrectionLevelValue;
  }

  /**
   * 设置错误修正等级。其定义如下
   *
   * <ul>
   * <li>L: 有 7% 的内容可被修正</li>
   * <li>M: 有15% 的内容可被修正</li>
   * <li>Q: 有 25% 的内容可被修正</li>
   * <li>H: 有 30% 的内容可被修正</li>
   * </ul>
   *
   * @param errorCorrectionLevel
   *      错误修正等级
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setErrorCorrectionLevel(char errorCorrectionLevel) {
    switch (Character.toUpperCase(errorCorrectionLevel)) {
    case 'L':
      this.errorCorrectionLevel = ErrorCorrectionLevel.L;
      this.errorCorrectionLevelValue = 0.07;
      break;
    case 'M':
      this.errorCorrectionLevel = ErrorCorrectionLevel.M;
      this.errorCorrectionLevelValue = 0.15;
      break;
    case 'Q':
      this.errorCorrectionLevel = ErrorCorrectionLevel.Q;
      this.errorCorrectionLevelValue = 0.25;
      break;
    case 'H':
      this.errorCorrectionLevel = ErrorCorrectionLevel.H;
      this.errorCorrectionLevelValue = 0.3;
      break;
    default:
      this.errorCorrectionLevel = ErrorCorrectionLevel.M;
    }

    return this;
  }

  /**
   * 返回前景色。
   *
   * @return 前景色
   */
  public Color getForeGroundColor() {
    return foreGroundColor;
  }

  /**
   * 设置前景色。值为十六进制的颜色值(与 CSS 定义颜色的值相同,不支持简写),可以忽略「#」符号。
   *
   * @param foreGroundColor
   *      前景色的值
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setForeGroundColor(String foreGroundColor) {
    try {
      this.foreGroundColor = getColor(foreGroundColor);
    }
    catch (NumberFormatException e) {
      this.foreGroundColor = Color.BLACK;
    }
    return this;
  }

  /**
   * 设置前景色。
   *
   * @param foreGroundColor
   *      前景色的值
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setForeGroundColor(Color foreGroundColor) {
    this.foreGroundColor = foreGroundColor;
    return this;
  }

  /**
   * 返回背景色。
   *
   * @return 背景色
   */
  public Color getBackGroundColor() {
    return backGroundColor;
  }

  /**
   * 设置背景色。值为十六进制的颜色值(与 CSS 定义颜色的值相同,不支持简写),可以忽略「#」符号。
   *
   * @param backGroundColor
   *      前景色的值
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setBackGroundColor(String backGroundColor) {
    try {
      this.backGroundColor = getColor(backGroundColor);
    }
    catch (NumberFormatException e) {
      this.backGroundColor = Color.WHITE;
    }
    return this;
  }

  /**
   * 设置背景色。
   *
   * @param backGroundColor
   *      前景色的值
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setBackGroundColor(Color backGroundColor) {
    this.backGroundColor = backGroundColor;
    return this;
  }

  /**
   * 返回图片的文件格式。
   *
   * @return 图片的文件格式
   */
  public String getImageFormat() {
    return imageFormat.toUpperCase();
  }

  /**
   * 设置图片的文件格式 。
   *
   * @param imageFormat
   *      图片的文件格式
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setImageFormat(String imageFormat) {
    this.imageFormat = imageFormat;
    return this;
  }

  /**
   * 返回图片的外边距大小。
   *
   * @return 图片的外边距大小
   */
  public int getMargin() {
    return margin;
  }

  /**
   * 设置图片的外边距大小 。
   *
   * @param margin
   *      图片的外边距大小
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setMargin(int margin) {
    this.margin = margin;
    return this;
  }

  /**
   * 返回提供给编码器额外的参数。
   *
   * @return 提供给编码器额外的参数
   */
  public Hashtable<EncodeHintType, ?> getHints() {
    hints.clear();
    hints.put(EncodeHintType.ERROR_CORRECTION, getErrorCorrectionLevel());
    hints.put(EncodeHintType.CHARACTER_SET, getEncode());
    hints.put(EncodeHintType.MARGIN, getMargin());
    return hints;
  }

  /**
   * 返回添加的图片。
   *
   * @return 添加的图片
   */
  public File getIcon() {
    return icon;
  }

  /**
   * 设置添加的图片 。
   *
   * @param icon
   *      添加的图片
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setIcon(File icon) {
    this.icon = icon;
    return this;
  }

  /**
   * 设置添加的图片 。
   *
   * @param iconPath
   *      添加的图片
   *
   * @return QRCode生成器的格式
   */
  public QRCodeFormat setIcon(String iconPath) {
    return setIcon(new File(iconPath));
  }

  private Color getColor(String hexString) {
    if (hexString.charAt(0) == '#') {
      return new Color(Long.decode(hexString).intValue());
    } else {
      return new Color(Long.decode("0xFF" + hexString).intValue());
    }
  }
}

第三步 使用生成器对象按照指定格式进行生成读取二维码

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.color.ColorSpace;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.charset.Charset;

import javax.imageio.ImageIO;

import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.ChecksumException;
import com.google.zxing.FormatException;
import com.google.zxing.LuminanceSource;
import com.google.zxing.NotFoundException;
import com.google.zxing.Result;
import com.google.zxing.WriterException;
import com.google.zxing.client.j2se.BufferedImageLuminanceSource;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.HybridBinarizer;
import com.google.zxing.qrcode.QRCodeReader;
import com.google.zxing.qrcode.QRCodeWriter;

/**
 * QRCode 处理器
 * @ClassName: QRCode
 * @Description: TODO
 * @author: ai(ahx.show)
 * @date: 2016年12月18日 下午1:22:50
 */
public final class QRCode {

  /** QRCode 生成器格式 */
  private QRCodeFormat format = null;

  /** 生成的 QRCode 图像对象 */
  private BufferedImage qrcodeImage = null;

  /** 生成的 QRCode 图片文件 */
  private File qrcodeFile = null;

  /**
   * 返回生成的 QRCode 图像对象
   *
   * @return 生成的 QRCode 图像对象
   */
  public BufferedImage getQrcodeImage() {
    return qrcodeImage;
  }

  /**
   * 返回生成的 QRCode 图片文件
   *
   * @return 生成的 QRCode 图片文件
   */
  public File getQrcodeFile() {
    return qrcodeFile;
  }

  private QRCode() {

  }

  /**
   * 使用带默认值的「QRCode 生成器格式」来创建一个 QRCode 处理器。
   *
   * @param content
   *      所要生成 QRCode 的内容
   *
   * @return QRCode 处理器
   */
  public static QRCode NEW(final String content) {
    return NEW(content, QRCodeFormat.NEW());
  }

  /**
   * 使用指定的「QRCode 生成器格式」来创建一个 QRCode 处理器。
   *
   * @param content
   *      所要生成 QRCode 的内容
   * @param format
   *      QRCode 生成器格式
   *
   * @return QRCode 处理器
   */
  public static QRCode NEW(final String content, QRCodeFormat format) {
    QRCode qrcode = new QRCode();
    qrcode.format = format;
    qrcode.qrcodeImage = toQRCode(content, format);
    return qrcode;
  }

  /**
   * 把指定的内容生成为一个 QRCode 的图片,之后保存到指定的文件中。
   *
   * @param f
   *      指定的文件
   *
   * @return QRCode 处理器
   */
  public QRCode toFile(String f) {
    return toFile(new File(f), this.format.getIcon());
  }

  /**
   * 把指定的内容生成为一个 QRCode 的图片,之后保存到指定的文件中。
   *
   * @param qrcodeFile
   *      指定的文件
   *
   * @return QRCode 处理器
   */
  public QRCode toFile(File qrcodeFile) {
    return toFile(qrcodeFile, this.format.getIcon());
  }

  /**
   * 把指定的内容生成为一个 QRCode 的图片,并在该图片中间添加上指定的图片;之后保存到指定的文件内。
   *
   * @param qrcodeFile
   *      QRCode 图片生成的指定的文件
   * @param appendFile
   *      需要添加的图片。传入的文件路径如果没有(null 或者为空)的时候将忽略该参数
   *
   * @return QRCode 处理器
   */
  public QRCode toFile(String qrcodeFile, String appendFile) {
    if (null == appendFile || appendFile.length() == 0) {
      return toFile(new File(qrcodeFile));
    }
    return toFile(new File(qrcodeFile), new File(appendFile));
  }

  /**
   * 把指定的内容生成为一个 QRCode 的图片,并在该图片中间添加上指定的图片;之后保存到指定的文件内。
   *
   * @param qrcodeFile
   *      QRCode 图片生成的指定的文件
   * @param appendFile
   *      需要添加的图片。传入的图片不存在的时候将忽略该参数
   *
   * @return QRCode 处理器
   */
  public QRCode toFile(File qrcodeFile, File appendFile) {
    try {
      if (!qrcodeFile.exists()) {
        qrcodeFile.getParentFile().mkdirs();
        qrcodeFile.createNewFile();
      }

      if (null != appendFile && appendFile.isFile() && appendFile.length() != 0) {
        appendImage(ImageIO.read(appendFile));
      }

      if (!ImageIO.write(this.qrcodeImage, getSuffixName(qrcodeFile), qrcodeFile)) {
        throw new RuntimeException("Unexpected error writing image");
      }
    }
    catch (IOException e) {
      throw new RuntimeException(e);
    }
    this.qrcodeFile = qrcodeFile;
    return this;
  }

  private void appendImage(BufferedImage appendImage) {
    appendImage(this.qrcodeImage, appendImage, this.format);
  }

  private static void appendImage(BufferedImage qrcodeImage, BufferedImage appendImage, QRCodeFormat format) {
    int baseWidth = qrcodeImage.getWidth();
    int baseHeight = qrcodeImage.getHeight();

    // 计算 icon 的最大边长
    // 公式为 二维码面积*错误修正等级*0.4 的开方
    int maxWidth = (int) Math.sqrt(baseWidth * baseHeight * format.getErrorCorrectionLevelValue() * 0.4);
    int maxHeight = maxWidth;

    // 获取 icon 的实际边长
    int roundRectWidth = (maxWidth < appendImage.getWidth()) ? maxWidth : appendImage.getWidth();
    int roundRectHeight = (maxHeight < appendImage.getHeight()) ? maxHeight : appendImage.getHeight();

    BufferedImage roundRect = new BufferedImage(roundRectWidth, roundRectHeight, BufferedImage.TYPE_INT_ARGB);

    Graphics2D g2 = roundRect.createGraphics();
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    g2.setColor(Color.WHITE);
    g2.fillRoundRect(0, 0, roundRectWidth, roundRectHeight, 27, 27);
    g2.setComposite(AlphaComposite.SrcAtop);
    g2.drawImage(appendImage, 0, 0, roundRectWidth, roundRectHeight, null);
    g2.dispose();

    Graphics gc = qrcodeImage.getGraphics();
    gc.setColor(format.getBackGroundColor());
    gc.drawImage(roundRect, (baseWidth - roundRectWidth) / 2, (baseHeight - roundRectHeight) / 2, null);
    gc.dispose();
  }

  /**
   * 使用带默认值的「QRCode 生成器格式」,把指定的内容生成为一个 QRCode 的图像对象。
   *
   * @param content
   *      所需生成 QRCode 的内容
   *
   * @return QRCode 的图像对象
   */
  public static BufferedImage toQRCode(String content) {
    return toQRCode(content, null);
  }

  /**
   * 使用指定的「QRCode生成器格式」,把指定的内容生成为一个 QRCode 的图像对象。
   *
   * @param content
   *      所需生成 QRCode 的内容
   * @param format
   *      QRCode 生成器格式
   * @return QRCode 的图像对象
   */
  public static BufferedImage toQRCode(String content, QRCodeFormat format) {
    if (format == null) {
      format = QRCodeFormat.NEW();
    }

    content = new String(content.getBytes(Charset.forName(format.getEncode())));
    BitMatrix matrix = null;
    try {
      matrix = new QRCodeWriter().encode(content,
                        BarcodeFormat.QR_CODE,
                        format.getSize(),
                        format.getSize(),
                        format.getHints());
    }
    catch (WriterException e) {
      throw new RuntimeException(e);
    }

    int width = matrix.getWidth();
    int height = matrix.getHeight();
    int fgColor = format.getForeGroundColor().getRGB();
    int bgColor = format.getBackGroundColor().getRGB();
    BufferedImage image = new BufferedImage(width, height, ColorSpace.TYPE_RGB);
    for (int x = 0; x < width; x++) {
      for (int y = 0; y < height; y++) {
        image.setRGB(x, y, matrix.get(x, y) ? fgColor : bgColor);
      }
    }

    File appendFile = format.getIcon();
    if (null != appendFile && appendFile.isFile() && appendFile.length() != 0) {
      BufferedImage appendImage = null;
      try {
        appendImage = ImageIO.read(appendFile);
      }
      catch (IOException e) {
        throw new RuntimeException(e);
      }

      appendImage(image, appendImage, format);
    }

    return image;
  }

  /**
   * 从指定的 QRCode 图片文件中解析出其内容。
   *
   * @param qrcodeFile
   *      QRCode 文件
   *
   * @return QRCode 中的内容
   */
  public static String from(String qrcodeFile) {
    if (qrcodeFile.startsWith("http://") || qrcodeFile.startsWith("https://")) {
      try {
        return from(new URL(qrcodeFile));
      }
      catch (MalformedURLException e) {
        throw new RuntimeException(e);
      }
    } else {
      return from(new File(qrcodeFile));
    }
  }

  /**
   * 从指定的 QRCode 图片文件中解析出其内容。
   *
   * @param qrcodeFile
   *      QRCode 图片文件
   *
   * @return QRCode 中的内容
   */
  public static String from(File qrcodeFile) {
    try {
      BufferedImage image = ImageIO.read(qrcodeFile);
      return from(image);
    }
    catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  /**
   * 从指定的 QRCode 图片链接中解析出其内容。
   *
   * @param qrcodeUrl
   *      QRCode 图片链接
   *
   * @return QRCode 中的内容
   */
  public static String from(URL qrcodeUrl) {
    try {
      BufferedImage image = ImageIO.read(qrcodeUrl);
      return from(image);
    }
    catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  /**
   * 从指定的 QRCode 图像对象中解析出其内容。
   *
   * @param qrcodeImage
   *      QRCode 图像对象
   *
   * @return QRCode 中的内容
   */
  public static String from(BufferedImage qrcodeImage) {
    LuminanceSource source = new BufferedImageLuminanceSource(qrcodeImage);
    BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
    String content = null;
    try {
      Result result = new QRCodeReader().decode(bitmap);
      content = result.getText();
    }
    catch (NotFoundException e) {
      throw new RuntimeException(e);
    }
    catch (ChecksumException e) {
      throw new RuntimeException(e);
    }
    catch (FormatException e) {
      throw new RuntimeException(e);
    }
    return content;
  }

  private String getSuffixName(File file) {
    String path = file.getAbsolutePath();

    if (null == path) {
      return this.format.getImageFormat();
    }
    int pos = path.lastIndexOf('.');
    if (-1 == pos) {
      return this.format.getImageFormat();
    }
    return path.substring(pos + 1).toUpperCase();
  }

  public static void main(String[] args) throws IOException {
   String str="https://blog.csdn.net/jiandanyou/article/details/109751418";
   QRCode.NEW(str).toFile("d:\\2.jpg");//使用指定字符串生成二维码
   System.out.println(QRCode.from("d:/2.jpg"));//读取解析指定二维码
 }

}

第四步 使用

工具类中的方法使用的静态方法,可以直接使用QRCode.方法进行执行

生成二维码方法

QRCode.NEW(str).toFile(url);

str:二维码中包含的字符串(如果包含地址前缀添加http或https 否则不能自动跳转 会解析地址字符串)

url:二维码图片生成位置

QRCode.from(url);

url:要解析二维码图片位置

到此这篇关于java使用jar包生成二维码的示例代码的文章就介绍到这了,更多相关java jar包生成二维码内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • java实现二维码生成的几个方法(推荐)

    java实现二维码生成的几个方法,具体如下: 1: 使用SwetakeQRCode在Java项目中生成二维码 http://swetake.com/qr/ 下载地址 或着http://sourceforge.jp/projects/qrcode/downloads/28391/qrcode.zip 这个是日本人写的,生成的是我们常见的方形的二维码 可以用中文 如:5677777ghjjjjj 2: 使用BarCode4j生成条形码和二维码 BarCode4j网址:http://sourcefor

  • Java实现的生成二维码和解析二维码URL操作示例

    本文实例讲述了Java实现的生成二维码和解析二维码URL操作.分享给大家供大家参考,具体如下: 二维码依赖jar包,zxing <!-- 二维码依赖 start --> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.0.0</version> </dependency&

  • 用JAVA 设计生成二维码详细教程

    教你一步一步用 java 设计生成二维码 在物联网的时代,二维码是个很重要的东西了,现在无论什么东西都要搞个二维码标志,唯恐落伍,就差人没有用二维码识别了.也许有一天生分证或者户口本都会用二维码识别了.今天心血来潮,看见别人都为自己的博客添加了二维码,我也想搞一个测试一下. 主要用来实现两点: 1. 生成任意文字的二维码. 2. 在二维码的中间加入图像. 一.准备工作. 准备QR二维码3.0 版本的core包和一张jpg图片. 下载QR二维码包. 首先得下载 zxing.jar 包, 我这里用的

  • java中ZXing 生成、解析二维码图片的小示例

    概述 ZXing 是一个开源 Java 类库用于解析多种格式的 1D/2D 条形码.目标是能够对QR编码.Data Matrix.UPC的1D条形码进行解码. 其提供了多种平台下的客户端包括:J2ME.J2SE和Android. 官网:ZXing github仓库 实战 本例演示如何在一个非 android 的 Java 项目中使用 ZXing 来生成.解析二维码图片. 安装 maven项目只需引入依赖: <dependency> <groupId>com.google.zxing

  • 利用java生成二维码工具类示例代码

    二维码介绍 二维条形码最早发明于日本,它是用某种特定的几何图形按一定规律在平面(二维方向上)分布的黑白相间的图形记录数据符号信息的,在代码编制上巧妙地利用构成计算机内部逻辑基础的"0"."1"比特流的概念,使用若干个与二进制相对应的几何形体来表示文字数值信息,通过图象输入设备或光电扫描设备自动识读以实现信息自动处理. 如下为java生成二维码工具类,可以选择生成文件,或者直接在页面生成,话不多说了,来一起看看详细的示例代码吧. 示例代码 import java.aw

  • Java生成二维码可添加logo和文字功能

    废话不多说,直接给大家贴代码了,具体代码如下所示: package com.luo.wctweb.util; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.ByteArrayOutputStream; import java.io.File; import java.util.Date; imp

  • 利用Java生成带有文字的二维码

    介绍 主要使用了goole的zxing包,下面给出了示例代码,很方便大家的理解和学习,代码都属于初步框架,功能有了,需要根据实际使用情况完善优化. 第一步.maven导入zxing <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.2.1</version> </dependency>

  • java 二维码的生成与解析示例代码

    二维码,是一种采用黑白相间的平面几何图形通过相应的编码算法来记录文字.图片.网址等信息的条码图片.如下图 二维码的特点: 1.  高密度编码,信息容量大 可容纳多达1850个大写字母或2710个数字或1108个字节,或500多个汉字,比普通条码信息容量约高几十倍. 2.  编码范围广 该条码可以把图片.声音.文字.签字.指纹等可以数字化的信息进行编码,用条码表示出来:可以表示多种语言文字:可表示图像数据. 3.  容错能力强,具有纠错功能 这使得二维条码因穿孔.污损等引起局部损坏时,照样可以正确

  • java生成彩色附logo二维码

    java生成二维码有很多开发的jar包如zxing是谷歌开发的,这里的话我使用zxing的开发包来实现的.我们在很多项目中需要动态生成二维码,来提供给用户,这样让更多人能够很好的通过二维码来体验自己的应用. 下面贴出代码,已经测试通过,大家可以直接复制代码使用: 最后实现结果: java生成二维码 代码如下: import java.awt.Color; import java.awt.Graphics2D; import java.awt.Image; import java.awt.geom

  • java使用jar包生成二维码的示例代码

    使用java进行二维码的生成与读取使用到了谷歌的zxing.jar 第一步 导入,maven依赖或者下载指定jar包 <!-- https://mvnrepository.com/artifact/com.google.zxing/javase --> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version

  • js生成二维码的示例代码

    前段时间项目中需要开发扫描二维码查看信息的功能,在网上查了一些资料,把用过的方法进行总结需要导入一个qrcode的js 插件. 插件链接: qrcode.js下载地址,点击即可下载 一.一个简单的示例 如下:(仅供参考) <%-- Created by IntelliJ IDEA. User: ASUS author:xumz Date: 2021/2/27 Time: 10:33 搬运请备注 To change this template use File | Settings | File

  • PHP实现生成二维码的示例代码

    目录 前言 1.目前有2种类型的二维码 2.用户扫描带场景值二维码时,可能推送以下两种事件 3.创建二维码ticket 4.临时二维码请求说明 5.永久二维码请求说明 6.临时二维码和永久二维码生成实现的代码 前言 为了满足用户渠道推广分析和用户账号绑定等场景的需要,公众平台提供了生成带参数二维码的接口.使用该接口可以获得多个带不同场景值的二维码,用户扫描后,公众号可以接收到事件推送. 1.目前有2种类型的二维码 临时二维码,是有过期时间的,最长可以设置为在二维码生成后的30天(即2592000

  • Java生成中间logo的二维码的示例代码

    最近有负责微信开发,对于微信开发的项目,肯定少不了二维码啦,正好有个这样的需求,这对不同的商品生成一个二维码,扫码即刻下单.博主就弄了一个二维码生成的工具类. 弄出来之后,产品经理又说了,中间放上公司的logo是不是好一点?加上吧, 加上公司logo之后,产品经理想了想,每个商品都有个二维码,销售人员有很多个商品二维码,群发给用户,在qq群上,微信群上,怎么知道哪个二维码对应哪个商品的呢?于是决定要加上商品名称.最后商品二维码就成了下面这个模样了(当然啦,这里面的logo并不是博主现职公司的).

  • Java生成二维码的实例代码

    使用开源的一维/二维码图形处理库zxing GitHub地址 引入依赖 <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.0</version> &

  • Java Spring boot实现生成二维码

    目录 一.引入springboot依赖: 二.工具类代码: 三.调用工具类生成二维码 1.将链接生成二维码图片并保存到指定路径 2.将链接生成二维码直接显示在页面 3.将以get请求传参链接生成二维码 总结 一.引入spring boot依赖: <!--引入生成二维码的依赖--> <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> <dependency> <groupId>co

  • Android 点击生成二维码功能实现代码

    先看效果: 输入内容,点击生成二维码: 点击logo图案: 代码: QRCodeUtil: package com.example.administrator.zxing; import android.graphics.Bitmap; import android.graphics.Canvas; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zx

  • C# 根据字符串生成二维码的实例代码

    1.先下载NuGet包(ZXing.Net) 2.新建控制器及编写后台代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Linq; using System.Web; using System.Web.Mvc; using ZXing; using ZXing.QrCode; nam

  • c# 生成二维码的示例

    二维码是越来越流行了,很多地方都有可能是使用到.如果是静态的二维码还是比较好处理的,通过在线工具就可以直接生成一张二维码图片,比如:草料二维码.但有的时候是需要动态生成的(根据动态数据生成),这个使用在线就工具就无法实现了.最好是能在代码中直接生成一个二维码图片,这里我就介绍下使用QRCoder类库在代码中生成二维码. 网上生成二维码的组件还是挺多的,但是真正好用且快速的却不多.QRCoder就是我在众多中找到的,它的生成速度快.而且使用也相当方便. 开始编码 1.安装 QRCoder组件.在项

  • 微信小程序动态生成二维码的实现代码

    效果图如下: 实现 wxml <!-- 存放二维码的图片--> <view class='container'> <image bindtap="previewImg" mode="scaleToFill" src="{{imagePath}}"></image> </view> <!-- 画布,用来画二维码,只用来站位,不用来显示--> <view class=&qu

随机推荐