web-dev-qa-db-ja.com

imagickを使用して.psdと.aiをPNG / JPGに変換します

デジタルアセットマネージャーのサムネイルを作成していますが、imagemagickでこれを行うための最良の方法は何ですか?

そこに良いリソースはありますか?

18
Jason Spick

私はそれを解決し、世界と共有します! .ai、.psd、.jpg、.png、.gifをサムネイルに変換します。

これは4つのパラメータを取る関数です:

$ dir-保存先のディレクトリ。
$ tmpName-拡張子を除いてファイルに名前を付ける名前。
$ fileType-自明。
$ size-大きいまたは小さい。

function thumbGenerator($dir,$tmpName,$fileType,$size){
    $saveFileType = "png";
    $imagePath = $dir.$tmpName.".".$fileType;
    $image = new Imagick();
    $image->readimage($imagePath);
    if($fileType == "psd"){
        $image->setIteratorIndex(0);
    }
    $dimensions = $image->getImageGeometry();
    $width = $dimensions['width'];
    $height = $dimensions['height'];
    if($size == "large"){
        $maxWidth = 720;
        $maxHeight =720;
    }
    if($size == "small"){
        $maxWidth = 250;
        $maxHeight =250;
    }
    if($height > $width){
        //Portrait
        if($height > $maxHeight)
            $image->thumbnailImage(0, $maxHeight);
            $dimensions = $image->getImageGeometry();
            if($dimensions['width'] > $maxWidth){
                $image->thumbnailImage($maxWidth, 0);
            }
    }elseif($height < $width){
        //Landscape
        $image->thumbnailImage($maxWidth, 0);
    }else{
        //square
        $image->thumbnailImage($maxWidth, 0);
    }
    if($size == "large"){
        $image->writeImage($dir . $tmpName."-lg.".$saveFileType);
    }
    if($size == "small"){
        $image->writeImage($dir . $tmpName."-sm.".$saveFileType);;
    }
}
20
Jason Spick

@ジェイソン-共有してくれてありがとう。コードをよりクリーンで簡単に保守/拡張するためのヒントをいくつか紹介します。繰り返しますが、その多くは要件によって異なります。また、私は実際にこのコードを実行しなかったので、タイプミスは許してください。

$ dir-保存先のディレクトリ。
$ tmpName-拡張子を除いてファイルに名前を付ける名前。
$ fileType-自明。
$ size-大きいまたは小さい。 事前定義された幅の文字列ではなく、サムネイルのピクセル幅の値を使用することを検討できます。将来、ページの新しいセクションでより大きなサムネイルが必要になるとしましょう(つまり、Retina対応)。 「小さい」サムネイルの場合は500pxのアイコン)。共有のthumbGenerator関数ではなく、コードの新しい部分でサイズを定義することをお勧めします

function thumbGenerator($dir,$tmpName,$fileType,$size){
    $saveFileType = "png";
    $imagePath = $dir.$tmpName.".".$fileType;
    $image = new Imagick();
    $image->readimage($imagePath);
    if($fileType == "psd"){
        $image->setIteratorIndex(0);
    }
/* Simplify this code section below
    $dimensions = $image->getImageGeometry();
    $width = $dimensions['width'];
    $height = $dimensions['height'];
*/      
    list($width,$height) = $image->getImageGeometry();  // <--- new code
 /* Use $size for the pixel width/height instead and remove the code below
    if($size == "large"){
        $maxWidth = 720;
        $maxHeight =720;
    }
    if($size == "small"){
        $maxWidth = 250;
        $maxHeight =250;
    }
*/
    if($height > $width){
        //Portrait
        if($height > $size) 
            $image->thumbnailImage(0, $size);
            $dimensions = $image->getImageGeometry();
            if($width > $size){  // <--- use the previously created $width variable
                $image->thumbnailImage($size, 0);
            }
/* Don't need this duplicate code.

    }elseif($height < $width){
        //Landscape
        $image->thumbnailImage($maxWidth, 0);
 */
    }else{
        // square or landscape
        $image->thumbnailImage($maxWidth, 0);
    }
/*  DRY - do not repeat yourself - Simplify it and use the pixel width in the image name
    if($size == "large"){
        $image->writeImage($dir . $tmpName."-lg.".$saveFileType);
    }
    if($size == "small"){
        $image->writeImage($dir . $tmpName."-sm.".$saveFileType);;
    }
*/
$image->writeImage($dir . $tmpName."-".$size.".".$saveFileType);;
}
5
manu3569