如何使用PHP中的imagestring()函数水平绘制文本字符串图像?
imagestring()是PHP中的一个内置函数,用于水平绘制字符串。
语法
bool imagestring($image, $font, $x, $y, $string, $color)
参数
imagestring() 接受六个不同的参数:$image,$font,$x,$y,$string和$color。
$image − $image参数使用imagecreatetruecolor()函数创建指定大小的空白图像。
$font − $font参数用于设置内置字体的字体大小值,取值范围为1、2、3、4和5。
$x − 保持字体在水平X轴上的位置,左上角。
$y − 保持字体在垂直Y轴上的位置,顶端。
$string − $string参数保存要写入的字符串。
$color − 此参数保存图像的颜色。
返回值
imagestring() 成功时返回True,失败时返回False。
示例1
<?php // Create the size and image by using imagecreate() function. $img = imagecreate(700, 300); // Set the background color of the image $background_color = imagecolorallocate($img, 0, 0, 255); // Set the text color of the image $text_color = imagecolorallocate($img, 255, 255, 255); // Function to create an image that contains the string. imagestring($img, 50, 180, 150, "Tutorialspoint", $text_color); imagestring($img, 30, 160, 120, "Simply Easy Learning", $text_color); header("Content-Type: image/png"); imagepng($img); imagedestroy($img); ?>
输出
示例2
<?php // Create the size of the image or blank image $img = imagecreate(700, 300); // Set the background color of the image $background_color = imagecolorallocate($img, 122, 122, 122); // Set the text color of the image $text_color = imagecolorallocate($img, 255, 255, 0); // Function to create an image that contains a string. imagestring($img, 10, 30, 60,"Tutorialspoint:Simply Easy Learning", $text_color); header("Content-Type: image/png"); imagepng($img); imagedestroy($img); ?>
输出
广告