imagecreate()函数是PHP中的内置函数,用于创建新图像。此函数返回给定尺寸的空白图像。通常,使用imagecreatetruecolor()函数代替imagecreate()函数,因为imagecreatetruecolor()函数可创建高质量的图像。
用法:
imagecreate( $width, $height )
参数:该函数接受上述和以下描述的两个参数:
- $width:它是必填参数,用于指定图像宽度。
- $height:它是必填参数,用于指定图像高度。
返回值:成功时此函数返回图像资源标识符,错误时返回FALSE。
以下示例程序旨在说明PHP中的imagecreate()函数:
程序1:
<?php
// Create the size of image or blank image
$image = imagecreate(500, 300);
// Set the background color of image
$background_color = imagecolorallocate($image, 0, 153, 0);
// Set the text color of image
$text_color = imagecolorallocate($image, 255, 255, 255);
// Function to create image which contains string.
imagestring($image, 5, 180, 100, "GeeksforGeeks", $text_color);
imagestring($image, 3, 160, 120, "A computer science portal", $text_color);
header("Content-Type: image/png");
imagepng($image);
imagedestroy($image);
?>
输出:
程序2:
<?php
// Create the size of image or blank image
$image = imagecreate(500, 300);
// Set the vertices of polygon
$values = array(
50, 50, // Point 1 (x, y)
50, 250, // Point 2 (x, y)
250, 50, // Point 3 (x, y)
250, 250 // Point 3 (x, y)
);
// Set the background color of image
$background_color = imagecolorallocate($image, 0, 153, 0);
// Fill background with above selected color
imagefill($image, 0, 0, $background_color);
// Allocate a color for the polygon
$image_color = imagecolorallocate($image, 255, 255, 255);
// Draw the polygon
imagepolygon($image, $values, 4, $image_color);
// Output the picture to the browser
header('Content-type: image/png');
imagepng($image);
?>
输出:
相关文章:
参考: http://php.net/manual/en/function.imagecreate.php
相关用法
- d3.js d3.map.has()用法及代码示例
- PHP pow( )用法及代码示例
- PHP each()用法及代码示例
- PHP next()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- p5.js sq()用法及代码示例
- CSS var()用法及代码示例
- p5.js sin()用法及代码示例
- PHP pi( )用法及代码示例
- p5.js hex()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecreate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。