使用imagettftext后关闭字体文件句柄

时间:2013-05-12 00:17:03

标签: php php-gd

我正在使用imagettftext使用PHP GD在图像上绘制文本

header('Content-Type: image/png');
$im = imagecreatetruecolor(400, 30);

$white = imagecolorallocate($im, 255, 255, 255);
$text = 'Test';
$font = 'data/font/arial.ttf';
imagettftext($im, 20, 0, 10, 20, $white, $font, $text);
imagepng($im);
imagedestroy($im);

它工作正常,但问题是imagedestroy($im);(使用procexp检查)后字体文件句柄未关闭
正如我所料,当我尝试Permission denied字体文件时,我收到unlink警告。

如何发布使用过的字体文件?谢谢你 我正在测试Windows xampp

0 个答案:

没有答案