Lines 394-400
sub _draw_barcode { # this is cut-and-paste from Label.pm because there is no
Link Here
|
394 |
PDF::Reuse::Barcode::COOP2of5( |
394 |
PDF::Reuse::Barcode::COOP2of5( |
395 |
x => $params{'llx'}* $self->{'unitvalue'}, |
395 |
x => $params{'llx'}* $self->{'unitvalue'}, |
396 |
y => $params{'lly'}* $self->{'unitvalue'}, |
396 |
y => $params{'lly'}* $self->{'unitvalue'}, |
397 |
value => "*$params{barcode_data}*", |
397 |
value => "$params{barcode_data}", |
398 |
xSize => $x_scale_factor, |
398 |
xSize => $x_scale_factor, |
399 |
ySize => $params{'y_scale_factor'}, |
399 |
ySize => $params{'y_scale_factor'}, |
400 |
mode => 'graphic', |
400 |
mode => 'graphic', |
Lines 412-418
sub _draw_barcode { # this is cut-and-paste from Label.pm because there is no
Link Here
|
412 |
PDF::Reuse::Barcode::Industrial2of5( |
412 |
PDF::Reuse::Barcode::Industrial2of5( |
413 |
x => $params{'llx'}* $self->{'unitvalue'} , |
413 |
x => $params{'llx'}* $self->{'unitvalue'} , |
414 |
y => $params{'lly'}* $self->{'unitvalue'}, |
414 |
y => $params{'lly'}* $self->{'unitvalue'}, |
415 |
value => "*$params{barcode_data}*", |
415 |
value => "$params{barcode_data}", |
416 |
xSize => $x_scale_factor, |
416 |
xSize => $x_scale_factor, |
417 |
ySize => $params{'y_scale_factor'}, |
417 |
ySize => $params{'y_scale_factor'}, |
418 |
mode => 'graphic', |
418 |
mode => 'graphic', |
419 |
- |
|
|