0

我的问题是我无法在 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 中使用它。代码或本地服务器有什么问题?

4

0 回答 0