Help for this page

Select Code to Download


  1. or download this
    $imgData = pack( "b", @byte_array);
    open my $outfile, '>', $fileName or die "Error writing $fileName $!";
    binmode $outfile;
    print $outfile $imgData;
    close $outfile;