PHP imagecreate() 函数可以用来创建一个基于调色板的图像,其语法如下:
resource imagecreate ( int $x_size , int $y_size )
imagecreate() 返回一个图像标识符,代表了一幅大小为 x_size 和 y_size 的空白图像。
下面的示例演示如何用 imagecreate() 创建一个空白的画布并输出一个 PNG 格式的图片。代码如下:
<?php header("Content-type: image/png"); //设置mime类型 $im = @imagecreate(100, 50) or die("Cannot Initialize new GD image stream"); $background_color = imagecolorallocate($im, 255, 255, 0); //定义颜色 imagepng($im); //输出png格式图像 imagedestroy($im); //销毁图像资源, 释放内存 ?>
执行以上代码,在浏览器中的显示结果如图所示。
也可以使用 imagecreatetruecolor() 创建画布资源。语法如下:
resource imagecreatetruecolor ( int $width , int $height )
和 imagecreate 一样都是返回一个图像画布资源。
以下实例演示如何用 imagecreatetruecolor() 创建画布,代码如下:
<?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); imagepng($im); imagedestroy($im); ?>
执行以上代码,在浏览器中的显示结果如图所示。
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/23398.html