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)
?>
有2种方式:
<embed src='音频地址' loop="false" width="长" height="宽" autostart="false" style="float: right"> //指向右浮动
<p style="position: relative">
<embed src='音频地址' loop="false" width="长" height="宽" autostart="明仔歼歼false"
style='激改汪position:absolutetop:0pxright: 0px'>
</p> //这种是固定在右边的格式
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)