Lepsi generovani etiket
[mirrors/SokoMan.git] / assistants / print-labels.inc.php
index 41fef9553ac86cb9a395117c54a5fb9676d361e3..450869dc6020ff235a4c3a4d6b79ccc68a7a3945 100644 (file)
@@ -1,21 +1,25 @@
 <?php
        if(isset($_POST['print'])) {
-               $prefix = time().'SPOJE';
+               $time = round(microtime(true)*100);
+               $prefix = 'SPOJE';
                $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']
                );
 
                $barcodes = '';
-               for($i=0;$i<$count;$i++) $barcodes.=' -b '.escapeshellarg($prefix.$i);
+               for($i=0;$i<$count;$i++) $barcodes.=' -b '.escapeshellarg(strtoupper($prefix.base_convert($time+$i,10,36)));
 
-               switch($_POST['print']) {
+               switch(strtolower($_POST['print'])) {
+                       case 'debug': case 'dbg':
+                               break;
                        case 'pdf':
-                               $convert='| convert - pdf:-';
+                               $convert='| ps2pdf -dOptimize=true -sPAPERSIZE='.escapeshellarg($papersize).' -dCompatibility=1.2 - -';
                                header('Content-Type: application/pdf');
                                break;
                        default: case 'ps':
                                break;
                }
                error_reporting(0);
-               system("barcode -e $enctype $geometry $table $barcodes $convert");
+               $cmd="barcode -e $enctype $geometry $table $barcodes $convert";
+               if($_POST['print']=='Debug') die($cmd);
+               system($cmd);
                die();
        }
 ?>
 <form action="?" method="POST">
-       <input type="number" name="cols" value="3" /> Sloupců<br />
-       <input type="number" name="rows" value="8" /> Řádků<br />
-       <input type="number" name="pages" value="1" /> Stran<br />
+       <input type="number" name="cols" value="4" /> &harr; Sloupců<br />
+       <input type="number" name="rows" value="13" /> &varr; Řádků<br />
+       <input type="number" name="pages" value="1" /> &crarr; Stran<br />
+       Formát papíru: <select name="paper">
+               <option>a4</option>
+               <option>letter</option>
+       <select><br />
        <table>
-               <tr><td></td><td><input type="number" name="top" value="25" /></td><td></td></tr>
+               <tr><td></td><td><input type="number" name="top" value="20" /></td><td></td></tr>
                <tr><td><input type="number" name="left" value="2" /></td><td>Okraje</td><td><input type="number" name="right" value="1" /></td></tr>
-               <tr><td></td><td><input type="number" name="bottom" value="20" /></td><td></td></tr>
+               <tr><td></td><td><input type="number" name="bottom" value="25" /></td><td></td></tr>
        </table>
-       <input type="submit" name="print" value="ps" />
-       <input type="submit" name="print" value="pdf" />
+       <input type="submit" name="print" value="Debug" />
+       <input type="submit" name="print" value="PS" />
+       <input type="submit" name="print" value="PDF" />
 </form>
+Pozor! Každý arch vytiskni jen jednou a radši ho hned po vytištění smaž!
This page took 0.131554 seconds and 4 git commands to generate.