Recent content by alexxx

  1. A

    Is there any free way to split PDF pages down the middle?

    since pdftk is not smart enough to deal with input files order, replace the last step with: > FILES=`perl -we 'foreach $i (1..439) {print"cr_$i.pdf "}' | xargs`; pdftk $FILES cat output newbook.pdf
  2. A

    Is there any free way to split PDF pages down the middle?

    old thread, but for the sake of future googlers with the same problem, if you have pdftk, imagemagick and perl, here's an anwser (modify density and chop arguments as you like): explode the pages: > pdftk book.pdf burst right pages > perl -we...
Back
Top