in reply to Re: Image::Magick stegano question
in thread Image::Magick stegano question
this only prints the full sized original image. not the watermark and it doesn't even display an image of the correct size. It shuold be 100x100 but instead is the regular full size of 640x460? thanksmy $background=Image::Magick->new(magick=>"gif"); $background->BlobToImage($bin_data); $background->Set(size=>"100x100+1"); #size and offset of watermark + inserted $background->Read('stegano:result.gif'); $background->Write("gif-"); $bin_data = $background->ImageToBlob(); print "content-type: image/gif\n\n"; print $bin_data;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Image::Magick stegano question
by blokhead (Monsignor) on Jun 24, 2004 at 22:02 UTC | |
by bear0053 (Hermit) on Jun 24, 2004 at 22:45 UTC |