Laravel 5.4图像url存储在刀片文件中看不到的变量中

时间:2017-08-01 09:52:37

标签: laravel

我正在使用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.

生成的网址为http://res.cloudinary.com/demo/image/fetch/w_150,h_150,c_thumb,g_face,r_max,f_auto/http://dev1.jdsoftvera.com/voting-system/public/profile/image/9ccca1ccad318a91a0a1c057663548b6Penguins.jpg

但网址还可以。

当我只使用下面的代码时,可以看到图像。 <img src="{{ $profileurl }}" height="150" width="150">

1 个答案:

答案 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);