d_i_r_t_y has asked for the wisdom of the Perl Monks concerning the following question:
my $raw_tiff = get_from_DB(); my $image = new Image::Magick ( magick => 'PNG' ); $image->BlobToImage( $raw_tiff ); my $raw_png = $image->ImageToBlob();
This, however, does not work -- the raw tiff is not converted at all, merely returned as-is.
Has anyone got this working?
d_i_r_t_y
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how do i convert from tiff to png images
by arturo (Vicar) on Jun 13, 2001 at 17:43 UTC | |
|
Re: how do i convert from tiff to png images
by shotgunefx (Parson) on Jun 13, 2001 at 19:01 UTC |