2016-07-05 5 views
3

用紙のサイズをA3またはOR4に増やしたい場合(増える幅) とにかくサイズを変更しようとしましたが、サイズを変更していません生成されたPDFの?PrestashopのPDFのサイズを変更する方法

public function generatePDF($object, $template) 
{ 

    switch($template) { 
     case PDF::TEMPLATE_ETICKET: 
      $format = 'C3'; // Replace with your desired size 
      break; 
     default: 
      $format = 'A4'; // Replace with normal size 
    } 
    $pdf = new PDF($object, $template, Context::getContext()->smarty,'P', $format); 
    //d($pdf); 
    $pdf->render(); 
} 

答えて

0

ファイルPDFGenerator.phpをoverride/classes/pdfに作成します。 PDFGenerator.php挿入に中

<?php 
class PDFGenerator extends PDFGeneratorCore 
{ 
    public function __construct($use_cache = false, $orientation = 'P') 
    { 
     parent::__construct($orientation, 'mm', 'A3', true, 'UTF-8', $use_cache, false); /*Replace A3 with the size you prefer */ 
     $this->setRTL(Context::getContext()->language->is_rtl); 
    } 
} 

削除キャッシュ/ class_index.php

関連する問題