⑴ html 中如何用php输出图片
把图片地址用php代码来代替就可以了。比如原本图片地址是<img src="images/1.jpg" />,数据库保存的是images/1.jpg,字段名是”images“。那么这边就改成<img src="<?php $row=['images']?>" />。
⑵ 关于php网页动态图表输出要如何实现
恩,用jpgraph是非常简单的。
你先把温度数据存入数组,然后jpgraph调用数组数据折线图就能出来了。
⑶ php中怎么输出图片
<divclass="flexslider">
<ulclass="slides">
<?php
if($info->tupian==""){
echo"暂无图片";
}
else
{
echo"<lidata-thumb='".$info->tupian."'><divclass='thumb-image'><imgsrc='".$info->tupian."'data-imagezoom='true'class='mg-responsive'></div></li>";
}
?>
</ul>
</div>
⑷ php 输出图片报错为什么
echo $rand 是你自己加的吧,php每句话结束要加分号
另外 ,验证码一般要存在session里,以便提交回来的数据验证
把echo $rand那行改成下面这样
session_start();
$_SESSION['verify_code']=$rand;
另外 ,文件结尾可以不要 ?> 以防结尾后面有空格啥的影响图片输出。
这样在你表单提交回来的页面就可以用
if($_POST['verify']!=$_SESSION['verify_code']){
echo'验证码错误';
exit;
}
来做验证
⑸ php文件可以输出图片却无法显示出来!
经测试2种方式都可以正确显示,据估计,你的第2种方式不能正常显示的原因在于:
你在第2种方式里,除了 img 输出外,还有其它输出。
请参看下面的示例代码:
<?php
//创建新的图像实例
$im=imagecreatetruecolor(100,100);
//设置背景为白色
imagefilledrectangle($im,0,0,99,99,0xFFFFFF);
//在图像上写字
imagestring($im,3,40,20,'GDLibrary',0xFFBA00);
//echo"这一行如果加上就不能正常显示下面的图像了。<br/>";
//输出图像到浏览器
header('Content-Type:image/gif');
imagegif($im);
imagedestroy($im);
?>
为什么第 2 种方式,不能在header前面有内容,究其原因,请参看以下说明:
header()必须在任何实际输出之前调用,不管是普通的html标签,还是文件里面的空行、空格或者是PHP文件里的空行、空格。
简单一句话:在header()被调用之前有输出就会出错。
⑹ php输出图片
这是我做的,php+mysql,根据数据库中的数据动态输出图片
$cn=mysql_connect('localhost','root','');
$strsql="select * from zuobiao";
$result=mysql_db_query("caipiao",$strsql,$cn);
while($arr=mysql_fetch_array($result)){
$linex1=$arr[x10];
$linex2=$arr[x9];
$linex3=$arr[x8];
$linex4=$arr[x7];
$linex5=$arr[x6];
$linex6=$arr[x5];
$linex7=$arr[x4];
$linex8=$arr[x3];
$linex9=$arr[x2];
$linex10=$arr[x1];
$liney1=$arr[y10];
$liney2=$arr[y9];
$liney3=$arr[y8];
$liney4=$arr[y7];
$liney5=$arr[y6];
$liney6=$arr[y5];
$liney7=$arr[y4];
$liney8=$arr[y3];
$liney9=$arr[y2];
$liney10=$arr[y1];
}
mysql_close($cn);
header("content-type:image/png");//设定生成图片格式
$im=@imagecreate(130,316);//创建一个图片实例,大小为130*316
$background_color = imagecolorallocate ($im, 211, 255, 242);//背景颜色
$red=imagecolorallocate($im,255,0,0); //设定$red为红色
$blue=imagecolorallocate($im,0,0,150);//设定$blue为蓝色
imageline($im,$linex1,$liney1,$linex2,$liney2,$red);
imageline($im,$linex2,$liney2,$linex3,$liney3,$red);
imageline($im,$linex3,$liney3,$linex4,$liney4,$red);
imageline($im,$linex4,$liney4,$linex5,$liney5,$red);
imageline($im,$linex5,$liney5,$linex6,$liney6,$red);
imageline($im,$linex6,$liney6,$linex7,$liney7,$red);
imageline($im,$linex7,$liney7,$linex8,$liney8,$red);
imageline($im,$linex8,$liney8,$linex9,$liney9,$red);
imageline($im,$linex9,$liney9,$linex10,$liney10,$red);
imageline($im,$linex10,$liney10,$linex11,$liney11,$red);
imageline($im,$linex11,$liney11,$linex12,$liney12,$red);
imageline($im,$linex12,$liney12,$linex13,$liney13,$red);
imageline($im,$linex13,$liney13,$linex14,$liney14,$red);
imageline($im,$linex14,$liney14,$linex15,$liney15,$red);
imagepng($im,'pic/abc.png');//生成png图片
imagedestroy($im);//注销$im
⑺ php怎么输出图片
echo "<img src="a.jpg">";类似这样的。
⑻ PHP代码输出图片的问题
应该是这样写
<?php
echo "<center>"; //居中开始标签
echo "<img src='./logo.jpg' />"; //当前目录下的这一张图片
echo "</center>"; //居中结束标签
?>
⑼ php 读取图片并输出
<?php
header('Content-Type:image/png');
$url="http://hbyw.e21.e.cn/global/gd.php";//图片链接
$ch=curl_init();
//Cookie:PHPSESSID=
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_COOKIE,'PHPSESSID=');//如果不需要cookies就删除这条语句
curl_setopt($ch,CURLOPT_RETURNTRANSFER,0);
curl_setopt($ch,CURLOPT_TIMEOUT,0);//忽略超时
curl_setopt($ch,CURLOPT_NOBODY,false);
$str=curl_exec($ch);
curl_close($ch);