Byla zlepsena vizualni stranka vykreslovani barcodu
[mirrors/SokoMan.git] / lib / Barcode.class.php
index 72928257ebf7e916ca0f4f4cb4118db2ee093aee..b4231e660bffe34e80671feb01882ae788c7cf9d 100755 (executable)
@@ -37,7 +37,7 @@ class Barcode {
        static function generate_barcode($string='EXAMPLE', $convert='png', $enctype='code128b') {
                $string = escapeshellarg($string);
                $enctype = escapeshellarg($enctype);
-               $convert = $convert ? " | convert -colorspace gray -background white - $convert:-" : '';
+               $convert = $convert ? " | convert - -crop 0x60+0+30\\! -background white -flatten $convert:-" : '';
                return shell_exec("barcode -e $enctype -E -b $string$convert");
        }
 
This page took 0.095487 seconds and 4 git commands to generate.