![Picture of Arturs Sosins Picture of Arturs Sosins](/picture/user/838850.jpg)
Arturs Sosins - 2012-02-15 12:46:55 -
In reply to message 1 from mustafa hamad
Hello,
I've updated the class, fixed download_image method to force image download dialog and created new method save_image to save image on the server.
Here is a quick example:
<?php
include("qrcode.php");
$qr = new qrcode();
//link
$qr->link("http://webcodingeasy.com");
//get QR cod eimage
$image = $qr->get_image();
//save image in same folder where script is
$qr->save_image($image, "./QRcode.png");
?>