我想将图像转换为Base64并放入我的数据库。 我知道如何将图像编码为Base64,但我不知道如何使用用户的文件。
因此,用户可以&#34;上传&#34; <input type="file" />
的文件
但是,如何在不下载文件的情况下处理该文件并将其存储在我的服务器上?
所以我实际上将该文件编码在用户他/她的计算机上
由于
答案 0 :(得分:0)
BLOB数据类型最适合存储文件。
如果您不想将文件保存到数据库,只需阅读它,请使用:
<form method="post" enctype="multipart/form-data">
<table width="350" border="0" cellpadding="1" cellspacing="1" class="box">
<tr>
<td width="246">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000">
<input name="userfile" type="file" id="userfile">
</td>
<td width="80"><input name="upload" type="submit" class="box" id="upload" value=" Upload "></td>
</tr>
</table>
</form>
<?php
if(isset($_POST['upload']) && $_FILES['userfile']['size'] > 0)
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];
$fp = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);
$ content这里有文件内容
答案 1 :(得分:0)
要将图像编码为base64,您可以使用file_get_contents读取图像文件:
$imageBinaryString = file_get_contents('/image/file/path.png');
http://us1.php.net/file_get_contents
然后base64编码:
$base64_imageString = base64_encode($imageBinaryString);
然后,您可以在数据库中存储类型为text或varchar。
的列答案 2 :(得分:0)
<input type="file" name="icon" />
现在尝试使用以下代码。
$base = $_REQUEST['icon'];
$binary = base64_decode($base);
header('Content-Type: bitmap; charset=utf-8');
$file = fopen('upload/imagename.png', 'wb');
$imagename = 'path_to_image_/images.png';
fwrite($file, $binary);
fclose($file);