SimpleSoftwareIO / simple-qrcode

An easy-to-use PHP QrCode generator with first-party support for Laravel.
https://www.simplesoftware.io/simple-qrcode
MIT License
2.72k stars 383 forks source link

error:- data too big on including base64 image #282

Open sthabipu opened 1 year ago

sthabipu commented 1 year ago
$vCard = 'BEGIN:VCARD'. "\r\n";
$vCard .= 'VERSION:3.0'. "\r\n";
$vCard .= 'PHOTO;ENCODING=BASE64;TYPE=jpg:' .$base64. "\r\n";
$vCard .= 'N;CHARSET=UTF-8;LANGUAGE=en:'. $user->last_name.';'.$user->first_name. "\r\n";
$vCard .= 'END:VCARD';

QrCode::generate($vCard, $qrName);