zoukankan      html  css  js  c++  java
  • php类库PHP QR Code 二维码

    php类库PHP QR Code 二维码

    php类库PHP QR Code 二维码

    php类库PHP QR Code
    PHP QR Code is open source (LGPL) library for generating QR Code, 
    2-dimensional barcode. Based on libqrencode C library, 
    provides API for creating QR Code barcode images (PNG, JPEG thanks to GD2).
    Implemented purely in PHP, with no external dependencies (except GD2 if needed).

    地址:http://phpqrcode.sourceforge.net/
    下载:http://sourceforge.net/projects/phpqrcode/
    
    
    只需这样应用就行了
    
    <?
    include "./phpqrcode/phpqrcode.php";
    $value=‘http://bbs.lewanchina.com’;
    $errorCorrectionLevel = 'L';
    $matrixPointSize = 4;
    QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);
    exit;
    ?>

  • 相关阅读:
    node下运行ts
    npm的一些基本配置设置
    windws 安装jdk
    java jdbc连接mysql
    struts2+jquery 实现ajax登陆
    struts2 零配置
    java 生成UUID
    ubuntu 换源
    ubuntu下安装redis
    安装 vsftpd
  • 原文地址:https://www.cnblogs.com/archoncap/p/5169782.html
Copyright © 2011-2022 走看看