我正在使用Laravel 5.4,我使用下面给出的代码。
@if( $profileurl )
<div class="">
@php
$cropped_img = "http://res.cloudinary.com/demo/image/fetch/w_150,h_150,c_thumb,g_face,r_max,f_auto/" . $profileurl ;
@endphp
<img src="{{ $cropped_img }}" height="150" width="150">
</div>
@endif
但问题是图像看不清楚。但它的网址是正确的。 The image is look like this.
但网址还可以。
当我只使用下面的代码时,可以看到图像。
<img src="{{ $profileurl }}" height="150" width="150">
答案 0 :(得分:0)
此代码适用于我。
$profileurl = "http://res.cloudinary.com/demo/image/fetch/w_150,h_150,c_thumb,g_face,r_max,f_auto/" . $profileurl ;
$img = base64_encode($profileurl);
$profileurl = base64_decode($img);