Diff for /gobook.perl between versions 1.6 and 3.1

version 1.6, 2013/12/12 21:20:43 version 3.1, 2014/09/28 04:29:18
Line 1 Line 1
 #! /usr/bin/perl -w  #! /usr/bin/perl -w
   # $Id$
 use XML::Simple;  use XML::Simple;
 use strict;  use strict;
 use PostScript::Simple;  use PostScript::Simple;
Line 12  if ( defined $xml ){ Line 13  if ( defined $xml ){
     $strips = XMLin($xml, KeyAttr => {strip => 'id'});      $strips = XMLin($xml, KeyAttr => {strip => 'id'});
 }  }
   
 # create a new PostScript object  # create a new PostScript object;
 my $p = new PostScript::Simple(papersize => "A5",  
                           colour => 1,  my $p = new PostScript::Simple(papersize => "A5", 
                           eps => 0,                                    colour => 1,
                           units => "mm",);                                       eps => 0,
                                      units => "mm");
   
 # co-ords are horizontal, vertical. from bottom left corner. 148 x 210  # co-ords are horizontal, vertical. from bottom left corner. 148 x 210
   

Removed from v.1.6  
changed lines
  Added in v.3.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>