phpqrcode icon indicating copy to clipboard operation
phpqrcode copied to clipboard

EPS CMYK

Open tigani1993 opened this issue 3 years ago • 2 comments

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

tigani1993 avatar Jun 25 '21 22:06 tigani1993

Please do not use this library, it's old and not maintained. Please use this one "chillerlan/php-qrcode".

t0k4rt avatar Sep 27 '21 18:09 t0k4rt

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

tigani1993 avatar Sep 27 '21 19:09 tigani1993