   # ex11_pl

   use PDF::Reuse;
   use strict;

   prFile('doc/ex11.pdf');
   prMoveTo(75, 645);                 # Where to put the image
   prScale(0.6, 0.6);                 # Scale the image
   prImage('doc/LetterB.pdf', 1);     # Take an image from page 1
    
   prEnd();

