Search found 2 matches

by gitparade
2011-06-02T11:31:22-07:00
Forum: PerlMagick
Topic: simplest montage
Replies: 1
Views: 11278

Re: simplest montage

Slaps forehead...
The file demo.pl that is included in the distribution made me realize that the following is what I was looking for:

#!/usr/bin/env perl

use strict;

use Cwd;

use Image::Magick;

sub montage {
my $cwd = getcwd();

my $images = new Image::Magick;
$images -> Read($_[0], $_[1 ...
by gitparade
2011-05-31T14:37:37-07:00
Forum: PerlMagick
Topic: simplest montage
Replies: 1
Views: 11278

simplest montage

I'm trying to recreate the following command line with PerlMagick (from http://www.imagemagick.org/Usage/montage/#montage)

montage balloon.gif medical.gif present.gif shading.gif montage.jpg

I would have thought that the following would be a PerlMagick recreation of it:

#!/usr/bin/env perl ...