文件不存在 maatwebsite/excel laravel 从视图中导出

File does not exist maatwebsite/excel laravel export from view

尝试通过 Laravel blade 导出 excel 文件,但在尝试添加来自外部 link 非同一服务器的图像时存在问题(来自 google 存储)图像可通过浏览器访问

错误是:

PhpOffice\PhpSpreadsheet\Writer\Exception 文件 URL 不存在

此外,尝试获取 base64 也没有成功

        $type = pathinfo($url, PATHINFO_EXTENSION);
        $data = file_get_contents($url);
        $base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);

        didn't work <img src='{{$url}}' style="height: 20px;" height="100px">
        didn't work <img src='{{$base64}}' style="height: 20px;" height="100px">

我通过临时将图像下载到服务器并使用服务器上图像的路径解决了这个问题。