bear0053 has asked for the wisdom of the Perl Monks concerning the following question:
my $background=Image::Magick->new(magick=>"gif"); $background->BlobToImage($binary_data); my $foreground=Image::Magick->new; $foreground->Read($watermark_file); $background->Stegano(image=>$foreground, offset=> 1); $background->Write("gif-"); $binary_data = $background->ImageToBlob(); print "content-type: image/gif\n\n"; print $binary_data;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Image::Magick stegano question
by blokhead (Monsignor) on Jun 24, 2004 at 19:33 UTC | |
by bear0053 (Hermit) on Jun 24, 2004 at 21:17 UTC | |
by blokhead (Monsignor) on Jun 24, 2004 at 22:02 UTC | |
by bear0053 (Hermit) on Jun 24, 2004 at 22:45 UTC |