Php在图像上写文字,保存选项

时间:2015-03-17 22:24:12

标签: php

嗯,这就是我现在所拥有的。

$bg = imagecreatefrompng('bg.png');

$font = "font.ttf";

$white = imagecolorallocate($bg, 255, 255, 255);
header("Content-type: image/png");
imagettftext($bg, 25, 0, 5, 83, $white, $font, date('d.m.Y'));
imagettftext($bg, 30, 0, 5, 145, $white, $font, date('H:i'));

imagepng($bg);
imagedestroy($bg);

我想知道如何实际保存创建的图像。 我试图做那样的事情:

imagepng($bg,"/users/user/");

要保存,但它根本不起作用。 那么有人能告诉我如何保存图像吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

试一试:

imagepng($bg, "/users/user/bg.png");
imagedestroy($bg);