0

我正在按照 Laracast 教程使用干预处理图像。将它添加到我的作曲家文件并运行作曲家更新后,我按照安装指南中的说明将它添加到我的服务提供者和别名中。另外,我正在使用 Vagrant 1.7.4 和一个名为 Scotch Box 2.5 的 Laravel 虚拟盒子。

但是,我无法在我的应用程序中成功使用干预。这是我的示例路线:

Route::get('foo', function() {
    $image = Image::make('http://placehold.it/500x500/000/e8117f');
    return Response::make($image->encode('jpg'), 200, ['Content-Type' => 'image/jpeg']);
});

当我在浏览器中访问该页面时,我看到的只是一个损坏的图像图标。我真的很困惑为什么 Chrome 中的开发人员检查器工具会显示:

<img style="-webkit-user-select: none" src="http://192.168.33.10/public/foo">
4

1 回答 1

0

而不是返回Response::make,你可以这样做:

return $image->response('jpg');

你也可以这样做:

return $image->response();

默认情况下,响应数据将以当前图像的类型编码。如果尚未定义图像类型,则方法将返回 jpeg 编码数据。

来源:http: //image.intervention.io/api/response

于 2015-11-05T21:51:16.157 回答