在laravel

时间:2015-06-28 17:06:16

标签: php image upload crop

我想在Laravel(4.2)中裁剪/调整图像大小。但它看起来效果不是很好......

所以我希望能够上传图片,但要将其调整到最大宽度和高度。

我该怎么做?

我现在的代码是:

//save the image
            $destinationPath = 'public/pictures/news';

            if (Input::hasFile('img'))
            {
                $file = Input::file('img');
                $file->move('public/pictures/news', $file->getClientOriginalName());
            }

所以,我想在if()语句中使用代码来裁剪图像。指定的最大宽度和最大高度。

如果有人可以帮助我,我会非常高兴!

金德斯问,

罗宾

1 个答案:

答案 0 :(得分:2)

使用图像干预程序包,它提供了一种更容易表达的方式来创建,编辑和合成图像。

https://packagist.org/packages/intervention/image