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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Attempted to call function \"imagecreatefromstring\" from namespace \"Zxing\"

k0v4back opened this issue · comments

My code:
`<?php

use Zxing\QrReader;

$qrcode = new QrReader('http://qrcoder.ru/code/?lalala&4&0');
$text = $qrcode->text(); //return decoded text from QR Code
echo $text;

I have error: Attempted to call function "imagecreatefromstring" from namespace "Zxing"
`
How to fix problem?

Check if you have GD lib extension activated in PHP

Check if you have GD lib extension activated in PHP

This solved for me, uncommenting extension GD on php.ini file.