如何从数据库中显示图像?

时间:2012-08-26 15:29:22

标签: php mysql

图像无法从php中的数据库中显示,而且发生了这样的错误。 当我执行此代码时出现此类错误图像无法显示因为它包含错误。图像存储在mysql数据库中,字段类型为BLOB。 IT没有找到任何解决方案来避免此错误。

<?php
require_once('database/db.class.php');
$objDatabase=new db_class();
$objDatabase->connect();
$sql="SELECT id,firstname,lastname,sex,email,userimage,ext,city,state,username FROM t_users WHERE username='".$_SESSION['username']."'";
$totalRow=$objDatabase->select($sql);
if($row=$objDatabase->get_row($totalRow, 'MYSQL_BOTH'))
    {
        $userArray=array('id'=>$row['id'],'firstname'=>$row['firstname'],'lastname'=>$row['lastname'],'sex'=>$row['sex'],'email'=>$row['email'],'userimage'=>$row['userimage'],'ext'=>$row['ext'],'city'=>$row['city'],'state'=>$row['state'],'username'=>$row['username']);
    }

?>


  <table cellspacing="10px" width="100%">
  <tr>
  <td width="23%" style="vertical-align:top">
  <?php
    header("Content-type: image/{$userArray['ext']}");
    header("Content-Length: " . strlen($userArray['userimage']));
    echo  $userArray['userimage'];
  ?>
 </td>
</tr>
</table>

上传图片代码

@list(, , $imtype, ) = getimagesize($_FILES['photo']['tmp_name']);
    // Get image type.
    // We use @ to omit errors

if ($imtype == 3) // cheking image type
$ext="png";   // to use it later in HTTP headers
elseif ($imtype == 2)
$ext="jpeg";
elseif ($imtype == 1)
    $ext="gif";
else
$msg = 'Error: unknown file format';

   $img = file_get_contents($_FILES['photo']['tmp_name']);
$img = mysql_real_escape_string($img);
        // Preparing data to be used in MySQL query

$data=array('firstname'=>$_REQUEST['firstname'],'lastname'=>$_REQUEST['lastname'],'sex'=>$_REQUEST['gender'],'email'=>$_REQUEST['email'],'userimage'=>$img,'ext'=>$ext,'city'=>$_REQUEST['city'],'state'=>$_REQUEST['state'],'zipcode'=>$_REQUEST['zipcode'],'username'=>$_REQUEST['usernameText'],'password'=>$_REQUEST['passwordText']);
$result=$objDatabase->insert_array('t_users',$data);    


 <input name="photo" type="file" id="photo">

2 个答案:

答案 0 :(得分:1)

嗯,这不是方法,只需按常规存储图像,然后将路径存储在数据库中。

如果你想这样做,你需要创建一个名为image.php的新文件,然后放

<?php

require_once('database/db.class.php');

$objDatabase=new db_class();
$objDatabase->connect();
$sql="SELECT id,firstname,lastname,sex,email,userimage,ext,city,state,username FROM t_users WHERE username='".$_SESSION['username']."'";
$totalRow=$objDatabase->select($sql);

if($row=$objDatabase->get_row($totalRow, 'MYSQL_BOTH'))
{
    $userArray=array('id'=>$row['id'],'firstname'=>$row['firstname'],'lastname'=>$row['lastname'],'sex'=>$row['sex'],'email'=>$row['email'],'userimage'=>$row['userimage'],'ext'=>$row['ext'],'city'=>$row['city'],'state'=>$row['state'],'username'=>$row['username']);
}

header("Content-type: image/{$userArray['ext']}");
header("Content-Length: " . strlen($userArray['userimage']));
echo  $userArray['userimage'];
?>

进入该文件。

然后在表中使用

<img src='/image.php ?>' alt='' />

但不要,只是通过在DB中存储路径来实现,很少你应该将二进制数据存储在不是文件系统的数据库中,原因我不会在这里进行。

答案 1 :(得分:1)

编辑 - 我忘了包含:base64文件会比BLOB大得多。


尝试将其保存为base64而不是BLOB。

这是我在http://www.php.net/manual/en/function.base64-encode.php

上找到的功能
function base64_encode_image ($filename=string,$filetype=string) {
    if ($filename) {
        $imgbinary = fread(fopen($filename, "r"), filesize($filename));
        return 'data:image/' . $filetype . ';base64,' . base64_encode($imgbinary);
    }
}

当您从数据库中检索图像时,它将作为base64字符串,您可以将字符串直接放入HTML中的src =“”属性(无需解码)。浏览器可以解析base64并显示图像。