KoolReport's Forum

Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines

Custom size page not working on Export #1542

Open AugustoViti opened this topic on on Jul 28, 2020 - 2 comments

AugustoViti commented on Jul 28, 2020

Hello,

I have this code

$report->run()
          ->export()
          ->pdf(array(
              "width"=>"189px",
              "height"=>"95px",
              "margin"=>"0.3in"
          ))
          ->toBrowser("xxxxx", true);

But it keeps showing on A4. How can I create a "custom" size page?

Thanks in advance

KoolReport commented on Jul 28, 2020

We confirm the issue, let me consult dev.team for solution. I will update you.

David Winterburn commented on Jul 29, 2020

Hi,

We will fix this issue in the next release of KoolReport. Meanwhile, you could apply this patch to fix it. Please open the file koolreport/export/Handler.php and replace this line:

            Util::init($params, 'format', 'A4'); 

with these:

            if (! isset($params['width']) || ! isset($params['height'])) {
                Util::init($params, 'format', 'A4');
            }

Thanks!

Build Your Excellent Data Report

Let KoolReport help you to make great reports. It's free & open-source released under MIT license.

Download KoolReport View demo
bug
help needed

Export