About 20,000,000 results
Open links in new tab
  1. How can you read QR Codes in PHP? - Stack Overflow

    Oct 10, 2010 · If you have the possibility to use a phpextension, php-zbarcode at https://github.com/mkoppanen/php-zbarcode can read qrcodes. It's a wrapper for ZBar from http://zbar.sourceforge.net , which in turn is a LGPL C library for decoding barcodes.

  2. Generating and Scanning QRcodes With PHP - Webmobtuts

    In this article i will show how to process QR codes in PHP and how to generate QR code images and scan those images back to their original text.

  3. Read qrcode from a web page with camera. - Stack Overflow

    Jul 15, 2013 · You can read QR Codes using instascan. Copy instascan.min.js from the releases page and load with: <script type="text/javascript" src="instascan.min.js"></script> Sample code to read QR Code.

  4. Using PHP to Read and Generate QR Codes - Medium

    Sep 16, 2023 · This article explores how to read and generate QR Codes using PHP, providing developers with a handy resource for incorporating these 2D barcodes into their web projects. One of the most...

  5. PHP QR Code Reader Demo - TalkersCode.com

    Mar 11, 2024 · The PHP QR code reader example is a helpful tool for programmers who want to integrate QR code reading capability into their PHP applications, as we also discovered. It is simple to decode QR codes and retrieve the data they contain by utilising a …

  6. How to Scan QR code using webcam and php or javascript

    Mar 2, 2013 · you could use this jquery webcam plugin and then send the image to php-zbarcode. It uses zbar which can read qrcodes. Note that the plugin requires flash. There is also jsqrcode which you could use to scan and interpret the QR Code, however this requires HTML5 for displaying the webcam output, and flash for capturing.

  7. PHP QR Code Reader / Decoder - GitHub

    This is a PHP library to detect and decode QR-codes. This is QR code reader that works without extensions. This library supports PSR-4. Use Composer: From image url. $qrcode_text = $QRCodeReader -> decode ("path_to_qr_code"); echo $qrcode_text; From image stream. $qrcode_text = $QRCodeReader -> decode (base64_encode ("image_stream"));

  8. PHP QR Code Generator with phpqrcode Library - Phppot

    Feb 24, 2024 · To display the QR code using an HTML image tag, link the HTML image source to the PHP file that returns the QR code PNG data. The generate.php file returns the QR code in the below code using the PHP QrCode library. The HTML image refers to this file to show the QR code in the browser.

  9. A PHP QR Code generator and reader with a user-friendly API.

    Using the built-in QR Code reader is pretty straight-forward: $result = (new QRCode)-> readFromFile ('path/to/file.png'); // -> DecoderResult // you can now use the result instance... $content = $result -> data;

  10. How to parse/decode QR codes in PHP - Sling Academy

    Feb 5, 2024 · In this comprehensive tutorial, we’ll explore how to decode QR codes using PHP. Whether you’re building an attendance system, a product verification app, or any application where QR codes are used, understanding how to parse them in PHP can be incredibly valuable.

  11. Some results have been removed