php如何新增圖片? php中插入圖片的程式碼是什麼?
PHP插入圖片,實際上還是輸出HTML程式碼
例如:
echo '<img src='1.gir' width="100" height="100">';
還可以直接用PHP產生圖片顯示出來
php的gd庫可以產生多種圖像文件,如gif,png,jpg,wbmp,xpm等,下面來看一個產生正方形的文件。
<?php $height = 300; $width = 300; //创建背景图 $im = ImageCreateTrueColor($width, $height); //分配颜色 $white = ImageColorAllocate ($im, 255, 255, 255); $blue = ImageColorAllocate ($im, 0, 0, 64); //绘制颜色至图像中 ImageFill($im, 0, 0, $blue); //绘制字符串:Hello,PHP ImageString($im, 10, 100, 120, 'Hello,PHP', $white); //输出图像,定义头 Header ('Content-type: image/png'); //将图像发送至浏览器 ImagePng($im); //清除资源 ImageDestroy($im); ?>
推薦:《PHP教學》
以上是php如何添加圖片的詳細內容。更多資訊請關注PHP中文網其他相關文章!