1

私はここにこの機能を持っています.....

function create_thumbnail($source,$destination, $thumb_width) {
        $size = getimagesize($source);
        $width = $size[0];
        $height = $size[1];
        $x = 0;
        $y = 0;
        if($width> $height) {
            $x = ceil(($width - $height) / 2 );
            $width = $height;
        } elseif($height> $width) {
            $y = ceil(($height - $width) / 2);
            $height = $width;
        }
        $new_image = imagecreatetruecolor($thumb_width,$thumb_width)or die('Cannot Initialize new GD image stream');
        $extension = get_image_extension($source);
         if($extension=='jpg' || $extension=='jpeg') 
            $image = imagecreatefromjpeg($source); 
        if($extension=='gif') 
            $image = imagecreatefromgif($source); 
        if($extension=='png') 
            $image = imagecreatefrompng($source);   

        imagecopyresampled($new_image,$image,0,0,$x,$y,$thumb_width,$thumb_width,$width,$height);
        if($extension=='jpg' || $extension=='jpeg') 
           imagejpeg($new_image,$destination); 
        if($extension=='gif') 
            imagegif($new_image,$destination); 
        if($extension=='png') 
            imagepng($new_image,$destination); 
    }

そして、これは画像を取得してサイズを変更しますが、期待どおりにサイズ変更されていないため、幅の広い画像、背の高い画像、または通常のサイズの画像を取得して、そのサイズに合うように切り取ると予想していました。サイズ変更は行いますが、ほとんどの画像が途切れます...私はこれに何日も苦労していて、画像を切り落とさずに画像のサイズを変更する方法を見つけることができないようです....私はいくつかの助けを見つけることができると思いますそしてそれは大いにありがたいです...だから、とても疲れています...

例として、私はこの画像を持っています...。

ここに画像の説明を入力してください

その画像に対してその関数を実行すると、これが返されます...

ここに画像の説明を入力してください

私が期待しているのは、同じ画像で、少し小さいことです。

コードのこの部分を変更しました...

imagecopyresampled($new_image,$image,0,0,0,0,$thumb_width,$thumb_width,$width,$height);

$x$yを「0」と「0」に変更しました。これが出てきたものです...

ここに画像の説明を入力してください

私は探しているものに近づいていますが、完全な画像がそこにありません...それはまだ途切れています。

4

2 に答える 2

3

あなたが望むもののためにあなたはこの関数を使うことができます:

function create_thumbnail($source, $destination, $thumbWidth)
{
    $extension = get_image_extension($source);
    $size = getimagesize($source);
    $imageWidth  = $newWidth  = $size[0];
    $imageHeight = $newheight = $size[1];

    if ($imageWidth > $thumbWidth || $imageHeight > $thumbWidth)
    {
        $newWidth  = $newHeight = $thumbWidth;
    }

    $newImage = imagecreatetruecolor($newWidth, $newHeight);

    switch ($extension)
    {
        case 'jpeg':
        case 'jpg':
            $imageCreateFrom = 'imagecreatefromjpeg';
            $store = 'imagejpeg';
            break;

        case 'png':
            $imageCreateFrom = 'imagecreatefrompng';
            $store = 'imagepng';
            break;

        case 'gif':
            $imageCreateFrom = 'imagecreatefromgif';
            $store = 'imagegif';
            break;

        default:
            return false;
    }

    $container = $imageCreateFrom($source);
    imagecopyresampled($newImage, $container, 0, 0, 0, 0, $newWidth, $newHeight, $imageWidth, $imageHeight);
    return $store($newImage, $destination);
}
var_dump(create_thumbnail('sample.jpg', 'sample_thumb_no_ratio.jpg', '255'));

ただし、画像の比率を維持したい場合は、次のようなものを使用できます。

function create_thumbnail_preserve_ratio($source, $destination, $thumbWidth)
{
    $extension = get_image_extension($source);
    $size = getimagesize($source);
    $imageWidth  = $newWidth  = $size[0];
    $imageHeight = $newheight = $size[1];

    if ($imageWidth > $thumbWidth || $imageHeight > $thumbWidth)
    {
        // Calculate the ratio
        $xscale = ($imageWidth/$thumbWidth);
        $yscale = ($imageHeight/$thumbWidth);
        $newWidth  = ($yscale > $xscale) ? round($imageWidth * (1/$yscale)) : round($imageWidth * (1/$xscale));
        $newHeight = ($yscale > $xscale) ? round($imageHeight * (1/$yscale)) : round($imageHeight * (1/$xscale));
    }

    $newImage = imagecreatetruecolor($newWidth, $newHeight);

    switch ($extension)
    {
        case 'jpeg':
        case 'jpg':
            $imageCreateFrom = 'imagecreatefromjpeg';
            $store = 'imagejpeg';
            break;

        case 'png':
            $imageCreateFrom = 'imagecreatefrompng';
            $store = 'imagepng';
            break;

        case 'gif':
            $imageCreateFrom = 'imagecreatefromgif';
            $store = 'imagegif';
            break;

        default:
            return false;
    }

    $container = $imageCreateFrom($source);
    imagecopyresampled($newImage, $container, 0, 0, 0, 0, $newWidth, $newHeight, $imageWidth, $imageHeight);
    return $store($newImage, $destination);
}
var_dump(create_thumbnail_preserve_ratio('sample.jpg', 'sample_thumb_with_ratio.jpg', '255'));
于 2012-05-01T21:33:38.167 に答える
1

その他の解決策:

/**
 * Create a jpg thumbnail from a source
 **/
function create_thumbnail($source, $destination, $thumbWidth) {
    if (($info = getimagesize($source)) === FALSE)
        return null;
    switch ($info[2]) {
        case IMAGETYPE_GIF  : $src = imagecreatefromgif($source);  break;
        case IMAGETYPE_JPEG : $src = imagecreatefromjpeg($source); break;
        case IMAGETYPE_PNG  : $src = imagecreatefrompng($source);  break;
        default : null;
    }
    $width = $info[0];
    $height = $info[1];
    $widthDst = $thumbWidth;
    $heightDst = intval( $height * $thumbWidth / $width);
    $tmp = imagecreatetruecolor($widthDst, $heightDst);
    imagecopyresampled($tmp, $src, 0, 0, 0, 0, $widthDst, $heightDst, $width, $height);
    imagejpeg($tmp, $destination);
}
于 2018-03-01T08:09:11.103 に答える