问题在于:
我从图像叠加网络服务获取流。
字符串是这样的:
$string = http://[ipaddress]/faceCrop/Z%3A%5Ccelebhair%5CHair2-148_172_278_378.png/Z%3A%5Cprofilepictures%5C9ef14819f0.png/90/40/300/466
然后我将图像渲染出来:
<img src="<?php echo $string;?>">
这会正确显示图像。
但是,我需要将图像(自动)保存到服务器上的文件夹中。
如何使用PHP或Javascript将数据流保存为物理映像?
由于
Ĵ
答案 0 :(得分:1)
您必须获取文件的内容,然后保存内容..
$fileContent = file_get_contents($url);
file_put_contents($filePath, $fileContent);