2

我正在调整我的项目中的大图像以创建缩略图。这是一个例子:

原始图像 (1160 x 773): 原始图像 (1160 x 773)

缩略图 (400 x 266): 缩略图 (400 x 266)

问题是,大图像是 732kb,我认为这是可以理解的,因为它的大小很大,但第二张图像仍然是 573kb。

这是正常的还是有什么问题?

这是我调整大小的代码:

\Intervention\Image\Facades\Image::make($originalPath)
    ->resize($resized_width, $resized_height, function($constraint){
        $constraint->aspectRatio();
        $constraint->upsize();
    })
    ->save($thumbnailPath, 85);
4

1 回答 1

2

试试这个代码,你会得到一个具有纵横比的小尺寸图像。

$configpath = 'Path of destination';
$width      = ($width)?$width:200;
$height     = ($height)?$height:200;
$img = Image::canvas($width, $height);
$image = Image::make($path)->resize($width, $height, function ($c) {
        $c->aspectRatio();
        $c->upsize();
});
// insert resized image centered into background
$img->insert($image, 'center');
$img->save($configpath.$width.'x'.$height.'_'.$filename);
于 2016-03-28T06:13:23.197 回答