Activity for PHP QR Code

  • Irene Coleman Irene Coleman modified a comment on discussion Open Discussion

    Hi, if you also have a restaurant, then might as well check this QR code menu. It's a QR code that is mainly intended for restaurants securing fast and hassle free ordering system.

  • Irene Coleman Irene Coleman posted a comment on discussion Open Discussion

    Hi, if you also have a restaurant, then might as well check this menu QR code. It's a QR code that is mainly intended for restaurants securing fast and hassle free ordering system.

  • Ivanna Styles Ivanna Styles posted a comment on discussion Open Discussion

    Hey. This is amazing. Thank you for sharing. Check out https://www.giftlips.com/

  • Pascal Boulesteix Pascal Boulesteix created ticket #21

    PHP 8 : Deprecated: Implicit conversion from float 0.2 to int loses precision in qrencode.php on line 140

  • Alejoc Alejoc posted a comment on discussion Help

    Hello How I can do to install "phpqrcode/qrlib.php"in the apache server to generate QR codes? Thanks

  • STC STC created ticket #20

    composer supoport

  • STC STC posted a comment on discussion Help

    Hello is the library offered as a composer package?

  • Albert Hart Albert Hart posted a comment on discussion Open Discussion

    It turns out that the size of the image is controlled by the outerFrame parameter when calling the image // public static function png($frame, $filename = false, // $pixelPerPoint = 4, $outerFrame = 4,$saveandprint=FALSE) $pixels_per_point = 4; $outer_frame = 8; // determines the size of the image // use 6 or 8 for larger images $codeContents = "content for QR code"; $fileName = '005_file_'.md5($codeContents).'.png'; QRcode::png($codeContents, $pngAbsoluteFilePath, $pixels_per_point, $outer_fram...

  • Samantha Kennedy Samantha Kennedy posted a comment on discussion Open Discussion

    I've recently discovered this QR code generator online that fits my needs https://www.qrcode-tiger.com/

  • Kornelius Kornelius modified a comment on discussion Help

    I need to send the code (secret key) by email, but I don't want to save it to disk. Please add this instruction to the library description. <img src="data:image/png;base64, <?=QRcode::png('This QR code :)')?>" /> or <?php ob_start(); QRcode::png('This QR code :)'); $imageData = ob_get_clean(); ?> <img src="data:image/png;base64, <?=$imageData?>" /> The error says that the HEADER is already defined.

  • Kornelius Kornelius modified a comment on discussion Help

    I need to send the code (secret key) by email, but I don't want to save it to disk. Please add this instruction to the library description. <img src="data:image/png;base64, <?=QRcode::png('This QR code :)')?>" /> <?php ob_start(); QRcode::png('This QR code :)'); $imageData = ob_get_clean(); ?> <img src="data:image/png;base64, <?=$imageData?>" /> The error says that the HEADER is already defined.

  • Kornelius Kornelius modified a comment on discussion Help

    I need to send the code (secret key) by email, but I don't want to save it to disk. Perhaps, for others, add a description to the libraries. <img src="data:image/png;base64, <?=QRcode::png('This QR code :)')?>" /> <?php ob_start(); QRcode::png('This QR code :)'); $imageData = ob_get_clean(); ?> <img src="data:image/png;base64, <?=$imageData?>" /> The error says that the HEADER is already defined.

  • Kornelius Kornelius posted a comment on discussion Help

    I need to send the code (secret key) by email, but I don't want to save it to disk. I need to send the code (secret key) by email, but I don't want to save it to disk. Perhaps, for others, add a description to the libraries. <img src="data:image/png;base64, <?=QRcode::png('This QR code :)')?>" /> <?php ob_start(); QRcode::png('This QR code :)'); $imageData = ob_get_clean(); ?> <img src="data:image/png;base64, <?=$imageData?>" /> The error says that the HEADER is already defined.

  • yair yair posted a comment on discussion Open Discussion

    php 8 is very breaker version , many good old libraries are not working in php 8 due to this issue we are working only with php 7 until 7.4 that it's also breaker but less than 8 . we don't know what we'll do in the future with php 8 because it's impossible to rewrite thousands of code line because they wanted to change totally the language

  • Wolfgang Fischer Wolfgang Fischer modified a comment on discussion Open Discussion

    The php function imagecreate generates an image object (GDImage) if successful. However, this is only possible if the php module GD is also loaded when the web server is started, <?php phpinfo(); ? > provides information about it. If it is not loaded, the file php.ini must contain extension=gd. After that don’t forget to restart the web server ;-) I only made the changes to the code as in Barnabas Marvin's message of 2022-11-21. I use PHP 8.0.26 both locally for development and on the server of my...

  • Keith Johnston Keith Johnston modified a comment on discussion Open Discussion

    Thanks to Barnabas Marwin, his suggestion fixed the Implicit conversion warnings as given by P. MANUEL BURRERO SÁNCHEZ. I had the same other warning happening as well, Passing null to parameter, but in a different file. Here are the changes I made to qrsplit.php to stomp on that: @line 53 - return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9'))); + return ((ord($str[$pos] ?? '') >= ord('0'))&&(ord($str[$pos] ?? '') <= ord('9'))); @line 62 - return (QRinput::lookAnTable(ord($str[$pos]))...

  • Keith Johnston Keith Johnston posted a comment on discussion Open Discussion

    Thanks to Barnabas Marwin, his suggestion fixed the Implicit conversion warnings as given by P. MANUEL BURRERO SÁNCHEZ. I had the same other warning happening as well, Passing null to parameter, but in a different file. Here are the changes I made to qrsplit.php stomp on that: @line 53 - return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9'))); + return ((ord($str[$pos] ?? '') >= ord('0'))&&(ord($str[$pos] ?? '') <= ord('9'))); @line 62 - return (QRinput::lookAnTable(ord($str[$pos]))...

  • Lady Cuttle Lady Cuttle posted a comment on discussion Open Discussion

    I found this: https://www.qrcode-tiger.com/ while looking for an article on how to create a customized QR code with logo. The process of customization through it is very easy for me.

  • Wolfgang Fischer Wolfgang Fischer posted a comment on discussion Open Discussion

    The php function imagecreate generates an image object (GDImage) if successful. However, this is only possible if the php module GD is also loaded when the web server is started, <?php phpinfo() ? > provides information about it. If it is not loaded, the file php.ini must contain extension=gd. After that don’t forget to restart the web server :-)

  • Andres Dominguez Andres Dominguez modified a comment on discussion Open Discussion

    It generates these errors for me. I'm using Welcome to XAMPP for Windows 8.1.6 Fatal error: Uncaught Error: Call to undefined function ImageCreate() in C:\xampp\htdocs\EstacionaTec\phpqrcode\qrimage.php:74 Stack trace: #0 C:\xampp\htdocs\EstacionaTec\phpqrcode\qrimage.php(32): QRimage::image(Array, 3, 4) #1 C:\xampp\htdocs\EstacionaTec\phpqrcode\qrencode.php(494): QRimage::png(Array, 'images/005_file...', 3, 4, false) #2 C:\xampp\htdocs\EstacionaTec\phpqrcode\qrencode.php(286): QRencode->encodePNG('Hola...

  • Andres Dominguez Andres Dominguez posted a comment on discussion Open Discussion

    It generates these errors for me. Fatal error: Uncaught Error: Call to undefined function ImageCreate() in C:\xampp\htdocs\EstacionaTec\phpqrcode\qrimage.php:74 Stack trace: #0 C:\xampp\htdocs\EstacionaTec\phpqrcode\qrimage.php(32): QRimage::image(Array, 3, 4) #1 C:\xampp\htdocs\EstacionaTec\phpqrcode\qrencode.php(494): QRimage::png(Array, 'images/005_file...', 3, 4, false) #2 C:\xampp\htdocs\EstacionaTec\phpqrcode\qrencode.php(286): QRencode->encodePNG('Hola Mundo', 'images/005_file...', false)...

  • Barnabas Marwin Barnabas Marwin posted a comment on discussion Open Discussion

    Try updating these four lines in the getCode() function to fix the first two of three errors that you mentioned: OLD $row = $this->count % $this->blocks; NEW $row = intval($this->count % $this->blocks); OLD $col = $this->count / $this->blocks; NEW $col = intval($this->count / $this->blocks); OLD $row = ($this->count - $this->dataLength) % $this->blocks; NEW $row = intval( ($this->count - $this->dataLength) % $this->blocks ); OLD $col = ($this->count - $this->dataLength) / $this->blocks; NEW $col...

  • Dean Moncaster Dean Moncaster posted a comment on discussion Open Discussion

    It is compatible with 7.2 and 7.4

  • Dean Moncaster Dean Moncaster posted a comment on discussion Open Discussion

    I have tested this code in the following PHP 7.2.34 and it works. PHP 7.4.33 and it works PHP 8.1.12 and can confirm, IT DOES NOT WORK.

  • Ewot Ewot posted a comment on discussion Open Discussion

    Hmmm interesting

  • Fann Lock Fann Lock created ticket #19

    Business Card with Photo cannot be generate.

  • robertscott robertscott posted a comment on discussion Open Discussion

    in 8bit mode any byte stream should be supported, interpretation of special chars

  • Jon Jon modified a comment on discussion Open Discussion

  • Jon Jon posted a comment on discussion Open Discussion

    I am not a coder, but I am trying to amend the PHP QR Code implementation that our previous devs did. I have found the QR code output command on our site, and it looks like this: QRcode::png($codeContents, $qr_code_png_path); But I cannot for the life of me amend the size of the QR code it generates. I have tried both: QRcode::png($codeContents, $qr_code_png_path, 'L', 10, 1); QRcode::png($codeContents, $qr_code_png_path, QR_ECLEVEL_L, 10, 1); And it doesn't effect the output. My question is that...

  • P. MANUEL  BURRERO SÁNCHEZ P. MANUEL BURRERO SÁNCHEZ posted a comment on discussion Open Discussion

    These are the errors returned by the server: PHP Deprecated: Implicit conversion from float 0.25 to int loses precision in /lib/phpqrcode/qrencode.php on line 140 PHP Deprecated: Implicit conversion from float 0.25 to int loses precision in /lib/phpqrcode/qrencode.php on line 144 PHP Deprecated: basename(): Passing null to parameter #1 ($path) of type string is deprecated in /lib/phpqrcode/qrtools.php on line 106

  • robertscott robertscott posted a comment on discussion Open Discussion

    I also tried it on 8bit flow chat systembut didn't work.

  • amr abass amr abass created ticket #18

    i need help please

  • aman aman posted a comment on ticket #4

    Is it possible in the QR code Library ?

  • aducom aducom created ticket #5

    return image as a base64 encoded string

  • dasdf434 dasdf434 posted a comment on discussion Open Discussion

    In 8bit mode any byte flow must be supported, interpretation of special chars (n, t, encoding-specific ones)link relies upon right here especially on scanner

  • Tomas Tomas posted a comment on discussion Open Discussion

    I have been trying to find out if the library is compatible with php 7

  • Joseph Joseph created ticket #6

    mod_security breaks PHP QR Code

  • Anders Martin Anders Martin posted a comment on discussion Open Discussion

    Is there a way to change how long the temp PNG files is stored? I want to delete these files as soon as possible after generating it.

  • David Headrick David Headrick posted a comment on discussion Open Discussion

    Is background opacity configurable with the SVG output?

  • Charm Relator Charm Relator posted a comment on ticket #11

    Yep. It worked on using the latest versions of PHP with a Windows 10 OS.

  • Tom Chubb Tom Chubb created ticket #17

    Can't change size

  • Maxim Masiutin Maxim Masiutin posted a comment on discussion Open Discussion

    Hello Dominik, Please consider updating the "encodeString8bit" method to make the library compatible with (now deprecated) mbstring.func_overload. For example, if the have the following options in php.ini (mbstring.func_overload = 2; mbstring.internal_encoding = "UTF-8"), the strlen returns the number of characters, not bytes. As a result, QR-encoding a string with national characters truncates the string. To avoid this, just use count() after str_split(), since the last function is not affected...

  • Xajel Xajel posted a comment on discussion Help

    I'm trying to set the default frame size for in-browser png stream. Currently, the only way I'm seeing is to save the file. There's no option to change the default global frame size in the qrconfig.php file, and streaming code doesn't accept any option, only the text is allowed. -- Hussain Al-Khalaf 00973-39030324

  • Quentin Cazelles Quentin Cazelles posted a comment on ticket #11

    Hello ! Is this issue still open ? Can anyone tell me if this library is compatible with PHP 7.3 please ?

  • Alfons Alfons posted a comment on discussion Help

    <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="Microsoft Word 15 (filtered medium)" name="Generator"> <style><!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} @font-face {font-family:Monaco; panose-1:0 0 0 0 0 0 0 0 0 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Calibri",sans-serif;...

  • Alfons Alfons modified a comment on discussion Open Discussion

    sorry wrong post

  • Alfons Alfons posted a comment on discussion Open Discussion

    Hello. can't install phpqrcode. configure stooppoed with error: checking whether to support zlib... auto ./configure: line 14798: syntax error near unexpected token LIBZ,' ./configure: line 14798: PKG_CHECK_MODULES(LIBZ, zlib, gd_found_lib=yes, dnl' sytsem is Ubuntu 18.04 LTS please can help me? thx Alfons

  • Silvio Silvio posted a comment on ticket #16

    I made it! It was in the wrong folder. https://www.silvioto.net/generatore-qr/

  • Silvio Silvio created ticket #16

    QR Generator in a Wordpress page

  • BRUNO VAULA WERNECK BRUNO VAULA WERNECK posted a comment on discussion Open Discussion

    Hi everyone. I found this project a couple of weeks ago and wanted to have it updated to use PSR-4, autoloading, and PHP7 features like typehinting and such. So I created a new project, derived from this one. It's simpler, it only generates PNG images of QR Codes, but it's fully functional and open source. You're all welcome to contribute. I hope you like it. https://github.com/werneckbh/qr-code

  • Steffen Ille Steffen Ille posted a comment on ticket #11

    sure? it works on my php7 install @ debian 9.

  • Robin Bronston Robin Bronston posted a comment on discussion Open Discussion

    Hi I am using the create QRCode in php page i need the output QRCode image with overlay...

  • MickeyMiner MickeyMiner posted a comment on a blog post

    Almost 4 years are gone. Any update on this?

  • MickeyMiner MickeyMiner created ticket #15

    Please upload version 2.0

  • STC STC posted a comment on ticket #14

    Unfortunately my prev. solution with the ob_start causes weird problems.

  • STC STC posted a comment on ticket #14

    This seem to work, I hope there is a better way ob_start(); QRcode::png('Hello');...

  • STC STC created ticket #14

    how to merge qrcode into another image

  • sagar konda sagar konda created ticket #13

    how to generate qr code for multiple text field

  • mario m mario m created ticket #12

    qr code version forced selection

  • Danish Dewani Danish Dewani created ticket #11

    PHP 7 incompatiblity

  • Marcos Hurtado Marcos Hurtado created ticket #11

    GS1 QR Code

  • eddiex eddiex modified a comment on discussion Help

    Hi, 1. if I allways want to have "Hallo, " in the text, but i dont want it to be...

  • eddiex eddiex posted a comment on discussion Help

    Hi, if I allways want to have "Hallo, " in the text, but i dont want it to be visible...

  • Vikas Jangid Vikas Jangid created ticket #9

    Please add logo facility and customized eye icons and colors in QR code image

  • zajdan zajdan posted a comment on discussion Open Discussion

    I am facing to same problem: Cannot modify header information - headers already sent...

  • zajdan zajdan posted a comment on discussion Help

    I render simply inner HTML via phpwkhtmltopdf, but I have a problem with QR code....

  • Alejandro Castillo Zetina Alejandro Castillo Zetina posted a comment on ticket #10

    I'd like to add my logo to my QR codes. Thank you. Please (if possible)... Regards....

  • Alejandro Castillo Zetina Alejandro Castillo Zetina created ticket #10

    Add logo QR Code

  • Dominik Dzienia Dominik Dzienia posted a comment on ticket #8

    Size (parameter) means more like pixel size multiplier, exact code size (aka Version)...

  • itguyjosh itguyjosh created ticket #8

    Passing the same size from two locations but getting different QR sizes??

  • Dominik Dzienia Dominik Dzienia posted a comment on ticket #7

    Hi, (regarding your priv msg - i am not notified about tickets/request, please use...

  • Clineson Redcross Clineson Redcross created ticket #7

    QR Code Generation Fails After Two or More Attemps

  • Clineson Redcross Clineson Redcross modified a comment on discussion Help

    I have been using your code successfully for quite some time now. However I have...

  • Clineson Redcross Clineson Redcross posted a comment on discussion Help

    I have been using your code successfully for quite some time now. However I have...

  • alfredopacino alfredopacino posted a comment on discussion Help

    Hi, I’ve very appreciated your qr code class. Just a very simple question: how can...

  • MoJo MoJo posted a comment on discussion Help

    It may be and issue with the permissions of the "temp" directory, try changing it...

  • MoJo MoJo posted a comment on discussion Help

    I have been banging my head against the wall with this for the past few days. Basically...

  • riddick riddick posted a comment on discussion Help

    Is possible create QR for WIFI ACCESS? How can I do it? Thank you

  • madgicweb madgicweb created ticket #9

    Template design qr code

  • Hermann Hermann posted a comment on ticket #8

    Ok, found the documentation here http://www.girocode.de/wp-content/uploads/2014/06/GiroCode_EPC_Standard.pdf...

  • Hermann Hermann created ticket #8

    girocode possible?

  • Shweta Shweta posted a comment on discussion Help

    I need to dynamically change the color of qr code.. how can it be done.. Thanx in...

  • Ralph Vanore Ralph Vanore created ticket #6

    PHPQRCODE PHPMAKER Question

  • -User- -User- modified a comment on discussion Help

    At first: I'm sorry for my bad English... Why does the follwing example not work?:...

  • -User- -User- modified a comment on discussion Help

    At first: I'm sorry for my bad English... Why does the follwing example not work?:http://phpqrcode.sourceforge.net/examples/index.php?example=003...

  • -User- -User- posted a comment on discussion Help

    At first: I'm sorry for my bad English... Why does the follwing example not work?:http://phpqrcode.sourceforge.net/examples/index.php?example=003...

  • makaveiljojo makaveiljojo posted a comment on discussion Help

    Here are some code snippet of PHP QR code generator Script, hope they are helpful:...

  • Dominik Dzienia Dominik Dzienia posted a comment on ticket #5

    according to: http://en.wikipedia.org/wiki/VCard it will be TITLE field, therefore...

  • makaveiljojo makaveiljojo posted a comment on discussion Open Discussion

    You can put a logo inside the QR code image without damaging its readability. Here...

  • jack007 jack007 created ticket #5

    How to add Job Title in business card detail?

1