imagecreatetruecolor
imagecreatetruecolor
(PHP 4 >= 4.0.6, PHP 5, PHP 7)
imagecreatetruecolor - 创建一个新的真彩色图像
描述
resource imagecreatetruecolor ( int $width , int $height )
imagecreatetruecolor()
返回一个图像标识符,表示指定大小的黑色图像。
参数
width
图像宽度。
height
图像高度。
返回值
成功时返回图像资源标识符,FALSE
错误。
示例
示例#1创建一个新的 GD 图像流并输出图像。
<?php
header ('Content-Type: image/png'
$im = @imagecreatetruecolor(120, 20)
or die('Cannot Initialize new GD image stream'
$text_color = imagecolorallocate($im, 233, 14, 91
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color
imagepng($im
imagedestroy($im
?>
上面的例子会输出类似于:
也可以看看
- imagedestroy() - 销毁图像
- imagecreate() - 创建一个新的基于调色板的图像
← imagecreatefromxpm
imagecrop →