PHP imagecreate 图像GD库函数
-
定义和用法
imagecreate - 新建一个基于调色板的图像 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
imagecreate ( int $x_size , int $y_size )
imagecreate() 返回一个图像标识符,代表了一幅大小为 x_size 和 y_size 的空白图像。 推荐使用 imagecreatetruecolor()。 -
参数
参数 必需的 描述 x_size 是 宽 y_size 是 高 -
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE。 -
示例
header("Content-type: image/png"); $im = @imagecreate(200, 100) or die("Cannot Initialize new GD image stream"); $background_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 5, 5, 5, "A Simple Text String", $text_color); imagepng($im); imagedestroy($im);
以上示例输出: -