All Projects → khanamiryan → Php Qrcode Detector Decoder

khanamiryan / Php Qrcode Detector Decoder

This is a PHP library to detect and decode QR-codes. This is first and only QR code reader that works without extensions.

Projects that are alternatives of or similar to Php Qrcode Detector Decoder

binstruct
Golang binary decoder for mapping data into the structure
Stars: ✭ 67 (-93.52%)
Mutual labels:  decoder, reader
Readingcloud
An ebook reader written in Rails.
Stars: ✭ 33 (-96.81%)
Mutual labels:  reader
Jave2
The JAVE (Java Audio Video Encoder) library is Java wrapper on the ffmpeg project
Stars: ✭ 570 (-44.87%)
Mutual labels:  decoder
Ngfilereader
This is file reader component on angular.
Stars: ✭ 25 (-97.58%)
Mutual labels:  reader
Djson
Fast Go decoder for dynamic JSON
Stars: ✭ 588 (-43.13%)
Mutual labels:  decoder
Wxinlineplayer
🤟Super fast H.264/H.265 FLV player
Stars: ✭ 873 (-15.57%)
Mutual labels:  decoder
Sciencefair
The futuristic, fabulous and free desktop app for working with scientific literature 🔬 📖
Stars: ✭ 561 (-45.74%)
Mutual labels:  reader
Seg Mentor
TFslim based semantic segmentation models, modular&extensible boutique design
Stars: ✭ 43 (-95.84%)
Mutual labels:  decoder
Py Ubjson
Universal Binary JSON draft-12 serializer for Python
Stars: ✭ 30 (-97.1%)
Mutual labels:  decoder
Encore
Synonym of angkor
Stars: ✭ 19 (-98.16%)
Mutual labels:  decoder
Minimp3
Minimalistic MP3 decoder single header library
Stars: ✭ 898 (-13.15%)
Mutual labels:  decoder
Light Novel Library wenku8 android
[CASUALLY MAINTAINED] 轻小说文库 (Wenku8.com) 安卓版第三方公益App,始于2014年的Material Design风格、无广告、不盈利、Google Play上安装包最小的轻小说阅读器(light novel reader)。目前除了网站的API以外,还添加了我自己架的Cloudflare Worker 中继节点用来突破网站API的限制 wenku8-relay.mewx.org.
Stars: ✭ 772 (-25.34%)
Mutual labels:  reader
Just Read
A customizable read mode web extension.
Stars: ✭ 874 (-15.47%)
Mutual labels:  reader
Koodo Reader
A modern ebook manager and reader with sync and backup capacities for Windows, macOS, Linux and Web
Stars: ✭ 2,938 (+184.14%)
Mutual labels:  reader
Xml
XML without worries
Stars: ✭ 35 (-96.62%)
Mutual labels:  reader
Oho Reader
【停止维护】哦豁阅读器!API源自追书神器,免费使用!填坑完成!使用react
Stars: ✭ 571 (-44.78%)
Mutual labels:  reader
Buka
Buka is a modern software that helps you manage your ebook at ease.
Stars: ✭ 896 (-13.35%)
Mutual labels:  reader
Idutf8lib
Idiot's UTF-8 Library
Stars: ✭ 12 (-98.84%)
Mutual labels:  decoder
Ini
Ini file reader/writer for C# / .NET written in pure .NET in a single source file
Stars: ✭ 43 (-95.84%)
Mutual labels:  reader
Vinfo
Vim info documentation reader, lets you read info pages within Vim or start it from the shell prompt (instead of Info)
Stars: ✭ 41 (-96.03%)
Mutual labels:  reader

QR code decoder / reader for PHP

This is a PHP library to detect and decode QR-codes.
This is first and only QR code reader that works without extensions.
Ported from ZXing library

Installation

The recommended method of installing this library is via Composer.

Run the following command from your project root:

$ composer require khanamiryan/qrcode-detector-decoder

Usage

require __DIR__ . "/vendor/autoload.php";
$qrcode = new QrReader('path/to_image');
$text = $qrcode->text(); //return decoded text from QR Code

Requirements

  • PHP >= 5.6
  • GD Library

Contributing

You can help the project by adding features, cleaning the code, adding composer and other.

  1. Fork it
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request
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].