通过php连接数据库后,无法显示存储在MySQL数据库中的图像

时间:2012-03-12 13:12:28

标签: php mysql gd php-gd

我是一个完整的新手,刚开始使用PHP和MySQL数据库中的图像。这是问题所在:

图像正在BLOB字段中成功存储在数据库表中。我可以在文件(new.jpg)中写出并显示图像。现在这里是twsiter - 我创建的imagedisplay.php文件,用于在网页上显示图像,可以从文件夹目录中读取new.jpg文件。但是只要我连接到数据库直接从数据库中获取图像数据(这样我就不必在代码中包含new.jpg),它就会开始显示错误“图像包含错误..... “

用于上传图片的代码是

<?php
require_once 'login.php';  //contains the classes for connecting to databases
$dbh=new DB_Mysql;         //executing queries  
$func=new DB_Mysql_code_functions;

session_start();
if(isset($_SESSION['username']))
{
    echo<<<_END
    <form method="post" action="admin_social_activities.php" enctype="multipart/form-data">
    <table width="990">
    <tbody>
    <tr><td>Select an image file to be uploaded:</td></tr>
    <tr><td><input type="submit" value="UPLOAD" /></td></tr>
    </tbody>
    </table>
    </form>
_END;

    if(isset($_FILES['imagefile']['tmp_name']))
    {   
        $imagefile=$_FILES['imagefile']['tmp_name'];
        $image_size=$_FILES['imagefile']['size'];
        $image_name=addslashes($_FILES['imagefile']['name']);
        $image_data = addslashes(file_get_contents($imagefile));

        $image_array=getimagesize($imagefile);
        $image_type=$image_array['mime'];
        $image_height=$image_array[1];
        $image_width=$image_array[0];

        $maxfilesize=2000000;

        if($maxfilesize<$image_size)
        {
            echo "Please upload a smaller image. The size of the image is too   large.";
        }
        else
        {

            $query="INSERT INTO allery(image_name,image_type,image,image_size)  VALUES ('".$image_name."','".$image_type."','".$image_data."','".$image_size."')";
            $stmt=$dbh->execute($query);
            $lastimageid=mysql_insert_id();
            $query="select * from gallery where mage_id=".$lastimageid;
            $stmt=$dbh->execute($query);
            $row=$stmt->fetch_row();
            if(file_exists("new.jpg"))
            unlink("new.jpg");
            $handle=fopen("new.jpg",'wb');
            fwrite($handle,$row[3]);
            fclose($handle);

            echo "<p>You uploaded this image</p><img src='imagedisplay.php'     height=".($image_height/2)." width=".($image_width/2).">";
        }
    }
}

并且imagedisplay.php文件的当前代码如下所示,它显示图像正常:

<?php
header("Content-type: image/jpeg");
$image=imagecreatefromjpeg("new.jpg");
imagejpeg($image);
imagedestroy($image);
?>

只要在imagedisplay.php

中包含连接查询,它就会停止显示图像
<?php
require_once 'login.php';
$dbh= new DB_Mysql();
$func=new DB_Mysql_code_functions;

header("Content-type: image/jpeg");
$image=imagecreatefromjpeg("new.jpg");
imagejpeg($image);
imagedestroy($image);
?>

自从几天以来我一直坚持这个......请帮助..


好的......所以我改变了我的方法......我现在将image_id传递给查询字符串,然后包含imagedisplay.php图片标记: 请注意,由于某些格式化问题,我无法在此处编写代码的头部。 head部分是在Dreamweaver中预格式化的标准html部分。

<body>
<div class="page shadow-round">


<div id="header">
<div id="logo">
<script type="text/javascript" src="../js/header.js"></script>
</div>
</div>
<div id="menu">
<script type="text/javascript" src="../js/navmenu.js"></script>
<script type="text/javascript">
</script>
</div>


<div class="content overflow" style="height:900px;">

<?php
require_once 'login.php';  //contains the classes for connecting to databases
$dbh=new DB_Mysql;         //executing queries  
$func=new DB_Mysql_code_functions;

session_start();
if(isset($_SESSION['username']))
{
    echo<<<_END
    <form method="post" action="admin_social_activities.php" enctype="multipart/form-data">
    <table width="990">
    <tbody>
    <tr><td>Select an image file to be uploaded:</td></tr>
    <tr><td><input type="submit" value="UPLOAD" /></td></tr>
    </tbody>
    </table>
    </form>
_END;

    if(isset($_FILES['imagefile']['tmp_name']))
    {   
        $imagefile=$_FILES['imagefile']['tmp_name'];
        $image_size=$_FILES['imagefile']['size'];
        $image_name=addslashes($_FILES['imagefile']['name']);
        $image_data = addslashes(file_get_contents($imagefile));

        $image_array=getimagesize($imagefile);
        $image_type=$image_array['mime'];
        $image_height=$image_array[1];
        $image_width=$image_array[0];

        $maxfilesize=2000000;

        if($maxfilesize<$image_size)
        {
            echo "Please upload a smaller image. The size of the image is too   large.";
        }
        else
        {

            $query="INSERT INTO gallery(image_name,image_type,image,image_size)  VALUES ('".$image_name."','".$image_type."','".$image_data."','".$image_size."')";
            $stmt=$dbh->execute($query);
            $lastimageid=mysql_insert_id();
        echo "<p>You uploaded this image</p>";
        echo "<img src='imagedisplay.php?imageid=".$lastimageid."' />";
        }
    }
}
else

echo "<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Your are <span class=\"red\"><b>not Authorized</b></span> to view this page. If you are the Admin, please login with your credentials again. <a href='login_page.php'>Click here to continue</a>";


?>
</div>
</body>
</html>

现在的问题是控件永远不会进入imagedisplay.php即。它无法完全引用imagedisplay.php。

imagedisplay.php的代码如下:

<?php
require_once 'login.php';
$dbh= new DB_Mysql();
$func=new DB_Mysql_code_functions;
$id=$_GET['imageid'];
$query="SELECT * FROM gallery where image_id=".$id;

$stmt=$dbh->execute($query);
$row=$stmt->fetch_row();
$imagedata=$row[3];
header("Content-type:image/jpeg");
echo $imagedata;
?>

我已尝试使用引号的所有排列组合,尝试使用echo语句来查看控件是否进入文件....但它没有...它只保留在主文件中...我不明白原因。 ..请帮助...

1 个答案:

答案 0 :(得分:1)

您的查询中有一些错误(“allery”,“mage_id”)。

$query="INSERT INTO allery(image_name,image_type,image,image_size)  VALUES ('".$image_name."','".$image_type."','".$image_data."','".$image_size."')";
...
$query="select * from gallery where mage_id=".$lastimageid;

如果您在imagedisplay.php中的代码中的任何位置出现错误,它们将被输出并最终出现在图像数据中,从而破坏它。如果删除imagejpeg()并且不发送图像标题,请查看imagedisplay.php输出的内容。这将为您提供必要的信息。