当前位置 : 主页 > 网络编程 > PHP >

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

来源:互联网 收集:自由互联 发布时间:2023-11-13
例子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 =
例子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()函数水平绘制文本字符串图像?

上一篇:如何使用 PHP 开发一个简单的 API 接口
下一篇:没有了
网友评论