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

王林
发布: 2023-09-05 09:33:04
转载
1695人浏览过

imagestring()php 中的一个内置函数,用于水平绘制字符串。

Syntax

bool imagestring($image, $font, $x, $y, $string, $color)
登录后复制

Parameters

imagestring() 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轴上的位置,顶部。

    立即学习PHP免费学习笔记(深入)”;

  • $string - $string参数保存要写入的字符串。

    MagicStudio
    MagicStudio

    图片处理必备效率神器!为你的图片提供神奇魔法

    MagicStudio 102
    查看详情 MagicStudio
  • $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);
?>
登录后复制

输出

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

例子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中的imagestring()函数水平绘制文本字符串图像?的详细内容,更多请关注php中文网其它相关文章!

相关标签:
php
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:tutorialspoint网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号