View | Details | Raw Unified | Return to bug 14781
Collapse All | Expand All

(-)a/C4/Labels/Label.pm (-3 / +2 lines)
Lines 548-554 sub barcode { Link Here
548
            PDF::Reuse::Barcode::COOP2of5(
548
            PDF::Reuse::Barcode::COOP2of5(
549
                x                   => $params{'llx'},
549
                x                   => $params{'llx'},
550
                y                   => $params{'lly'},
550
                y                   => $params{'lly'},
551
                value               => "*$params{barcode_data}*",
551
                value               => $params{barcode_data},
552
                xSize               => $x_scale_factor,
552
                xSize               => $x_scale_factor,
553
                ySize               => $params{'y_scale_factor'},
553
                ySize               => $params{'y_scale_factor'},
554
                mode                    => 'graphic',
554
                mode                    => 'graphic',
Lines 566-572 sub barcode { Link Here
566
            PDF::Reuse::Barcode::Industrial2of5(
566
            PDF::Reuse::Barcode::Industrial2of5(
567
                x                   => $params{'llx'},
567
                x                   => $params{'llx'},
568
                y                   => $params{'lly'},
568
                y                   => $params{'lly'},
569
                value               => "*$params{barcode_data}*",
569
                value               => $params{barcode_data},
570
                xSize               => $x_scale_factor,
570
                xSize               => $x_scale_factor,
571
                ySize               => $params{'y_scale_factor'},
571
                ySize               => $params{'y_scale_factor'},
572
                mode                    => 'graphic',
572
                mode                    => 'graphic',
573
- 

Return to bug 14781