asmx / cropper

裁剪图片,调整大小以适应尺寸

dev-master 2019-12-17 09:22 UTC

This package is auto-updated.

Last update: 2024-09-12 04:56:42 UTC


README

使用原始比例和填充主色的尺寸创建所需大小的图像

安装

composer require asmx/cropper

用法

use Asmx\Cropper\Cropper;

$cropper = new Cropper();

    $cropper->
    from('input_path_file')->
    to('output_path_file')->
    size([600,200])->
    fit();