in reply to Resizing large TIF files
I don't know Imager, but I tried Prima with this script, and the same conversion took 0.07 seconds. Here's the code:
And the output is also 1-bit PNG.use strict; use Prima::noX11; # for cgi environment use Prima; my $i = Prima::Image-> load('1.tif'); $i-> size( 1024, 768); $i-> save('1.png');
|
|---|