ben nasıl imagemagick Yol ayarlayabilirsiniz?

0 Cevap php

ImageMagick'in yolu nedir benim Hosting şirketi sordu?

ve onlar bana bu '/ home2/artists5/php' verdi

Tamam şimdi nasıl i başlatmak veya exec imagemagick benim komut dosyası komutları olabilir?

örneğin:

i resim yüklemek için bu formu var:

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

ve bu upload.php olduğu:

$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!";
}

i görüntüyü uploaing sırasında bu komutu çalıştırmak istiyorum:

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

Ben ne yapmalıyım?

ben bu soruyu here var, ama kimse bana cevap?

0 Cevap