我正在尝试找到将图像从其他网站上传到我的图片文件夹的最简单方法。我不需要重命名或重新调整大小,或者在页面上找到它,我只想采用像http://www.mlbtraderumors.com/images/logo.png这样的完整路径并将logo.png上传到我的images目录。
答案 0 :(得分:0)
这是你想要达到的目标吗?
$source = file_get_contents("http://www.mlbtraderumors.com/images/logo.png");
file_put_contents("images/logo.png", $source);
它会将图像复制到图像文件夹中。
答案 1 :(得分:0)
也许这可能会有所帮助:
首先,使用imagecreatefromjpeg($ url): http://us2.php.net/manual/en/functio...tefromjpeg.php
然后,使用imagecreatetruecolor(): http://us2.php.net/manual/en/functio...etruecolor.php
然后,使用imagecopyresampled(): http://us2.php.net/manual/en/functio...yresampled.php
最后,使用imagejpeg(): http://us2.php.net/manual/en/function.imagejpeg.php