我怎样才能设置imagemagick路径?

时间:2010-12-19 07:57:29

标签: php upload imagemagick

问我的托管公司imagemagick的路径是什么?

他们给了我'/ home2 / artists5 / php'

好了,我怎样才能在我的脚本上启动或执行imagemagick命令?

例如:

我有这张表格来上传图片:

<form action="upload.php" method="POST" enctype="multipart/form-data">
<input type="file" name="file" /><p /><input type="submit" value="Uplaod" />

这是upload.php:

$uploadDir= "uploads";

$imageName= $_FILES['file']['name'];
$tempPath = $_FILES['file']['tmp_name'];
$error    = $_FILES['fiel']['erroe'];

if ($error > 0 ) 
{
die("Error uploading file! Code $error");
}
else
{
if(move_uploaded_file ($tempPath,$uploadDir."/".$imageName))
   echo $imageName. " has been uploaded!";
}

我想在上传图片时执行此命令:

convert $imageName -resize 800x600 -strip -quality 50 -interlace line output.jpg

我该怎么办?

我有这个问题here,但没有人回答我?

1 个答案:

答案 0 :(得分:0)

您是否尝试过exec命令?只需在参数

中包含要转换的路径

例如,而不是

exec(' convert ...

使用

exec('/home2/artists5/php/convert ...