晚安,我对此有疑问
imagecreatefromstring('blob:https://myweb.com/1475db94-d450-44c7-a02f-c06e9fe46a6a');
错误输出
消息:'imagecreatefromstring():数据不是可识别的格式
答案 0 :(得分:1)
blob
并不是PHP可以处理的任何协议(请参见http://php.net/manual/wrappers.php)。
imagecreatefromstring()
需要一串二进制数据,而不是任何URI。
我认为您需要
$uri = 'https://myweb.com/1475db94-d450-44c7-a02f-c06e9fe46a6a';
$image = imagecreatefromstring(file_get_contents($uri));