以编程方式下载用html / php生成的图像

时间:2017-10-15 02:34:44

标签: php html automation

有这个图像生成 - 它看起来像什么 - html,我想以编程方式下载图像,我首先尝试了wget但得到了ERROR 500,使用浏览器下载图像并且鼠标右键单击工作正常。 有没有办法以编程方式执行此操作?

<img style="-webkit-user-select: none;background-position: 0px 0px, 10px 10px;background-size: 20px 20px;background-image:linear-gradient(90deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee 100%),linear-gradient(45deg, #eee 50%, white 25%, white 75%, #eee 75%, #eee 100%);" src="https://example.com/image.php">

1 个答案:

答案 0 :(得分:0)

PHP函数可用于在服务器上保存文件:

<?php echo file_put_contents("image_script.php","output_to_file.jpg"); ?>