如何保存php脚本生成的图像?

时间:2016-05-10 02:52:39

标签: php image barcode

我有一个生成条形码的第三方php文件,名为barcode.php。

当我想生成新的条形码时,我会调用该脚本,如下所示:

<img alt="testing" src="barcode.php?text=455555442233&codetype=Code25" />

是否有一种简单的方法可以将生成的图像保存到服务器上,而无需修改barcode.php脚本?

1 个答案:

答案 0 :(得分:1)

$file = 'barcode.jpg'; //file name to write to include location if needed
$current = file_get_contents('http://yoursite.com/barcode.php?text=455555442233&codetype=Code25');//read the created file
file_put_contents($file, $current);//write it

在这里使用外部网址可能是次优的,具体取决于具体情况