我正在尝试使用PHP在HTML表格中显示mysql数据库中的图像。当我将图像作为BLOB存储在DB中时,我使用以下base64函数将它们从二进制转换并正确显示它们:
$enc=base64_encode($image);
$dec=base64_decode($enc);
echo $dec;
以下是整个PHP代码:
<?php
// Konexio lokala sortu
$sql = mysql_connect('localhost', 'root', '') or die(mysql_error());
// Konexioa lokala egiaztatu
mysql_select_db("quiz") or die(mysql_error());
$sql="SELECT * FROM `Erabiltzaile`";
$records = mysql_query($sql);
if (! $records)
{
die('Errorea: ' . mysql_error());
}
mysql_close();
?>
<html>
<head>
<title>Erabiltzaileak</title>
</head>
<body>
<table width="800" border="1" cellpadding="1" cellspacing="1">
<tr>
<th>Izena</th>
<th>E-posta</th>
<th>Pasahitza</th>
<th>Telefonoa</th>
<th>Espezialitatea</th>
<th>Interesak</th>
<th>Argazkia</th>
<tr>
<?php
while($erabiltzaile=mysql_fetch_assoc($records)) {
echo "<td>".$erabiltzaile['Izena']."</td>";
echo "<td>".$erabiltzaile['Eposta']."</td>";
echo "<td>".$erabiltzaile['Pasahitza']."</td>";
echo "<td>".$erabiltzaile['Telefonoa']."</td>";
echo "<td>".$erabiltzaile['Espezialitatea']."</td>";
echo "<td>".$erabiltzaile['Interesak']."</td>";
$image = $erabiltzaile['Argazkia'];
echo "<td>";
$enc=base64_encode($image);
$dec=base64_decode($enc);
echo $dec;
echo "</td>";
echo "</tr>";
}
?>
</table>
</body>
这是我的第一个问题,希望问题的格式是好的。对不起巴斯克语中的单词(Argazkia表示图片)。
答案 0 :(得分:3)
将data:
URI中的base64代码放在<img>
标记中:
$type = getimagesizefromstring($image);
$enc = base64_encode($image);
echo "<td>";
echo "<img src='data:" . $type['mime'] . "';base64," . $enc . "'>";
echo "</td>";
getimagesizefromstring
在PHP 5.4及更高版本中可用。如果您使用的是旧版本,则可以找到填充here。
答案 1 :(得分:1)
我终于使用了它:
$enc = base64_encode($image);
echo "<td>";
echo '<img src="data:image/;base64,' . $enc . '"/>';
echo "</td>";
没有$type = getimagesize($image);
感谢所有评论和Barmar的答案! :)