PHP GD库返回损坏的图像

时间:2013-11-02 15:07:55

标签: php image codeigniter xampp gd

我的问题是我无法在Codeigniter中使用php库创建图像。

例如,我在下面的php.net中使用示例代码:

 header("Content-Type: image/png");
 $im = @imagecreate(110, 20) or die("Cannot Initialize new GD image stream");
 $background_color = imagecolorallocate($im, 0, 0, 0);
 $text_color = imagecolorallocate($im, 233, 14, 91);
 imagestring($im, 1, 5, 5,  "A Simple Text String", $text_color);
 imagepng($im);
 imagedestroy($im);

这段代码给了我一张破碎的图片。我使用gd_info()研究gd选项,如:

[GD Version] => bundled (2.0.34 compatible)
[FreeType Support] => 1
[FreeType Linkage] => with freetype
[T1Lib Support] => 
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPEG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] => 
[XBM Support] => 1
[JIS-mapped Japanese Font Support] => 

我在最新版本的XAMPP本地服务器上的Codeigniter中使用它。代码或本地服务器有什么问题?

0 个答案:

没有答案