From 9de26d46b8f9af9a5612346dbdfdc3cb3292bef5 Mon Sep 17 00:00:00 2001 From: Thomas Mudrunka Date: Thu, 19 Jun 2014 18:55:28 +0200 Subject: [PATCH] Lepsi generovani etiket --- assistants/print-labels.inc.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/assistants/print-labels.inc.php b/assistants/print-labels.inc.php index 80f37eb..450869d 100644 --- a/assistants/print-labels.inc.php +++ b/assistants/print-labels.inc.php @@ -5,8 +5,9 @@ $enctype = 'code128b'; $geometry = ''; $count = $_POST['cols']*$_POST['rows']*$_POST['pages']; + $papersize = isset($_POST['paper']) ? $_POST['paper'] : 'a4'; - $table = '-p A4 -t '.escapeshellarg( + $table = '-p '.escapeshellarg($papersize).' -t '.escapeshellarg( $_POST['cols'].'x'.$_POST['rows']. '+'.$_POST['left'].'+'.$_POST['bottom'].'-'.$_POST['right'].'-'.$_POST['top'] ); @@ -18,7 +19,7 @@ case 'debug': case 'dbg': break; case 'pdf': - $convert='| ps2pdf -dCompatibility=1.2 - -'; + $convert='| ps2pdf -dOptimize=true -sPAPERSIZE='.escapeshellarg($papersize).' -dCompatibility=1.2 - -'; header('Content-Type: application/pdf'); break; default: case 'ps': @@ -38,6 +39,10 @@ ↔ Sloupců
↕ Řádků
↵ Stran
+ Formát papíru:
-- 2.30.2
Okraje