Help for this page

Select Code to Download


  1. or download this
    open my $fh, '>', 'data';
    binmode $fh;
    ...
    close $fh;
    
    `convert -depth 8 -size 256x256+0 gray:data data.png`;
    
  2. or download this
    my $img = Imager->new(
        type  => 'raw',
    ...
        model => 'gray'
    );
    $img->write(file=>'data.png');