PHP imagecreatetruecolor 图像GD库函数
-
定义和用法
imagecreatetruecolor - 新建一个真彩色图像 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。
-
语法
imagecreatetruecolor ( int $width , int $height )
imagecreatetruecolor() 返回一个图像标识符,代表了一幅大小为 x_size 和 y_size 的黑色图像。 是否定义了本函数取决于 PHP 和 GD 的版本。从 PHP 4.0.6 到 4.1.x 只要加载了 GD 模块本函数一直存在,但是在没有安装 GD2 的时候调用,PHP 将发出致命错误并退出。在 PHP 4.2.x 中此行为改为发出警告而不是错误。其它版本只在安装了正确的 GD 版本时定义了本函数。 -
参数
参数 必需的 描述 width 是 图像宽度。 height 是 图像高度。 -
返回值
成功后返回图象资源,失败后返回 FALSE 。 -
示例
header ('Content-Type: image/png'); $im = @imagecreatetruecolor(240, 40) or die('Cannot Initialize new GD image stream'); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 5, 5, 5, 'A Simple Text String', $text_color); imagepng($im); imagedestroy($im);
以上示例输出: -