Newbie
Posted: 2008-12-15T04:08:13-07:00
Hello
I have a newbie question.
with this Code
the output is:
but no small image in this folder???
any idea?
Daniel
I have a newbie question.
with this Code
Code: Select all
$width = 100;
$height = 100;
$convert_path="/is/htdocs/wp1126567_5VRRE5RC8Z/www/cgi-bin/convert";
$image_path="/is/htdocs/wp1126567_5VRRE5RC8Z/www/db/test/";
$size=$width."x".$height;
$image = $image_path."123.jpg";
$image_small = $image_path."123_klein.jpg";
if(is_file($bild)){
$command = "$convert_path -geometry $size -quality 75 $image $image_small ";
echo $command ;
exec ($command);
}
Code: Select all
/is/htdocs/wp1126567_5VRRE5RC8Z/www/cgi-bin/convert -geometry 100x100 -quality 75 /is/htdocs/wp1126567_5VRRE5RC8Z/www/db/test/123.jpg /is/htdocs/wp1126567_5VRRE5RC8Z/www/db/test/123_klein.jpg
any idea?
Daniel