ホームページ  >  記事  >  バックエンド開発  >  強力な imagick を使用して、PHP で結合されたサムネイルを簡単に生成します。

強力な imagick を使用して、PHP で結合されたサムネイルを簡単に生成します。

WBOY
WBOYオリジナル
2016-06-13 12:28:40911ブラウズ

PHP で強力な imagick を使用すると、結合されたサムネイルを簡単に生成できます

<code class="language-meta">project: blogtarget: use-imagick-to-composite-images-thumbnail.mddate: 2016-02-19status: publishtags:    - php    - imagick    - thumbnailcategories:    - php</code>

ここで説明する imagick は、PHP での ImageMagick の拡張機能です。 pecl を使用したインストールは簡単でシンプルです。コマンドは 1 つだけです:

<code class="language-sh">sudo pecl install imagick</code>

(拡張機能のインストール後、extension=imagick.so を php.ini に追加し、必ず または apache サービス) php-fpm

最近、複数の写真を結合してサムネイルを生成する必要があり、私はこの強力な

拡張機能を使用しています。 imagickこの要件は、次のようなサムネイルを生成することです:

    画像が 1 枚ある場合は、この画像のサムネイルを直接生成します。
  1. 画像が 2 枚ある場合は、1 つをオンにします。左側と右側に 1 つずつ、
  2. 3 つの写真がある場合、2 つの写真の左側が均等に分配され、1 つは右側を占めます。フィールド グリッドと同じようにスペースが均等に分散されている場合、
  3. にさらに多くの写真がある場合は、最初の 4 枚の写真のみが撮影され、サムネイルは次のように生成されます。フィールドグリッド方式。
  4. かなりの数のルールがありますが、それほど複雑ではありません。

試してみましょう:

<code class="language-php">namespace \clarence\thumbnail;class Thumbnail extends \Imagick{    /**     * @param array $images     * @param int $width     * @param int $height     * @return static     * @throws ThumbnailException     */    public static function createFromImages($images, $width, $height){        if (empty($images)){            throw new ThumbnailException("No images!");        }        $thumbnail = new static();        $thumbnail->newImage($width, $height, 'white', 'jpg');        $thumbnail->compositeImages($images);        return $thumbnail;    }    public function compositeImages($images){        $imagesKeys = array_keys($images);        $compositeConfig = $this->calcCompositeImagesPosAndSize($images);        foreach ($compositeConfig as $index => $cfg){            $imgKey = $imagesKeys[$index];            $img = new \Imagick($images[$imgKey]);            $img = $this->makeCompositeThumbnail($img, $cfg);            $this->compositeImage($img, self::COMPOSITE_OVER, $cfg['to']['x'], $cfg['to']['y']);        }    }    protected function makeCompositeThumbnail(\Imagick $img, $cfg){        $img->cropThumbnailImage($cfg['size']['width'], $cfg['size']['height']);        return $img;    }    protected function calcCompositeImagesPosAndSize($images){        $width = $this->getImageWidth();        $height = $this->getImageHeight();        switch(count($images)){            case 0:                throw new ThumbnailException("No images!");            case 1:                // | 0 |                return [                    0 => [                        'to' => [ 'x' => 0, 'y' => 0 ],                        'size' => [                            'width' => $width,                            'height' => $height,                        ]                    ]                ];            case 2:                // | 0 | 1 |                return [                    0 => [                        'to' => [ 'x' => 0, 'y' => 0 ],                        'size' => [                            'width' => $width / 2,                            'height' => $height,                        ]                    ],                    1 => [                        'to' => [ 'x' => $width / 2, 'y' => 0],                        'size' => [                            'width' => $width / 2,                            'height' => $height,                        ]                    ]                ];            case 3:                // | 0 | 1 |                // | 2 |   |                return [                    0 => [                        'to' => [ 'x' => 0, 'y' => 0 ],                        'size' => [                            'width' => $width / 2,                            'height' => $height / 2,                        ]                    ],                    1 => [                        'to' => [ 'x' => $width / 2, 'y' => 0],                        'size' => [                            'width' => $width / 2,                            'height' => $height,                        ]                    ],                    2 => [                        'to' => [ 'x' => 0, 'y' => $height / 2 ],                        'size' => [                            'width' => $width / 2,                            'height' => $height / 2,                        ]                    ],                ];            default:                // >= 4:                // | 0 | 1 |                // | 2 | 3 |                return [                    0 => [                        'to' => [ 'x' => 0, 'y' => 0 ],                        'size' => [                            'width' => $width / 2,                            'height' => $height / 2,                        ]                    ],                    1 => [                        'to' => [ 'x' => $width / 2, 'y' => 0],                        'size' => [                            'width' => $width / 2,                            'height' => $height / 2,                        ]                    ],                    2 => [                        'to' => [ 'x' => 0, 'y' => $height / 2 ],                        'size' => [                            'width' => $width / 2,                            'height' => $height / 2,                        ]                    ],                    3 => [                        'to' => [ 'x' => $width / 2, 'y' => $height / 2],                        'size' => [                            'width' => $width / 2,                            'height' => $height / 2,                        ]                    ],                ];        }    }}</code>

効果はすぐに出ました:

<code class="language-php">$thumbnail = \clarence\thumbnail\Thumbnail::createFromImages($srcImages, 240, 320);$thumbnail->writeImage($outputDir."/example.jpg");</code>

いいね~

(詳しいコードは http://github.com/clarence-pan/thumbnail を参照してください) )

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
前の記事:phpstorm 登録次の記事:phpstorm 登録