在dreamhost上使用imagemagick
Dreamhost的主机上,据说已经安装了imagemagick,但是在phpinfo里面没能找到相关信息。在dreamhost的support forum上找找帮助,imagemagick的信息还真不少。
dreamhost上的imagemagick的位置安装在
/usr/bin/convert
版本是
Version: ImageMagick 6.2.4 09/16/06 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2005 ImageMagick Studio LLC
在php中使用imagemagick命令行转换图片的例子
PHP:
-
<?php
-
$location='/usr/bin/convert';
-
$command='-thumbnail 150';
-
$name='glass.';
-
$extfrm='jpg';
-
$extto='png';
-
$output="{$name}{$extto}";
-
$convert=$location . ' ' .$command . ' ' . $name . $extfrm . ' ' . $name . $extto;
-
exec ($convert);
-
print "<img src=" . $output . ">";
-
?>
dreamhost优惠码
WAHAHA - 购买一年空间可以使用最大优惠97$
作者: Volcano 发表于May 25, 2007 at 8:21 am