从guzzle API返回图像后如何在laravel中显示图像

时间:2019-04-16 08:27:47

标签: php laravel guzzle

嗨,我想通过发送带有jwt令牌的API在我的项目中显示私人图片。我用邮递员进行测试。邮递员返回图像,但如何显示类似邮递员的图像。

这是我的代码控制器sendApi

public function getIdCard($name) {
        $token = $this->getToken();
        $client = new Client(['base_uri' => env('URL_FRONTEND')]);
        $headers = [
            'Authorization' => 'Bearer ' . $token,
        ];
        $response = $client->request('GET', 'storage/getIdCard/icQE5nwU1jQl1lrIZJmGxVs2GDIIsDjbuQo541VlwzhNTl7iEe1555385649.png', [
            'headers' => $headers
        ]);

        $response = $response->getBody()->getContents();
        return $response;
    }

这是我的API /控制器[来自另一个项目]

 public function getIdCard($file_name){;
        $storagePath = storage_path('app/id_card/'. $file_name);
        return Image::make($storagePath)->response();
  }

这就是我得到的

PNG  IHDR��B5   pHYs���+ IDATx��yx�U�?��Nw�@B�o�Ha"ʦ� ����(.����� ��l^t��늨�D�EYe5Q�d5l��,$d�������'U眷�~��ɓ~�R���T�yC���t� ��b���`�$���z�Á�� ->W� ]�+��*������L�����"y��Hn��yj��H�Ma�ɗ�"��x��ǹϺxt�7�8���H��M�_0�ҿs�/<��o�X����h*,��,5e�Ή��1{�e��pS�,�M����z��)�R8fd5����\����SƗ�r�:J�j�ǸO�UfK�d�U��vR:��ƛ7*��v2�������dS�T礱����=c/j��\�kus��:������,�DE�Z��E���R)Y�AT�׈��!~��(�s�m@ͻ��M:"&n�����d���/�8��]�1�d���[� +5�s.tyǩ)��lF��ĬJ���us����[c�F:�U����%����/���*]���B�'Q��2]:X�݋�����q���R_�5N���"n�j� �[����}W}��#�7��{Va?��íQ���]5�����_J���¤��6NG�-͜5n?#�8Ug�z��esoT��]+����!]�E]�x����D=[�N�K���8��*5�3Ήrd�p�ps:�#%��O��-�\E^:gNg^��rq��O��iPT�\q�(�_�3{84�����kWH�o��Zw��/�Y�+��r��

在邮递员中返回图像如何像邮递员一样显示

更新 我在Api /控制器中添加功能仍然无法正常工作

public function getIdCard($file_name){;
        $storagePath = storage_path('app/id_card/'. $file_name);
        $headers = [
            "Content-type: image/png",
        ];
        return response()->file($storagePath, $headers);
   }

**更新2 **

我正在研究2个项目 -我返回API的第一个项目return response()-> file($ storagePath,$ headers); -然后我使用邮政人员,它是返回图像 -我要从API获取图像的第二个项目,我使用了

   $response = $response->getBody()->getContents();

返回text / html如何将其显示为图像

2 个答案:

答案 0 :(得分:0)

我真的不知道您的Image类是什么,所以我会说如何使用内置函数。

return response()->file($pathToFile, $headers);

最有可能在调用file方法时不需要任何标题(作为第二个参数),但是如果需要一个标题,请尝试使用类似[“ Content-type:image / png”]

答案 1 :(得分:0)

这是解决方案:

R_HISTSIZE