All Projects → pH-7 → QRCode-Generator-PHP-Class

pH-7 / QRCode-Generator-PHP-Class

Licence: GPL-3.0 license
🚀 QRCode PHP class (library). QR Code Generator using vCard 4.0 and the Google Chart API

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to QRCode-Generator-PHP-Class

nova-qrcode-field
A Laravel Nova field to generate QR Code
Stars: ✭ 28 (-69.23%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Php Qrcode
A QR Code generator for PHP7.4+
Stars: ✭ 685 (+652.75%)
Mutual labels:  qrcode, qr-code, qrcode-generator
QRCodeFX
Simple tool to generate/read QR Code and export it.
Stars: ✭ 31 (-65.93%)
Mutual labels:  qrcode, qr-code, qrcode-generator
React Qr Svg
React component for rendering SVG QR codes
Stars: ✭ 134 (+47.25%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Offline Qr Code
📱 Browser add-on allowing you to quickly generate a QR code offline with the URL of the open tab or other text!
Stars: ✭ 193 (+112.09%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Awesomeqrcode
An awesome QR code generator for Android.
Stars: ✭ 1,718 (+1787.91%)
Mutual labels:  qrcode, qr-code, qrcode-generator
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 (-81.32%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Barcode
barcode.php - Generate barcodes from a single PHP file. MIT license.
Stars: ✭ 141 (+54.95%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Qrcode
💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码)
Stars: ✭ 8,613 (+9364.84%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Ngx Kjua
Angular QR-Code generator component using kjua.
Stars: ✭ 51 (-43.96%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Qrcode
QR-code encoder/decoder (no image recognition)
Stars: ✭ 34 (-62.64%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Awesome Qr.js
An awesome QR code generator written in JavaScript.
Stars: ✭ 1,247 (+1270.33%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Qr Ascii
A small library to generate QR codes with ascii
Stars: ✭ 63 (-30.77%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Qrbtf
An art QR code (qrcode) beautifier. 艺术二维码生成器。https://qrbtf.com
Stars: ✭ 1,391 (+1428.57%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+2226.37%)
Mutual labels:  qrcode, qr-code
flutter qr code scanner generator sharing
Flutter App For Scanning, Generating, Sharing QR Code
Stars: ✭ 137 (+50.55%)
Mutual labels:  qrcode, qrcode-generator
Segno
Python QR Code and Micro QR Code encoder
Stars: ✭ 144 (+58.24%)
Mutual labels:  qrcode, qr-code
kanban-board-app
Kanban style task management board app
Stars: ✭ 118 (+29.67%)
Mutual labels:  qrcode, qr-code
Springboot
用springboot + springmvc + mybatis + maven搭建成框架,基于Jersey, Swagger,SwaggerUi的restful API
Stars: ✭ 157 (+72.53%)
Mutual labels:  qrcode, qrcode-generator
qr-pirate
crawl QR-codes from search engines and look for bitcoin private keys
Stars: ✭ 58 (-36.26%)
Mutual labels:  qrcode, qr-code

🚀 PHP QR Code 📱

Scrutinizer Quality Score

Description

QRCode PHP class allows you to easily generate a simple QR code using vCard 4.0 and the Google Chart API.

Here are two videos explaining QR code: http://www.youtube.com/watch?v=B3lrcOhmp9g and http://www.youtube.com/watch?v=IphTJHiKGos

Composer Installation

You can add it easily in your project by using Composer.

$ composer require ph-7/qrcode-generator-php-class

Then, include Composer's autoload

require_once 'vendor/autoload.php';

Manual Installation

If you don't use Composer, you can install it without Composer by simply including the class

require 'QRCode.class.php';

How to Use

Here's a basic example:

/**
 * If you have PHP 5.4 or higher, you can instantiate the object like this:
 * (new QRCode)->fullName('...')->... // Create vCard Object
 */
$oQRC = new QRCode; // Create vCard Object
$oQRC->fullName('Pierre-Henry Soria') // Add Full Name
    ->nickName('PH7') // Add Nickname
    ->gender('M') // Add Gender
    ->email('[email protected]') // Add Email Address
    ->impp('[email protected]') // Add Instant Messenger
    ->url('http://ph-7.github.com') // Add URL Website
    ->note('Hello to all! I am a web developer. As hobbies I like climbing and swimming ...') // Add Note
    ->categories('developer,designer,climber,swimmer') // Add Categories
    ->photo('http://files.phpclasses.org/picture/user/1122955.jpg') // Add Avatar
    ->lang('en-US') // Add Language
    ->finish(); // End vCard

// echo '<p><img src="' . $oQRC->get(300) . '" alt="QR Code" /></p>'; // Generate and display the QR Code
$oQRC->display(300); // Set size and display QR Code default 150px

You also have a sample file here: http://github.com/pH-7/QRCode-Generator-PHP-Class/blob/master/example.php

Server Requirements

PHP 5.2.4 or higher.

Author

Pierre-Henry Soria

Contact

Contact me at: pierrehenrysoria [[AT]] gmail [[D0T]] com

License

General Public License 3 or later; See the LICENSE.txt file.

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].