php简单图像创建入门实例

yipeiwu_com6年前PHP代码库

本文实例讲述了php简单图像创建方法。分享给大家供大家参考。具体实现方法如下:

<?php 
$image = imagecreatetruecolor(200,100); 
$text_color = imagecolorallocate($image,255,255,255); 
imagestring($image,5,0,0,"Hello World!",$text_color); 
imagepng($image); 
imagedestroy($image); 
?>

运行后显示如下:

希望本文所述对大家的php程序设计有所帮助。

相关文章

PHP计数器的实现代码

复制代码 代码如下:<?php/*使用文本文件记录数据的简单实现*/$counter=1;if(file_exists("mycounter.txt")){$fp=fopen("m...

PHP array 的加法操作代码

The + operator appends elements of remaining keys from the right handed array to the left han...

PHP5.5安装PHPRedis扩展及连接测试方法

本文实例讲述了PHP5.5安装PHPRedis扩展及连接测试方法。分享给大家供大家参考,具体如下: phpredis是个人觉得最好的一个php-redis客户端,因为其提供的functi...

PHP中Notice错误常见解决方法

对于初学者,肯定会遇到不同的错误提示,比如:警告,致命,等等,其中NOTICE错误等级最低,页面中,好多类似 Notice: Use of undefined constant titl...

从php核心代码分析require和include的区别

从php核心代码分析require和include的区别

深入理解PHP之require/include顺序 https://www.jb51.net/article/25867.htm普及在php手册中: require() is ide...