in reply to Re^2: system call to ImageMagick with many parameters fails
in thread system call to ImageMagick with many parameters fails
You didn't miss much, but I missed a single quote at the start of my list.
Change
my @cmd = ( "convert, ... ], $rrfile" );
to
my @cmd = ( "convert", ... ], $rrfile );
What you should put into @cmd is the list of arguments, and not a string containing that list.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: system call to ImageMagick with many parameters fails
by august (Initiate) on Sep 24, 2009 at 21:22 UTC | |
by Corion (Patriarch) on Sep 25, 2009 at 06:49 UTC | |
by august (Initiate) on Sep 30, 2009 at 20:35 UTC |