Help for this page

Select Code to Download


  1. or download this
    $img->read( data => $temp, type => 'pnm');
  2. or download this
    my $finger = 0;  # or wherever the data starts
    while ($finger < length $temp) {
        substr( $temp, $finger, 3) =
    ...
                reverse unpack 'C3', substr $temp, $finger, 3;
        $finger += 3;
    }