Home  >  Article  >  Backend Development  >  php简单图像创建入门实例_php技巧

php简单图像创建入门实例_php技巧

WBOY
WBOYOriginal
2016-05-16 20:14:07931browse

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

<&#63;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); 
&#63;>

运行后显示如下:

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn