[php] ImageMagick 설치 확인

내 웹 호스팅에 ImageMagic이 서버에 사전 설치되어 있다고합니다. phpinfo () 출력에서 ​​”ImageMagick”을 빠르게 검색했지만 아무것도 찾지 못했습니다. 서버에서 SSH를 사용할 수 없으므로 PHP에서 설치를 확인할 수있는 방법이 있습니까?



답변

이 시도:

<?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);
?>


답변

이것은 얻을 수있는 한 짧고 달콤합니다.

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


답변

편집 : 아래 정보와 스크립트는 iMagick 클래스에만 적용되며 ImageMagick에 기본적으로 추가되지 않습니다 !!!

imagemagick이 설치되어 있고 실제로 PHP 확장으로 작동하는지 알고 싶다면이 코드를 웹 액세스 파일에 붙여 넣습니다.

<?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;
?>

hello world 그래픽이 표시되어야합니다.

여기에 이미지 설명 입력


답변

bash에서 :

$ convert -version

또는

$ /usr/local/bin/convert -version

확인하기 위해 PHP 파일을 작성할 필요가 없습니다.


답변

PHP에서 Imagick 클래스를 쉽게 확인할 수 있습니다.

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


답변

Bash에서 Imagick이 설치된 모듈인지 확인할 수 있습니다.

$ php -m | grep imagick

응답이 비어 있으면 설치되지 않습니다.


답변

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";

?>