您好,欢迎访问一九零五行业门户网

如何使用PHP中的imagestring()函数水平绘制文本字符串图像?

imagestring() 是 php 中的一个内置函数,用于水平绘制字符串。
syntaxbool imagestring($image, $font, $x, $y, $string, $color)
parametersimagestring() accepts six different parameters − $image, $font, $x, $y, $string, and $color.
$image − the $image parameter uses imagecreatetruecolor() function to create a blank在给定的大小中的图像。
$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);?>
输出
以上就是如何使用php中的imagestring()函数水平绘制文本字符串图像?的详细内容。
其它类似信息

推荐信息