web-dev-qa-db-ja.com

ImageMagickのインストールを確認する

私のWebホスティングでは、ImageMagicはサーバーにプリインストールされています。 phpinfo()の出力で「ImageMagick」をすばやく検索しましたが、何も見つかりませんでした。サーバーでSSHできないので、PHPインストールを確認できますか?

75
Desmond Liang

これを試して:

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

これは、できるだけ短くて甘いものです。

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

編集:以下の情報とスクリプトは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;
?>

Hello Worldグラフィックが表示されます。

enter image description here

32
Nate Flink

PHPでImagickクラスを簡単に確認できます。

if( class_exists("Imagick") )
{
    //Imagick is installed
}
16
Spencer Hakim

Bashの場合:

$ convert -version

または

$ /usr/local/bin/convert -version

確認するためにPHPファイルを記述する必要はありません。

13
Ashraf Slamang

ImageMagickにアクセスできる場合、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";

?>
8
convert a pdf

ISP /ホスティングサービスがImageMagickをインストールし、その場所をPATH環境変数に入れている場合、インストールされているバージョンと使用している場所を確認できます。

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

Bashでは、Imagickがインストール済みモジュールかどうかを確認できます。

$ php -m | grep imagick

応答が空白の場合、インストールされていません。

1
Mr.Yellow

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
atyachin