php-保存从函数imagecopy创建的图像

当我从中创建图像时:

imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

我可以这样输出:

header('Content-type: image/png');

但是我该如何保存呢?

解决方法:

您可以使用以下代码保存图像.

imagepng($imagename, $mapimage_path  , 0);
上一篇:深入研究HashMap


下一篇:android-在上传之前调整图像大小(我可以进行上传/选择)