in reply to Re^2: Creating Tiff's from perl
in thread Creating Tiff's from perl
And then in order to get the Group4 compression I did resort to ImageMagick's convert util.$img->write( { file => $tmp->filename, type => 'tiff', class => 'fax', } );
The last part I'm still not completely happy with, but since this is a batch process I didn't have to worry so much about having the extra system call.system("convert -page Letter -compress Group4 $filename $filename") +;
|
|---|