All Projects → chillerlan → Php Qrcode

chillerlan / Php Qrcode

Licence: mit
A QR Code generator for PHP7.4+

Projects that are alternatives of or similar to Php Qrcode

React Qr Svg
React component for rendering SVG QR codes
Stars: ✭ 134 (-80.44%)
Mutual labels:  qr-code, qrcode-generator, svg, qrcode
Awesomeqrcode
An awesome QR code generator for Android.
Stars: ✭ 1,718 (+150.8%)
Mutual labels:  qr-code, qrcode-generator, qrcode
Awesome Qr.js
An awesome QR code generator written in JavaScript.
Stars: ✭ 1,247 (+82.04%)
Mutual labels:  qr-code, qrcode-generator, qrcode
Libvips
A fast image processing library with low memory needs.
Stars: ✭ 6,094 (+789.64%)
Mutual labels:  svg, png, imagemagick
Qrcode
QR-code encoder/decoder (no image recognition)
Stars: ✭ 34 (-95.04%)
Mutual labels:  qr-code, qrcode-generator, qrcode
Qr Ascii
A small library to generate QR codes with ascii
Stars: ✭ 63 (-90.8%)
Mutual labels:  qr-code, qrcode-generator, qrcode
Ngx Kjua
Angular QR-Code generator component using kjua.
Stars: ✭ 51 (-92.55%)
Mutual labels:  qr-code, qrcode-generator, qrcode
QRCode-Generator-PHP-Class
🚀 QRCode PHP class (library). QR Code Generator using vCard 4.0 and the Google Chart API
Stars: ✭ 91 (-86.72%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Govips
A lightning fast image processing and resizing library for Go
Stars: ✭ 442 (-35.47%)
Mutual labels:  svg, png, imagemagick
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 (-71.82%)
Mutual labels:  qr-code, qrcode-generator, qrcode
Qrcode
💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码)
Stars: ✭ 8,613 (+1157.37%)
Mutual labels:  qrcode, qr-code, qrcode-generator
nova-qrcode-field
A Laravel Nova field to generate QR Code
Stars: ✭ 28 (-95.91%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Qrbtf
An art QR code (qrcode) beautifier. 艺术二维码生成器。https://qrbtf.com
Stars: ✭ 1,391 (+103.07%)
Mutual labels:  qr-code, qrcode-generator, qrcode
Barcode
barcode.php - Generate barcodes from a single PHP file. MIT license.
Stars: ✭ 141 (-79.42%)
Mutual labels:  qr-code, qrcode-generator, qrcode
QRCodeFX
Simple tool to generate/read QR Code and export it.
Stars: ✭ 31 (-95.47%)
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 (-97.52%)
Mutual labels:  qrcode, qr-code, qrcode-generator
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (-57.23%)
Mutual labels:  qrcode-generator, qrcode
Androidsvgdrawable Plugin
Gradle plugin that generates qualified, density specific PNG drawables from SVG files at build time for your Android projects.
Stars: ✭ 263 (-61.61%)
Mutual labels:  svg, png
Compress Images
Minify size your images. Image compression with extension: jpg/jpeg, svg, png, gif. NodeJs
Stars: ✭ 331 (-51.68%)
Mutual labels:  svg, png
Quick Media
media(audio/image/qrcode/markdown/html/svg) support web service (多媒体编辑服务, 酷炫二维码, 音频, 图片, svg, markdown, html渲染服务支持)
Stars: ✭ 612 (-10.66%)
Mutual labels:  svg, qrcode

chillerlan/php-qrcode

A PHP 7.4+ QR Code library based on the implementation by Kazuhiko Arase, namespaced, cleaned up, improved and other stuff.

PHP Version Support Packagist version License Travis CI CodeCov Scrunitizer CI Packagist downloads
Continuous Integration phpDocs

Documentation

See the wiki for advanced documentation. An API documentation created with phpDocumentor can be found at https://chillerlan.github.io/php-qrcode/ (WIP).

Requirements

  • PHP 7.4+
    • ext-mbstring
    • optional:

Installation

requires composer

via terminal: composer require chillerlan/php-qrcode

composer.json

{
	"require": {
		"php": "^7.4",
		"chillerlan/php-qrcode": "dev-main"
	}
}

Note: replace dev-main with a version constraint, e.g. ^3.2 - see releases for valid versions. For PHP version ...

  • 7.4+ use ^4.2
  • 7.2+ use ^3.3
  • 7.0+ use ^2.0 (PHP 7.0 and 7.1 are EOL!)
  • 5.6+ use ^1.0 (please let PHP 5 die!)

Quickstart

We want to encode this URI for a mobile authenticator into a QRcode image:

$data = 'otpauth://totp/test?secret=B3JX4VCVJDVNXNZ5&issuer=chillerlan.net';

// quick and simple:
echo '<img src="'.(new QRCode)->render($data).'" alt="QR Code" />';

QR codes are awesome! QR codes are awesome!

Wait, what was that? Please again, slower! See Advanced usage on the wiki.

Framework Integration

Shameless advertising

Hi, please check out my other projects that are way cooler than qrcodes!

Disclaimer!

I don't take responsibility for molten CPUs, misled applications, failed log-ins etc.. Use at your own risk!

Trademark Notice

The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
http://www.denso-wave.com/qrcode/faqpatent-e.html

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