Merge pull request #835 from marcus905/master
Bugfix #759, stampa documenti e dimensionamento testo in presenza di caratteri speciali
This commit is contained in:
commit
b6e1311963
|
@ -443,7 +443,6 @@ class Prints
|
||||||
|
|
||||||
// Instanziamento dell'oggetto mPDF
|
// Instanziamento dell'oggetto mPDF
|
||||||
$mpdf = new \Mpdf\Mpdf([
|
$mpdf = new \Mpdf\Mpdf([
|
||||||
'mode' => 'c',
|
|
||||||
'format' => $settings['format'],
|
'format' => $settings['format'],
|
||||||
'orientation' => strtoupper($settings['orientation']) == 'L' ? 'L' : 'P',
|
'orientation' => strtoupper($settings['orientation']) == 'L' ? 'L' : 'P',
|
||||||
'font-size' => $settings['font-size'],
|
'font-size' => $settings['font-size'],
|
||||||
|
@ -451,7 +450,7 @@ class Prints
|
||||||
'margin_right' => $settings['margins']['right'],
|
'margin_right' => $settings['margins']['right'],
|
||||||
'setAutoBottomMargin' => 'stretch',
|
'setAutoBottomMargin' => 'stretch',
|
||||||
'setAutoTopMargin' => 'stretch',
|
'setAutoTopMargin' => 'stretch',
|
||||||
'default_font' => 'helvetica',
|
'default_font' => 'dejavusanscondensed',
|
||||||
|
|
||||||
// Abilitazione per lo standard PDF/A
|
// Abilitazione per lo standard PDF/A
|
||||||
//'PDFA' => true,
|
//'PDFA' => true,
|
||||||
|
|
Loading…
Reference in New Issue