phpqrcode
phpqrcode copied to clipboard
EPS CMYK
Hi!
First, thank you for the nice library!
I found a issue in the code. Lines 63 and 70 in /qrvect.php should be 63: $c = round((($fore_color & 0xFF000000) >> 24) / 255, 5); 70: $c = round((($back_color & 0xFF000000) >> 24) / 255, 5); instead of 63: $c = round((($fore_color & 0xFF000000) >> 16) / 255, 5); 70: $c = round((($back_color & 0xFF000000) >> 16) / 255, 5);
cause of a wrong calculation for cyan-color.
Thank you!
Best regards Max
Please do not use this library, it's old and not maintained. Please use this one "chillerlan/php-qrcode".
Hi t0k4rt,
thanks for your reply and the hint with the newer library. It's okay for me right now, all things are working as expected!
Regards Max