in reply to Re: read text file and create pdf and add image to each pdf page
in thread read text file and create pdf and add image to each pdf page

i know that i should use that module... but i nead an example how read text file and convert it in pdf adding also some images and background to each pdf pages.
  • Comment on Re^2: read text file and create pdf and add image to each pdf page

Replies are listed 'Best First'.
Re^3: read text file and create pdf and add image to each pdf page
by marto (Cardinal) on Sep 20, 2009 at 19:01 UTC
      hi, again.. here is my little script.. every time i tried to run it, seems that is not able to read input file. Is there something that i missed in my script below ? thanks lorenzo alcatel@alexiim-as1:~> ./lorenzo.pl /home/alcatel/.scripts/table.dbdm1 Could not open : No such file or directory alcatel@alexiim-as1:~> #!/usr/bin/perl use PDF::Create; open(F, "<$input") or die "Could not open $input: $!\n"; while (<F>) { chomp; print "$_ \n"; #shows you what we have read } close F;
        You never define $input