Help for this page

Select Code to Download


  1. or download this
    open FILE, "<", $MyPDF;
    binmode FILE;
    
  2. or download this
    binmode STDOUT;
    # read the whole file
    ...
    print "Content-Length: $length\r\n";
    print "\r\n"; # http header end
    print $file;