php创建图像不能包含文件?

时间:2012-08-02 10:07:41

标签: php image creation

<?php
header('Content-Type: image/png');
$im = @imagecreate(100, 100);
$color = imagecolorallocate($im, 10,10,10);
imagefill($im, 50, 50, $color);
imagePNG($im);
imagedestroy($im);
?>

此代码有效,但如果我放在require_once

require_once('file.php');

它不起作用?

0 个答案:

没有答案