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();
}