repeat previous line : is now supported
[Printer-Zebra.git] / pbm2ZPL.pl
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use autodie;
5 use Data::Dump qw(dump);
6
7 # DG compression is documented in ZPL II Programming Guide Volume Two, page 71-72
8
9 my $compress = $ENV{COMPRESS} || 1;
10
11 my $pnm_file = shift @ARGV || die "usage: $0 print.pnm";
12
13 open(my $fh, '<', $pnm_file);
14 my $p4 = <$fh>; chomp $p4;
15 die "no P4 header in [$p4] from $pnm_file" unless $p4 eq 'P4';
16 my $size = <$fh>;
17 while ( $size =~ m/^#/ ) { $size = <$fh> }; # skip comments
18 chomp $size;
19 my ( $w, $h ) = split(/ /,$size,$2);
20 warn "WARNING: width of $pnm_file not 832 but $w !\n" if $w != 832;
21 local $/ = undef;
22 my $bitmap = <$fh>;
23
24
25 print '^XA';
26 printf '~TA%03d', 0; # tear-off
27 print '~JSN'; # sensor detect N = normal, 90%
28 print '^LT18'; # label top -120 .. 120
29 print '^MNW'; # media tracking N = continuous Y/W = web sensing M = mark sensing
30 print '^MTD'; # media type T = termal D = direct (ribbon!)
31 print '^PON'; # print orientation N = normal I = invert
32 print '^PMN'; # print mirror Y/N
33 print '^LH0,0'; # label home x,y
34 print '^JMA'; # dots/mm A = 24/12/8/6 B = 12/6/4/3
35 print '^PR4,4'; # print,slew,backfeed speed in inch/s 2 .. 12 [default: 2,6,2]
36 print '^MD13'; # media darkness -30 .. 30 / XiIIIPlus 0..30/0.1 increments
37 print '^JUS'; # configuration update F = factory default R = recall S = save
38 print '^LRN'; # label reverse Y/N
39 print '^CI0'; # change international font 0..255
40 print "^XZ\r\n";
41
42 printf "~DG000.GRF,%d,%d,\r\n", $w / 8 * $h, $w / 8;
43
44 my $last_line = '';
45
46 sub zpl_compress {
47         my $compress = shift;
48         my $repeat = length($compress);
49         my $out;
50         while ( $repeat >= 400 ) {
51                 $out .= 'z';
52                 $repeat -= 400;
53         }
54         if ( $repeat >= 20 ) {
55                 $out .= chr( ord('f') + ( $repeat / 20 ) );
56                 $repeat %= 20;
57         }
58         if ( $repeat > 0 ) {
59                 $out .= chr( ord('F') + $repeat );
60         }
61         $out .= substr($compress,0,1); # char
62         warn "## zpl_compress $repeat = $compress -> $out\n";
63         return $out;
64 }
65
66 foreach my $y ( 0 .. $h - 1 ) {
67         my $line = substr( $bitmap, $y * ( $w / 8 ), $w / 8 );
68         if ( $line eq $last_line ) {
69                 print ':';
70                 warn "# $y repeat previous line\n";
71         } else {
72                 my $hex = unpack('H*', $line);
73                 if ( $compress ) {
74                         $last_line = $line;
75                         $hex =~ s/0+$/,/  && warn "# $y fill 0 to right\n";
76                         $hex =~ s/F+$/!/i && warn "# $y fill 1 to right\n";
77                         $hex =~ s/((.)\2+)/zpl_compress($1)/egs;
78                 }
79                 print $hex;
80         }
81 }
82
83 print '^XA';
84 print '^MMT'; # print mode,prepeel T=tear-off P=peel-off R=rewind A=applicator C=cutter, Y/N
85 printf '^LL%d', $h; # label length FIXME ignore empty bottom
86 printf '^PW%d', $w; # print width
87 print '^LS0'; # label shift -9999..9999
88 printf '^FT%d,%d', 0, $h; # field typeset x,y graphic origin is bottom-left
89 print '^XG000.GRF,1,1^FS'; # recall grapmic source/name,magnification_x,magnification_y
90 print '^PQ1,0,1,Y'; # print quantity total,pause/cut,replicates,no_pause
91 print "^XZ\r\n";
92
93 print '^XA';
94 print '^ID000.GRF^FS'; # object delete
95 print "^XZ\r\n";
96