in reply to ImageMagick Incomplete Labeling
#!/usr/bin/perl use warnings; use strict; use Image::Magick; my $image = Image::Magick->new; umask 0022; my @pics= <*.png>; my $ok; foreach my $pic (@pics){ $ok = $image->Read($pic) and warn ($ok); } print "Montage...\n"; my $montage = $image->Montage(geometry => '300x300+8+4>', gravity=>'Center', tile=>'5x+10+200', label => "[%p] %i %wx%h %b", ); $ok = $montage->Write('montage.png') and warn ($ok);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: ImageMagick Incomplete Labeling
by worstead (Acolyte) on Oct 07, 2008 at 18:53 UTC | |
by zentara (Cardinal) on Oct 07, 2008 at 19:21 UTC | |
by worstead (Acolyte) on Oct 08, 2008 at 14:54 UTC | |
by zentara (Cardinal) on Oct 08, 2008 at 17:56 UTC | |
by worstead (Acolyte) on Oct 09, 2008 at 14:32 UTC |