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中文网其他相关文章!