Help for this page

Select Code to Download


  1. or download this
    my $data = do { local $/ = undef; <$image_fh>; };
    
  2. or download this
    while (read($image_fh, $buffer, 4096)) {
        print $buffer;
    }