2amigos / qrcode-library

Create QrCodes with ease
https://2am.tech/open-source/qrcode-generator
Other
222 stars 66 forks source link

I am facing error Class 'BaconQrCode\Renderer\Image\Png' not found #41

Closed asifrafeeq closed 5 years ago

asifrafeeq commented 5 years ago

hi, thanks a lot for such a nice library, I am using qrcode-library which is working fine in localhost, but when I upload it to online hosting it gives the error of Class 'BaconQrCode\Renderer\Image\Png' not found

My code is like this

$qrCode = (new QrCode($model->name))
                                ->setSize(250)
                                ->setMargin(5)
                                ->useForegroundColor(51, 153, 255);

                                echo '<img src="' . $qrCode->writeDataUri() . '">';

please guide me how can I solve my issue error

tonydspaniard commented 5 years ago

When you upload your code, do you also upload the vendor folder (composer?)

asifrafeeq commented 5 years ago

the yiisoft/extensions file was not updated, now it is working fine. thank u so much for guidance.