From: Dobrica Pavlinusic Date: Sun, 5 Feb 2012 19:12:11 +0000 (+0100) Subject: implement fill to right 0 and 1 X-Git-Url: http://git.rot13.org/?p=Printer-Zebra.git;a=commitdiff_plain;h=a309ae8a38feca34c95005e02d240ef0d2ec3111 implement fill to right 0 and 1 repeat last line is also included, but doesn't work so it's commented out --- diff --git a/pbm2ZPL.pl b/pbm2ZPL.pl index fbe2ba3..c570840 100755 --- a/pbm2ZPL.pl +++ b/pbm2ZPL.pl @@ -4,6 +4,10 @@ use strict; use autodie; use Data::Dump qw(dump); +# DG compression is documented in ZPL II Programming Guide Volume Two, page 71-72 + +my $compress = $ENV{COMPRESS} || 0; + my $pnm_file = shift @ARGV || die "usage: $0 print.pnm"; open(my $fh, '<', $pnm_file); @@ -11,7 +15,7 @@ my $p4 = <$fh>; chomp $p4; die "no P4 header in [$p4] from $pnm_file" unless $p4 eq 'P4'; my $size = <$fh>; chomp $size; my ( $w, $h ) = split(/ /,$size,$2); -warn "WARNING: width of $pnm_file not 832!\n" if $w != 832; +warn "WARNING: width of $pnm_file not 832 but $w !\n" if $w != 832; local $/ = undef; my $bitmap = <$fh>; @@ -20,9 +24,21 @@ print "^XA~TA000~JSN^LT18^MNW^MTD^PON^PMN^LH0,0^JMA^PR4,4^MD13^JUS^LRN^CI0^XZ"; printf "~DG000.GRF,%d,%d,\r\n", $w / 8 * $h, $w / 8; +my $last_line = ''; + foreach my $y ( 0 .. $h - 1 ) { my $line = substr( $bitmap, $y * ( $w / 8 ), $w / 8 ); - print unpack('H*', $line); + if ( $line eq $last_line ) { + print ":" && warn "# $y repeat previous line\n"; + } else { + my $hex = unpack('H*', $line); + if ( $compress ) { +# $last_line = $line; + $hex =~ s/0+$/,/ && warn "# $y fill 0 to right\n"; + $hex =~ s/F+$/!/i && warn "# $y fill 1 to right\n"; + } + print $hex; + } } print "^XA\r\n^MMT\r\n^LL0328\r\n^PW831\r\n^LS0\r\n^FT0,352^XG000.GRF,1,1^FS\r\n^PQ1,0,1,Y^XZ\r\n^XA^ID000.GRF^FS^XZ";