psyon / php-qrcode

A single file PHP library for generating QR Codes.
MIT License
120 stars 38 forks source link

Image Size and format Issue #4

Open XaibiAslam opened 3 hours ago

XaibiAslam commented 3 hours ago

Hi, I'm using your code, and it's great! However, when I increase the size of my QR code, it gets a bit blurry. Also, it's not working with the SVG format. How can we fix these issues?

psyon commented 2 hours ago

If the image is blurry when you are displaying it on a page, it may be due to the browser scaling it to match the display size of the image in HTML. For SVG support, you will need to use the upstream project. I stripped out everything I didn't need, and created this repo just to simplify the code I was using.

https://github.com/kreativekorp/barcode

XaibiAslam commented 2 hours ago

Thankyou for clarifying me.