1

图像无法从 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">
4

2 回答 2

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='' />

但是不要,只需将路径存储在数据库中即可,您很少将二进制数据存储在不是文件系统的数据库中,原因我不会在这里讨论。

于 2012-08-26T15:42:36.597 回答
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 并显示图像。

于 2012-08-26T15:43:19.470 回答