php将文件从url转换为blob到javascript

时间:2019-06-13 08:58:38

标签: javascript php laravel blob

我正在尝试将图像从url转换为可以在javascript中使用的blob文件,但是我失败了,我该怎么办?甚至有可能:

到目前为止,我已经做到了:

    // $request->location is the url to the file in this case an image
    $img = file_get_contents($request->location);

    $ch = curl_init();

    // set URL and other appropriate options
    curl_setopt($ch, CURLOPT_URL, $request->location);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt($ch, CURLOPT_HEADER, 0);

    // grab URL and pass it to the browser
    $img = curl_exec($ch);

    // close cURL resource, and free up system resources
    curl_close($ch);

    return $img;

我想返回该blob,并将其附加到客户端/ javascript端的FileReader对象上。

2 个答案:

答案 0 :(得分:0)

仅使用file_get_contents应该会给您图像的原始内容。无需执行其他卷曲请求。

return file_get_contents($request->location);

答案 1 :(得分:0)

您曾经使用过“ 图像到斑点” JavaScript库吗?也许可以尝试。 请检查here

或者您也可以尝试使用“ JavaScript-画布到blob ”,有关更多详细信息,请检查here

我曾经尝试使用javascript将图片网址转换为base64,如果您有兴趣的话,我可以分享代码。