QRCode

Supporting multiple type of output formats

\koolreport\barcode\QRCode::create(array(
    "format" => "svg",
    "value"=>"http://koolreport.com",
));
SVG:
PNG:
JPG:
http://koolreport.com
http://koolreport.com
http://koolreport.com

You could use various types of output formats for QRCode

<?php
require_once "MyReport.php";

$report = new MyReport;
$report->run()->render();
<?php
//Step 1: Load KoolReport
require_once "../../../load.koolreport.php";

//Step 2: Creating Report class
class MyReport extends \koolreport\KoolReport
{

}
<?php
    use \koolreport\barcode\QRCode;
?>
<div class="report-content">
    <div class="text-center">
        <h1>QRCode</h1>
        <p class="lead">
            Supporting multiple type of output formats
        </p>
    </div>

<pre style="font-weight:bold"><code>\koolreport\barcode\QRCode::create(array(
    "format" => "svg",
    "value"=>"http://koolreport.com",
));</code></pre>    
    <i class="fa fa-arrow-down" style="font-size:24px;"></i>        
    <div class='row'>
        <div class="col-md-4">SVG:</div>
        <div class="col-md-4">PNG:</div>
        <div class="col-md-4">JPG:</div>
    </div>
    <div class="row">
        <div class="col-md-4">
            <?php 
                QRCode::create(array(
                    "format" => "svg",
                    "value"=>"http://koolreport.com",
                ));
            ?>
            <div>http://koolreport.com</div>
        </div>
        <div class="col-md-4">
            <?php 
                QRCode::create(array(
                    "format" => "png",
                    "value"=>"http://koolreport.com",
                ));
            ?>
            <div>http://koolreport.com</div>
        </div>
        <div class="col-md-4">
            <?php 
                QRCode::create(array(
                    "format" => "jpg",
                    "value"=>"http://koolreport.com",
                ));
            ?>
            <div>http://koolreport.com</div>
        </div>
    </div>
</div>

What People Are Saying

"KoolReport helps me very much in creating data report for my corporate! Keep up your good work!"
-- Alain Melsens

"The first use of your product. I was impressed by its easiness and powerfulness. This product is a great and amazing."
-- Dr. Lew Choy Onn

"Fantastic framework for reporting!"
-- Greg Schneider

Download KoolReport Get KoolReport Pro