我使用干预图像上传单个图像的两个版本(小和大)以显示在不同页面上。
用户总是上传 1000 x 1000 像素的图像,原件用于单个产品产品页面,较小的版本用于“所有产品”页面。
除了缩小的图像质量很差之外,这很好用。像素化了
我正在使用 Laravel 4.2。我的 php 版本是 5.5.11。我正在本地主机上使用 Xampp 进行开发。我看过这个问题,我很确定 GD 已安装。
是因为GD不如imagick吗?因为我似乎一辈子都无法安装那个东西......
编辑:这就是问题所在!我终于设法让imagick工作并将其更改为驱动程序。高质量的图像。
这是我的路线,但我认为这不是问题所在:
$file = Input::file('photo');
$fileName = Input::get('name').'.'.$file->getClientOriginalExtension();
$fileName= str_replace(' ', '_', $fileName);
$destinationPath = 'productphotos/';
// upload new image
Image::make($file->getRealPath())
// original
->save($destinationPath.$fileName)
// resize
->resize(300, 300) // set true if you want proportional image resize
->save($destinationPath.'resize'.$fileName, 100);
$aDetails = Input::all();
$aDetails["photo"] = $fileName;
$aDetails["smallphoto"] = 'resize'.$fileName;
Product::create($aDetails);
return Redirect::to("products/".Input::get("product_id"));
你可以看到stock test(原始尺寸1000x1000)和testresize(300x300)之间的区别。它们都以 218x218 显示。