Socket
Book a DemoInstallSign in
Socket

easyqrcodejs-arm

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easyqrcodejs-arm

A feature-rich cross-browser QRCode generator for pure javascript. Support Dot style, Logo, Background image, Colorful, Title, etc. Support Angular, Vue.js, React, Next.js framework.(Running with DOM on client side)

3.7.2
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

EasyQRCodeJS

EasyQRCodeJS is a feature-rich cross-browser pure JavaScript QRCode generation library. Support for Javascript modules. Support setting Dot style, Logo, Background image, Colorful, Title and more.

EasyQRCodeJS 是一个功能丰富的跨浏览器的纯 JavaScript QRCode 生成库。支持 JavaScript 模块化加载。支持点状风格,Logo,背景图片,规则色彩控制,标题等设置。

Table of contents

Choose what you need

ProjectSupport
EasyQRCodeJSRunning with DOM on CLIENT-SIDE . Browser(IE6+, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.), Electron, NW.js, ETC.
EasyQRCodeJS-NodeJSRunning without DOM on SERVER-SIDE. Save image to file or get data url text. NodeJS, Electron, NW.js, ETC.

Feature

  • English

    • Cross-browser support for QR code generation based on HTML5 Canvas and Table

    • Required Patterns that support dot style

    • Support for Quiet Zone settings

    • Support custom Position Pattern inner fill and outer border color

    • Support custom Alignment Pattern inner fill and outer border color

    • Support custom Timing Patterns vertical, horizontal color

    • Support Logo images (including transparent PNG images)

    • Support Background Image

    • Support for title, subtitle settings

    • Has no dependencies

    • Support AMD, CMD, CommonJS/Node.js JavaScript modules

    • Angular, Vue.js, React, Next.js Support

  • 中文

    • 跨浏览器,支持基于 HTML5 Canvas 和 Table 的二维码生成

    • 支持点形风格的 Required Patterns

    • 支持 Quiet Zone 设置

    • 支持自定义 Position Pattern 内填充和外边框颜色

    • 支持自定义 Alignment Pattern 内填充和外边框颜色

    • 支持自定义 Timing Patterns 垂直,水平颜色

    • 支持 Logo 图片(包括背景透明的 PNG 图片)

    • 支持 Background Image 背景图片

    • 支持标题,副标题设置

    • 不依赖任何第三方

    • 支持 AMD,CMD, CommonJS/Node.js JavaScript 模块加载规范

    • Angular, Vue.js, React, NEXT.js 支持

Try It!

Try It!

Demo preview

Demo preview

QR Code Structure

QR Code Structure

Installation

  • Download install

    <script src="dist/easy.qrcode.min.js" type="text/javascript" charset="utf-8"></script>
    
    
  • Npm install

    npm install easyqrcodejs
    

Basic Usages

<div id="qrcode"></div>

<script type="text/javascript">
	// Options
	var options = {
		text: "https://github.com/ushelp/EasyQRCodeJS"
	};
	
	// Create QRCode Object
	new QRCode(document.getElementById("qrcode"), options);
</script>
  • AMD load

    require.config({
    	paths: {
    		QRCode: "<YOUR_PATH>/easy.qrcode.min"
    	}
    });
    
    require(["QRCode"], function(QRCode){
    	
    	// Your code...
    	
    });
    
  • Node.js load(For Example, Use in Electron)

    const QRCode = require('easyqrcodejs');
    
    // Your code...
    

QRCode API

Object

var qrcode = new QRCode(DOM_object, options_object);
  • Options

     var options_object = {
    		// ====== Basic
    		text: "https://github.com/ushelp/EasyQRCodeJS",
    		width: 256,
    		height: 256,
    		colorDark : "#000000",
    		colorLight : "#ffffff",
    		correctLevel : QRCode.CorrectLevel.H, // L, M, Q, H
    		dotScale: 1 // Must be greater than 0, less than or equal to 1. default is 1
    		
    		// ====== Quiet Zone
    		/*
    		quietZone: 0,
    		quietZoneColor: 'transparent',
    		*/
    
    		// ====== Logo
    		/*
    		logo:"../demo/logo.png", // Relative address, relative to `easy.qrcode.min.js`
    		logo:"http://127.0.0.1:8020/easy-qrcodejs/demo/logo.png", 
    		logoWidth:80, // widht. default is automatic width
    		logoHeight:80 // height. default is automatic height
    		logoBackgroundColor:'#fffff', // Logo backgroud color, Invalid when `logBgTransparent` is true; default is '#ffffff'
    		logoBackgroundTransparent:false, // Whether use transparent image, default is false
    		*/
    	
    		// ====== Backgroud Image
    		/*
    		backgroundImage: '', // Background Image
    		backgroundImageAlpha: 1, // Background image transparency, value between 0 and 1. default is 1. 
    		autoColor: false,
    		*/
    		
    		// ====== Colorful
    		// === Posotion Pattern(Eye) Color
    		/*
    		PO: '#e1622f', // Global Posotion Outer color. if not set, the defaut is `colorDark`
    		PI: '#aa5b71', // Global Posotion Inner color. if not set, the defaut is `colorDark`
    		PO_TL:'', // Posotion Outer color - Top Left 
    		PI_TL:'', // Posotion Inner color - Top Left 
    		PO_TR:'', // Posotion Outer color - Top Right 
    		PI_TR:'', // Posotion Inner color - Top Right 
    		PO_BL:'', // Posotion Outer color - Bottom Left 
    		PI_BL:'', // Posotion Inner color - Bottom Left 
    		*/
    		// === Alignment Color
    		/*
    		AO: '', // Alignment Outer. if not set, the defaut is `colorDark`
    		AI: '', // Alignment Inner. if not set, the defaut is `colorDark`
    		*/
    		// === Timing Pattern Color
    		/*
    		timing: '#e1622f', // Global Timing color. if not set, the defaut is `colorDark`
    		timing_H: '', // Horizontal timing color
    		timing_V: '', // Vertical timing color
    		*/
    		
    		// ====== Title
    		/*
    		title: 'QR Title', // content 
    		titleFont: "bold 18px Arial", //font. default is "bold 16px Arial"
    		titleColor: "#004284", // color. default is "#000"
    		titleBackgroundColor: "#fff", // background color. default is "#fff"
    		titleHeight: 70, // height, including subTitle. default is 0
    		titleTop: 25, // draws y coordinates. default is 30
    		*/
    	   
    		// ====== SubTitle
    		/*
    		subTitle: 'QR subTitle', // content
    		subTitleFont: "14px Arial", // font. default is "14px Arial"
    		subTitleColor: "#004284", // color. default is "4F4F4F"
    		subTitleTop: 40, // draws y coordinates. default is 0
    		*/
    	   
    		// ===== Event Handler
    		/*
    		onRenderingStart: undefined,
    		onRenderingEnd: undefined,
    		*/
    	   
    		// ===== Versions
    		/*
    		version: 0, // The symbol versions of QR Code range from Version 1 to Version 40. default 0 means automatically choose the closest version based on the text length.
    		*/        
    	   
    		// ===== Tooltip
    		/*
    		tooltip: false // Whether set the QRCode Text as the title attribute value of the QRCode div
    		*/ 
    }
    
    OptionRequiredTypeDefaultsDescriptionCompatibility
    Basic options---------------
    textYString''Text 
    widthNNumber256Width 
    heightNNumber256Height 
    colorDarkNString#000000Dark CSS color, transparent 
    colorLightNString#ffffffLight CSS color, transparent 
    correctLevelNEnumQRCode.CorrectLevel.HQRCode.CorrectLevel.H
    QRCode.CorrectLevel.Q
    QRCode.CorrectLevel.M
    QRCode.CorrectLevel.L
     
    dotScaleNNumber1.0Dot style required Patterns. Ranges: 0-1.0 
    Quiet Zone---------------
    quietZoneNNumber0Quiet Zone size 
    quietZoneColorNStringtransparentBackground CSS color to Quiet Zone 
    Logo options---------------
    logoNStringundefinedLogo Image Path or Base64 encoded image. If use relative address, relative to easy.qrcode.min.js 
    logoWidthNNumberundefinedHeight 
    logoHeightNNumberundefinedWidth 
    logoBackgroundTransparentNBooleanfalseWhether the background transparent image(PNG) shows transparency. When true, logoBackgroundColor is invalid 
    logoBackgroundColorNString#ffffffSet Background CSS Color when image background transparent. Valid when logoBackgroundTransparent is false 
    Backgroud Image options---------------
    backgroundImageNStringundefinedBackground Image Path or Base64 encoded Image. If use relative address, relative to easy.qrcode.min.js 
    backgroundImageAlphaNNumber1.0Background image transparency. Ranges: 0-1.0 
    autoColorNBooleanfalseAutomatic color adjustment 
    Posotion Pattern Color options---------------
    PONStringundefinedGlobal Posotion Outer CSS color. if not set, the defaut is colorDark 
    PINStringundefinedGlobal Posotion Inner CSS color. if not set, the defaut is colorDark 
    PO_TLNStringundefinedPosotion Outer CSS color - Top Left 
    PI_TLNStringundefinedPosotion Inner CSS color - Top Left 
    PO_TRNStringundefinedPosotion Outer CSS color - Top Right 
    PI_TRNStringundefinedPosotion Inner CSS color - Top Right 
    PO_BLNStringundefinedPosotion Outer CSS color - Bottom Left 
    PI_BLNStringundefinedPosotion Inner CSS color - Bottom Left 
    Alignment Color options---------------
    AONStringundefinedAlignment Outer CSS color. if not set, the defaut is colorDark 
    AINStringundefinedAlignment Inner CSS color. if not set, the defaut is colorDark 
    Timing Pattern Color options---------------
    timingNStringundefinedGlobal Timing CSS color. if not set, the defaut is colorDark 
    timing_HNStringundefinedHorizontal timing CSS color 
    timing_VNStringundefinedVertical timing CSS color 
    Title options---------------
    titleNString'' 
    titleFontNStringbold 16px ArialCSS Font 
    titleColorNString#000000CSS color 
    titleBackgroundColorNString#ffffffCSS color 
    titleHeightNNumber0Title Height, Include subTitle 
    titleTopNNumber30draws y coordinates. 
    SubTitle options---------------
    subTitleNString'' 
    subTitleFontNString14px ArialCSS Font 
    subTitleColorNString#4F4F4FCSS color 
    subTitleTopNNumber0draws y coordinates. default is 0 
    Event Handler options---------------
    onRenderingStart(qrCodeOptions)NFunctionundefinedCallback function when the rendering start. can use to hide loading state or handling. 
    onRenderingEnd(qrCodeOptions, base64DataURL)NFunctionundefinedCallback function when the rendering ends. base64DataURL parameter is the base64 data of QRCode image(if not support canvas return null). 
    Version options------------
    versionNNumber0The symbol versions of QR Code range from Version 1 to Version 40. default 0 means automatically choose the closest version based on the text length. Information capacity and versions of QR Codes NOTE: If you set a value less than the minimum version available for text, the minimum version is automatically used. 
    Tooltip options------------
    tooltipNBooleanfalseWhether set the QRCode Text as the title attribute value of the QRCode div. 

Method

  • clear()

    qrcode.clear(); // remove the code.
    
  • makeCode(text)

    qrcode.makeCode("https://github.com/ushelp/EasyQRCodeJS"); // make another code text.
    
  • resize(widht, height)

    qrcode.resize(480, 480); // Resize the image 
    

Angular Support

  • Add dependency

    # install with `npm`
    npm install --save easyqrcodejs
    
    # Alternatively you may use `yarn`:
    yarn add easyqrcodejs
    
  • [NAME].component.html

    <!-- DOM Element-->
    <div #qrcode></div>
    
  • [NAME].component.ts

    import { Component, AfterViewInit, ElementRef, ViewChild } from '@angular/core';
    import * as QRCode from 'easyqrcodejs';
    
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.css']
    })
    export class AppComponent implements AfterViewInit{
        
      // Your DOM Element
      @ViewChild('qrcode', {static: false}) qrcode: ElementRef;
    
      ngAfterViewInit(){
    
        // Options
        var options = {
          text: "https://github.com/ushelp/EasyQRCodeJS"
        }
    
        // Create new QRCode Object
        new QRCode(this.qrcode.nativeElement, options);
    
      }
    
      btnClick(){
        // ....
      }
    
    }
    

Vue.js Support

  • Add dependency

    # install with `npm`
    npm install --save easyqrcodejs
    
    # Alternatively you may use `yarn`:
    yarn add easyqrcodejs
    
  • Template

    <!-- DOM Element-->
    <div ref="qrcode></div>
    
  • Script

    <script>
    import * as QRCode from 'easyqrcodejs'   
     
    export default {
    
      mounted(){
        // Options
        var options = {
          text: "https://github.com/ushelp/EasyQRCodeJS"
        }
        
        // Create new QRCode Object
        new QRCode(this.$refs.qrcode, options);
      },
      methods:{
          btnClick(){
    
          }
      }
    }
    </script>
    

React Support

  • Add dependency

    # install with `npm`
    npm install --save easyqrcodejs
    
    # Alternatively you may use `yarn`:
    yarn add easyqrcodejs
    
  • Script

    import React from 'react';
    import './App.css';
    import * as QRCode from 'easyqrcodejs';
    
    class App extends React.Component {
    
        constructor(props) {
            super(props);
            this.qrcode = React.createRef();
        }
    
        componentDidMount() {
            // Options
            var options = {
                text: "https://github.com/ushelp/EasyQRCodeJS"
            }
            // Create new QRCode Object
            new QRCode( this.qrcode.current, options);
        }
        render() {
            return ( 
            <div className = "App">
                <div ref={this.qrcode}></div> 
            </div>
            );
        }
    }
    
    export default App;
    

Next.js Support

  • Add dependency

    Add easy.qrcode.min.js to your static files folder called static(<Next.js 9.1)/public(>=Next.js 9.1) in the root directory.

  • Script

    import Layout from '../components/Layout';
    // Import Head
    import Head from "next/head";
    
    class About extends React.Component {
      constructor(props) {
        super(props);
        // QRCode DOM
        this.qrcodeDOM = React.createRef();
        // QRCode
        this.qrcode=null;
      }
      
      //QRCode generator
      generate(color){
          if(this.qrcode){
              this.qrcode.clear();
          }
          var options = {
              text: "https://github.com/ushelp/EasyQRCodeJS",
              colorDark : color?color:'#000000'
          };
          this.qrcode=new QRCode(this.qrcodeDOM.current, options);
      }
      
      // Gerenate QRCode on mount
      componentDidMount() { 
           this.generate()
      }
      
      render() {
        return (
          <Layout>
              <p>This is About page</p>
              {/* DOM */}
              <div ref={this.qrcodeDOM}></div>
              {/* Gerenate QRCode on click */}
              <button onClick={this.generate.bind(this, '#ff0000')}>QRCode Generate</button>
              {/* Include EasyQRCodeJS library*/}
              <Head>
               <script type="text/javascript" src="/public/easy.qrcode.min.js"></script>
             </Head>
               <p>This is About page</p>
          </Layout>
        );
      }
    }
    
    export default About;
    

Browser Compatibility

IE6+, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License

EasyQRCodeJS-Premium

EasyQRCodeJS-Premium is a more powerful and comprehensive business enterprise edition. You can use Canvas to customize any element, Such as Eye frame sharp, Eye ball sharp, QR Body block sharp, etc.

If you need more functions, we can provide you with customized development of API libraries or products. please contact me to buy the business enterprise edition.

EasyQRCodeJS-Premium 是功能更加强大和全面的商业/企业版本。让您可以在 QRCode 中通过 Canvas 自定义任何喜欢的元素,例如 Eye frame sharp, Eye ball sharp, QR Body block sharp 等等。

如果您需要更多功能,我们可以为您提供 API 库或产品的定制开发。请联系我购买商业/企业版本。

Premium demo preview

End

Email:inthinkcolor@gmail.com

http://www.easyproject.cn

Donation/捐助:


支付宝/微信/QQ/云闪付/PayPal 扫码支付
支付宝/微信/QQ/云闪付/PayPal

我们相信,每个人的点滴贡献,都将是推动产生更多、更好免费开源产品的一大步。

感谢慷慨捐助,以支持服务器运行和鼓励更多社区成员。

We believe that the contribution of each bit by bit, will be driven to produce more and better free and open source products a big step.

Thank you donation to support the server running and encourage more community members.

Keywords

qrcode

FAQs

Package last updated on 07 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.