in reply to Re: system call to ImageMagick with many parameters fails
in thread system call to ImageMagick with many parameters fails
The script tells me#!/usr/bin/perl -w use Image::Magick; my $file="1251748705.jpg"; my $rfile="thumbnail.gif"; my $rrfile="thumbnail2.png"; my @cmd = ( "convert, $rfile qw[( +clone -threshold -1 -virtual-pixel black -spread 10 -blur 0x3 -threshold 50% -spread 1 -blur 0x.7 ) +matte -compose Copy_Opacity -composite ], $rrfile" ); system("convert -size 500x180 $file -auto-orient -thumbnail 250x90 +-unsharp 0x.5 $rfile"); system(@cmd) == 0 or die "Couldn't launch [@cmd]: $!/$?";
What did I miss??? Thanksconvert,: not found thumbnail.gif: not found Syntax error: word unexpected (expecting ")") Couldn't launch [convert, thumbnail.gif qw[( +clone -threshold -1 -virtual-pixel black -spread 10 -blur 0x3 -threshold 50% -spread 1 -blur 0x.7 ) +matte -compose Copy_Opacity -composite ], thumbnail2.png]: No such file or directory/512 at ./IMT +est33.pl line 26.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: system call to ImageMagick with many parameters fails
by Corion (Patriarch) on Sep 24, 2009 at 06:54 UTC | |
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 |