验证ImageMagick安装


87

我的网络托管人员说ImageMagic已预安装在服务器上。我在phpinfo()的输出中快速搜索了“ ImageMagick”,却一无所获。我无法在服务器中使用SSH,因此PHP中是否可以验证安装?

Answers:


48

试试这个:

<?php
//This function prints a text array as an html list.
function alist ($array) {  
  $alist = "<ul>";
  for ($i = 0; $i < sizeof($array); $i++) {
    $alist .= "<li>$array[$i]";
  }
  $alist .= "</ul>";
  return $alist;
}
//Try to get ImageMagick "convert" program version number.
exec("convert -version", $out, $rcode);
//Print the return code: 0 if OK, nonzero if error. 
echo "Version return code is $rcode <br>"; 
//Print the output of "convert -version"    
echo alist($out); 
?>

22
此测试是否安装了ImageMagick应用程序,而不是PHP模块
bcosca 2010年

版本返回码为0 *版本:ImageMagick 6.3.7 08/09/09 Q16 imagemagick.org *版权:版权所有(C)1999-2008 ImageMagick Studio LLC
Desmond Liang 2010年

这就是页面返回的内容。似乎无法返回版本,但以某种方式返回了版权信息。
Desmond Liang

答案可能有用,但下面的两个更简单,更容易且显而易见。这是否决这个问题的充分理由吗?
Sophivorus

2
这是一个对提出问题的人有用的解决方案。否决投票不是正确的答案。如果您对礼节有疑问,请访问meta.stackoverflow.com
wajiw

148

这是它所能做到的那样简短而甜美:

if (!extension_loaded('imagick'))
    echo 'imagick not installed';

3
同样,从命令行:php -r 'echo "imagick is ".(extension_loaded("imagick")?"":"not ")."installed\n";'
Jon Gibbins

40

编辑:下面的信息和脚本仅适用于iMagick类-默认情况下不与ImageMagick添加!

如果我想知道是否已安装imagemagick并将其作为php扩展名实际工作,请将此代码段粘贴到可访问Web的文件中

<?php

error_reporting(E_ALL); 
ini_set( 'display_errors','1');

/* Create a new imagick object */
$im = new Imagick();

/* Create new image. This will be used as fill pattern */
$im->newPseudoImage(50, 50, "gradient:red-black");

/* Create imagickdraw object */
$draw = new ImagickDraw();

/* Start a new pattern called "gradient" */
$draw->pushPattern('gradient', 0, 0, 50, 50);

/* Composite the gradient on the pattern */
$draw->composite(Imagick::COMPOSITE_OVER, 0, 0, 50, 50, $im);

/* Close the pattern */
$draw->popPattern();

/* Use the pattern called "gradient" as the fill */
$draw->setFillPatternURL('#gradient');

/* Set font size to 52 */
$draw->setFontSize(52);

/* Annotate some text */
$draw->annotation(20, 50, "Hello World!");

/* Create a new canvas object and a white image */
$canvas = new Imagick();
$canvas->newImage(350, 70, "white");

/* Draw the ImagickDraw on to the canvas */
$canvas->drawImage($draw);

/* 1px black border around the image */
$canvas->borderImage('black', 1, 1);

/* Set the format to PNG */
$canvas->setImageFormat('png');

/* Output the image */
header("Content-Type: image/png");
echo $canvas;
?>

您应该看到一个世界地图:

在此处输入图片说明


22

在bash中:

$ convert -version

要么

$ /usr/local/bin/convert -version

无需编写任何PHP文件即可检查。


4
只是为了节省其他任何人都必须查找它-转换是imagick安装的shell命令,因此上面直接与它进行了对话以检查它是否存在+1
Bananaapple

18

您可以轻松地检查PHP中的Imagick类。

if( class_exists("Imagick") )
{
    //Imagick is installed
}

9
重要提示:有时这返回FALSE但extension_loaded('imagick')返回TRUE !,所以我猜更好的是:if( extension_loaded('imagick') || class_exists("Imagick") ){ /*do Imagick*/ }
jave.web 2014年

9

在Bash中,您可以检查Imagick是否已安装的模块:

$ php -m | grep imagick

如果响应为空,则未安装。


7

尝试使用此一站式解决方案,如果您可以访问ImageMagick,则可以弄清楚它的位置...

这在我的Godaddy托管上找到了所有版本。

将此文件上载到您的服务器并调用它ImageMagick.php或执行其他操作。您将获得所需的所有信息...希望...

祝好运。

<?
/*
// This file will run a test on your server to determine the location and versions of ImageMagick. 
//It will look in the most commonly found locations. The last two are where most popular hosts (including "Godaddy") install ImageMagick.
//
// Upload this script to your server and run it for a breakdown of where ImageMagick is.
//
*/
echo '<h2>Test for versions and locations of ImageMagick</h2>';
echo '<b>Path: </b> convert<br>';

function alist ($array) {  //This function prints a text array as an html list.
    $alist = "<ul>";
    for ($i = 0; $i < sizeof($array); $i++) {
        $alist .= "<li>$array[$i]";
    }
    $alist .= "</ul>";
    return $alist;
}

exec("convert -version", $out, $rcode); //Try to get ImageMagick "convert" program version number.
echo "Version return code is $rcode <br>"; //Print the return code: 0 if OK, nonzero if error.
echo alist($out); //Print the output of "convert -version"
echo '<br>';
echo '<b>This should test for ImageMagick version 5.x</b><br>';
echo '<b>Path: </b> /usr/bin/convert<br>';

exec("/usr/bin/convert -version", $out, $rcode); //Try to get ImageMagick "convert" program version number.
echo "Version return code is $rcode <br>"; //Print the return code: 0 if OK, nonzero if error.
echo alist($out); //Print the output of "convert -version"

echo '<br>';
echo '<b>This should test for ImageMagick version 6.x</b><br>';
echo '<b>Path: </b> /usr/local/bin/convert<br>';

exec("/usr/local/bin/convert -version", $out, $rcode); //Try to get ImageMagick "convert" program version number.
echo "Version return code is $rcode <br>"; //Print the return code: 0 if OK, nonzero if error.
echo alist($out); //Print the output of "convert -version";

?>

1
转换pdf:很多。不错的脚本。在hostgator和godaddy上都可以很好地工作...不如云或AWS那样酷,但是在我的小型企业客户的预算范围内。
zipzit

1
下班后……在这里Google吃饭了:MediaWiki创建缩略图时出错:sh:/ usr / local / bin / convert:没有这样的文件或目录
Martin

我的是基于.NET和Sitecore的应用程序。是否检查我的应用程序是否使用ImageMagick?
Natasha Batra's

1

如果您的ISP /主机服务已安装ImageMagick并将其位置放在PATH环境变量中,则可以找到安装了哪些版本以及使用的位置:

<?php
echo "<pre>";
system("type -a convert");  
echo "</pre>";
?> 

1

要仅测试IMagick PHP扩展(而不是完整的ImageMagick套件),请将以下内容另存为PHP文件(testImagick.php),然后从控制台运行它:php testImagick.php

<?php
$image = new Imagick();
$image->newImage(1, 1, new ImagickPixel('#ffffff'));
$image->setImageFormat('png');
$pngData = $image->getImagesBlob();
echo strpos($pngData, "\x89PNG\r\n\x1a\n") === 0 ? 'Ok' : 'Failed';
echo "\n";

信用:https//mlocati.github.io/articles/php-windows-imagick.html


0

请记住,在安装Imagick(或实际上是任何PHP模块)之后,您需要重新启动Web服务器和/或php-fpm(如果正在使用),以使该模块出现在phpinfo()中。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.