Laravel 5图像调整大小

时间:2016-03-21 14:35:44

标签: laravel laravel-5

我使用Laravel 5并有一个表单来上传图片。保存文件时,我在控制器方法中获取图像并将其放在目录中:

if ($request->hasFile('picture')) {
    $destinationPath = 'uploads';
    $filename = $image->getClientOriginalName();
    $extension = $image->getClientOriginalExtension(); // add
    $picture = sha1($filename . time()) . '.' . $extension; //add
    $offer->image = $picture;
    $image->move($destinationPath, $picture);
}
$offer->save();

在保存文件之前,我想用最大值调整文件大小。宽度为800px。 Laravel中是否有图像调整大小或压缩功能? 这样做最好的想法是什么?

2 个答案:

答案 0 :(得分:2)

您可以安装和使用包,类似于intervention

来自官方网站的例子:

$img = Image::make('public/foo.jpg');
$img->resize(320, 240);
$img->insert('public/watermark.png');
$img->save('public/bar.jpg');

答案 1 :(得分:0)

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    mReactRootView = new ReactRootView(this);
    mReactInstanceManager = ReactInstanceManager.builder()
            .setApplication(getApplication())
            .setBundleAssetName("index.android.bundle")
            .setJSMainModuleName("index.android")
            .addPackage(new MainReactPackage())
            .setUseDeveloperSupport(BuildConfig.DEBUG)
            .setInitialLifecycleState(LifecycleState.RESUMED)
            .build();
    mReactRootView.startReactApplication(mReactInstanceManager, "HelloWorld", null);

    setContentView(mReactRootView);
}

试试这段代码