25

我有这个数据库,其中包含图像作为字符串。这些字符串看起来像这样:

data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD...

我需要创建一个显示此图像的链接。就像something.com/?id=27是一个图像。所有图像均为 jpeg 格式。这是我尝试过但没有奏效的方法:

<?php
  $host = "smth";
  $user = "smth";
  $pass = "smth";
  $db_name = "smth";
  $dbh = new PDO("mysql:host=$host;dbname=$db_name", $user, $pass);
  $dbh->exec("SET NAMES utf8");
  $q = $dbh->prepare("select content from img where id = :id");
  $q->execute(array(':id'=>$_GET['id']));
  $row = $q->fetch(PDO::FETCH_BOTH);
  header("Content-type: image/jpeg");
  echo $row['content'];
?>

正在正确获取数据,但未显示图像。

我需要能够像这样使用这个链接<img src="mysite.com?id=21" />,我不想要这个解决方案:<img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABA..." />

谢谢!

4

6 回答 6

44

您的问题的解决方案在这里:

如何在 PHP / HTML 中将 base64 字符串 (gif) 解码为图像

引用该来源但修改:

如果您去掉第一种情况并选择解码字符串,您应该在回显解码的图像数据之前添加它:

header("Content-type: image/gif");
$data = "/9j/4AAQSkZJRgABAQEAYABgAAD........";
echo base64_decode($data);

在第二种情况下,请改用:

echo '<img src="data:image/gif;base64,' . $data . '" />';

第二种情况很糟糕,因为如果同一图像显示在多个页面上,浏览器不会执行缓存。

于 2013-04-28T11:04:15.897 回答
10

用这个:

$code_base64 = $row['content'];
$code_base64 = str_replace('data:image/jpeg;base64,','',$code_base64);
$code_binary = base64_decode($code_base64);
$image= imagecreatefromstring($code_binary);
header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
于 2013-04-28T11:04:49.773 回答
6

尝试这个

//your image data

$logodata = "/9j/4AAQSkZJRgABAQEAYABgAAD........";
echo '<img src="data:image/gif;base64,' . $logodata . '" />';
于 2014-04-12T16:38:54.470 回答
2

尝试这个:

echo '<img src="data:image/png;base64,' . $base64encodedString . '" />
于 2017-10-12T08:52:50.547 回答
2
/**
* @param $base64_image_content 
* @param $path 
* @return bool|string
*/
function base64_image_content($base64_image_content,$path){
  if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)){
    $type = $result[2];
    $new_file = $path."/".date('Ymd',time())."/";
    $basePutUrl = C('UPLOAD_IMG_BASE64_URL').$new_file;

    if(!file_exists($basePutUrl)){
        //Check if there is a folder, if not, create it and grant the highest authority.
       mkdir($basePutUrl, 0700);
    }
       $ping_url = genRandomString(8).time().".{$type}";
       $ftp_image_upload_url = $new_file.$ping_url;
       $local_file_url = $basePutUrl.$ping_url;

   if (file_put_contents($local_file_url, base64_decode(str_replace($result[1], '', $base64_image_content)))){
     ftp_upload(C('REMOTE_ROOT').$ftp_image_upload_url,$local_file_url);
         return $ftp_image_upload_url;
    }else{
         return false;
    }
  }else{
     return false;
 }
}
于 2018-04-24T12:58:27.407 回答
1

如果您正在处理存储在 PostgreSQL 数据库bytea字段中的数据,您将在获取 PDO 时收到一个流。要进一步处理数据,首先将流转换为通常的数据,如下所示:$stream = $row['content']; rewind($stream); $data=stream_get_contents($stream);

于 2020-05-31T09:23:35.087 回答