《PHP學(xué)習(xí):php簡(jiǎn)單圖像創(chuàng)建入門(mén)實(shí)例》要點(diǎn):
本文介紹了PHP學(xué)習(xí):php簡(jiǎn)單圖像創(chuàng)建入門(mén)實(shí)例,希望對(duì)您有用。如果有疑問(wèn),可以聯(lián)系我們。
PHP編程本文實(shí)例講述了php簡(jiǎn)單圖像創(chuàng)建辦法.分享給大家供大家參考.具體實(shí)現(xiàn)辦法如下:
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編程運(yùn)行后顯示如下:
PHP編程
PHP編程希望本文所述對(duì)大家的php程序設(shè)計(jì)有所贊助.
維易PHP培訓(xùn)學(xué)院每天發(fā)布《PHP學(xué)習(xí):php簡(jiǎn)單圖像創(chuàng)建入門(mén)實(shí)例》等實(shí)戰(zhàn)技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養(yǎng)人才。
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.snjht.com/jiaocheng/10363.html