1

我正在使用 imagick 扩展编写一个 PHP 脚本。我想要脚本做的是拍摄用户上传的图像,并从中创建一个 200x128 的缩略图。

这不是唯一的事情。显然,并非所有图像都适合 200x128 的纵横比。所以我想要脚本做的是用黑色背景填充空白。

现在,图像调整大小,但没有黑色背景并且大小不正确。基本上,图像应始终为 200x128。调整大小的图像将位于中心,其余内容将被黑色填充。

有任何想法吗?

这是我的代码:

function portfolio_image_search_resize($image) {

    // Check if imagick is loaded. If not, return false.
    if(!extension_loaded('imagick')) { return false; }

    // Set the dimensions of the search result thumbnail
    $search_thumb_width = 200;
    $search_thumb_height = 128;

    // Instantiate class. Then, read the image.
    $IM = new Imagick();
    $IM->readImage($image);

    // Obtain image height and width
    $image_height = $IM->getImageHeight();
    $image_width = $IM->getImageWidth();

    // Determine if the picture is portrait or landscape
    $orientation = ($image_height > $image_width) ? 'portrait' : 'landscape';

    // Set compression and file type
    $IM->setImageCompression(Imagick::COMPRESSION_JPEG);
    $IM->setImageCompressionQuality(100);
    $IM->setResolution(72,72);
    $IM->setImageFormat('jpg');

    switch($orientation) {

        case 'portrait':

            // Since the image must maintain its aspect ratio, the rest of the image must appear as black
            $IM->setImageBackgroundColor("black");

            $IM->scaleImage(0, $search_thumb_height);

            $filename = 'user_search_thumbnail.jpg';

            // Write the image
            if($IM->writeImage($filename) == true) {
                return true;
            }
            else {
                return false;
            }
            break;

        case 'landscape':

            // The aspect ratio of the image might not match the search result thumbnail (1.5625)
            $IM->setImageBackgroundColor("black");

            $calc_image_rsz_height = ($image_height / $image_width) * $search_thumb_width;

            if($calc_image_rsz_height > $search_thumb_height) {
                $IM->scaleImage(0, $search_thumb_height);
            }
            else {
                $IM->scaleImage($search_thumb_width, 0);
            }

            $filename = 'user_search_thumbnail.jpg';

            if($IM->writeImage($filename) == true) {
                return true;
            }
            else {
                return false;
            }

        break;

    }

}
4

2 回答 2

2

我知道它很旧,但经过长时间的尝试,我找到了答案:

你需要使用缩略图(http://php.net/manual/en/imagick.thumbnailimage.php

$bestfit 和 $fill 都为 true,如下所示:

$image->thumbnailImage(200, 128,true,true);
于 2014-06-19T10:50:29.723 回答
0

exec('convert -define jpeg:size=400x436 big_image.jpg -auto-orient -thumbnail 200x218 -unsharp 0x.5 thumbnail.gif');

您需要安装 imagemagick。

sudo apt-get install imagemagick

看看: http ://www.imagemagick.org/Usage/thumbnails/#creation

它显示了更多示例以及如何使用您选择的背景颜色填充缩略图。

于 2011-07-01T10:02:06.820 回答