All Projects → 252860883 → Artqrcode

252860883 / Artqrcode

Licence: lgpl-2.1
🔮艺术二维码生成工具(Art QRcode productivity tool )

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Artqrcode

QR Attendance
This project is an attendance system which provides attendance on scanning QR code. The attendance is stored in Excel sheet named with the date of attendance taken. In this folder a file named Generate.py is used to generate the QR code for given input file. Attend.py file is for scanning the QR code
Stars: ✭ 17 (-95.62%)
Mutual labels:  qrcode
UniqR
Yet another QR art library for Java
Stars: ✭ 22 (-94.33%)
Mutual labels:  qrcode
Qr Code
QR Code Generator
Stars: ✭ 3,519 (+806.96%)
Mutual labels:  qrcode
qrcode-with-logos
A plugin for creating a qrcode with logo, Demo
Stars: ✭ 61 (-84.28%)
Mutual labels:  qrcode
qrencode.cr
Crystal bindings for libqrencode (qrencode), a library for QR code generation
Stars: ✭ 28 (-92.78%)
Mutual labels:  qrcode
Roundcode
Custom rounded QR code with lots of customization.
Stars: ✭ 267 (-31.19%)
Mutual labels:  qrcode
simple-login-qrcode-webcam-php
🐱‍💻 Just simple login mechanism using QR Code Scanner with Webcam in PHP
Stars: ✭ 66 (-82.99%)
Mutual labels:  qrcode
Qrcode
QR code generation library in C, optimized for low-power devices, such as Arduino.
Stars: ✭ 351 (-9.54%)
Mutual labels:  qrcode
rqrcode core
A Ruby QRCode encoding library
Stars: ✭ 34 (-91.24%)
Mutual labels:  qrcode
Stegastamp
Invisible Hyperlinks in Physical Photographs
Stars: ✭ 306 (-21.13%)
Mutual labels:  qrcode
garden.zbarcam
Migrated to https://github.com/kivy-garden/zbarcam
Stars: ✭ 49 (-87.37%)
Mutual labels:  qrcode
ZATCA
An unofficial package maintained by Salla to help developers to implement ZATCA (Fatoora) QR code easily which required for e-invoicing
Stars: ✭ 77 (-80.15%)
Mutual labels:  qrcode
Angularx Qrcode
Angular4/5/6/7/8/9/10/11 QRCode generator component library for QR Codes (Quick Response) with AOT support based on node-qrcode
Stars: ✭ 281 (-27.58%)
Mutual labels:  qrcode
qr
🔲 Generate QR Codes straight in your terminal!
Stars: ✭ 34 (-91.24%)
Mutual labels:  qrcode
Weapp Qrcode
Wechat miniapp generate qrcode image
Stars: ✭ 339 (-12.63%)
Mutual labels:  qrcode
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (-82.22%)
Mutual labels:  qrcode
Rewtro
Papercraft videogame cartridges you can print and pirate with a copy machine.
Stars: ✭ 267 (-31.19%)
Mutual labels:  qrcode
Qreader
🔳 [Android Library] Read QR codes using google's mobile vision api, but without the hassle
Stars: ✭ 358 (-7.73%)
Mutual labels:  qrcode
Fehelper
😍FeHelper--Web前端助手(Awesome!Chrome & Firefox & MS-Edge Extension, All in one Toolbox!)
Stars: ✭ 3,880 (+900%)
Mutual labels:  qrcode
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (-24.48%)
Mutual labels:  qrcode

image

ArtQRCode 是基于 qrcode.js 的封装,支持以图片元素为基本单元的二维码绘制。

Basic Usages

<div id="qrcode"></div>
<script>
    var options = {
        text: "https://github.com/252860883/ArtQRCode",
        width: 500,
        height: 500,
        codeWidth: 320,
        codeHeight: 320,
        top: 85,
        left: 80,
        /**
         * materials unit options
         */
        materials: {
            border: "./materials/electron/border.png",
            eye: "./materials/electron/eye.png",
            row4: "./materials/electron/row4.png",
            col4: "./materials/electron/col3.png",
            row2col3: "./materials/electron/row2col3.png",
            row3col2: "./materials/electron/row3col2.png",
            col3: ["./materials/electron/col3.png", "./materials/electron/col3_2.png"],
            row2col2: "./materials/electron/row2col2.png",
            corner: "./materials/electron/corner.png",
            row2: ["./materials/electron/row2.png", "./materials/electron/row2_2.png"],
            col2: "./materials/electron/col2.png",
            single: ["./materials/electron/single.png", "./materials/electron/single_2.png"],
        }
    }
   /**
    * when the artqrcode loaded, run this function
    */
    function callBack(status) {
        console.log(status) // [loaded|success]
    }
    var qrcode = new QRCode(document.getElementById("qrcode"), options, callBack);
</script>

Material Configuration

想要生产出好看的二维码,图片素材必不可少。这需要设计师按照固定比例进行设计,具体素材命名以及规范如下:

image image image

Productive Example

image

Last

  • 觉得有意思,给颗star吧~
  • 网罗一线牵,珍惜这段缘
  • We meet in the network,please cherish this fate
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].