Skip to content

Instantly share code, notes, and snippets.

@ytnobody
Created December 6, 2012 02:08
Show Gist options
  • Save ytnobody/4221292 to your computer and use it in GitHub Desktop.
Save ytnobody/4221292 to your computer and use it in GitHub Desktop.
pngを8bitに
use strict;
use warnings;
use Imager;
my $i = Imager->new;
$i->read(file => 'meat.png');
my $img = $i->to_rgb8;
$img->write(file => 'lite-meat.png');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment