我正在尝试将图像从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对象上。
答案 0 :(得分:0)
仅使用file_get_contents
应该会给您图像的原始内容。无需执行其他卷曲请求。
return file_get_contents($request->location);
答案 1 :(得分:0)