如何将图像转换为base64编码?


289

您能否指导我如何将图像从URL转换为base64编码?


3
您想做什么?
Pekka 2010年

7
将其嵌入到Img标签的src属性中
Volatil3,2010年

5
这是一个旧线程,但是出于完整性考虑:编码图像,尤其是较小的图像(小于1k)以便在CSS中使用是很有意义的。这样,您可以保存一个请求,由于开销,该请求将花费更长的时间,甚至可能更大。
arminrosu 2012年

Answers:


571

我认为应该是:

$path = 'myfolder/myimage.png';
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);

10
这取决于您需要的图像。如果它是内联URL,这就是方法。它与仅base64编码不同。
Pekka

绝佳的提示,现在我将创建一个用于编辑文件上传功能或还原move_uploaded_file()的功能,谢谢
Vinicius De Jesus

121

简单:

$imagedata = file_get_contents("/path/to/image.jpg");
             // alternatively specify an URL, if PHP settings allow
$base64 = base64_encode($imagedata);

请记住,这会将数据扩大33%,并且文件大小超过的文件会出现问题memory_limit


1
@anna确实如此!Base64编码通常可以做到这一点。
佩卡

38

也使用这种方式以base64编码格式表示图像...找到PHP函数file_get_content,然后使用函数base64_encode

并获得结果以准备str为data:" . file_mime_type . " base64_encoded string。在img src属性中使用它。请参阅以下代码,我可以为您提供帮助。

// A few settings
$img_file = 'raju.jpg';

// Read image path, convert to base64 encoding
$imgData = base64_encode(file_get_contents($img_file));

// Format the image SRC:  data:{mime};base64,{data};
$src = 'data: '.mime_content_type($img_file).';base64,'.$imgData;

// Echo out a sample image
echo '<img src="'.$src.'">';

1
如果找不到函数mime_content_type,只需从svogal中从php.net/manual/en/function.mime-content-type.php
mario

15

万一您(出于某种原因)无法使用curlnor file_get_contents,可以解决以下问题:

$img = imagecreatefrompng('...');
ob_start();
imagepng($img);
$bin = ob_get_clean();
$b64 = base64_encode($bin);

10
<img src="data:image/png;base64,<?php echo base64_encode(file_get_contents("IMAGE URL HERE")) ?>">

我试图使用此资源,但一直出现错误,我发现上面的代码运行完美。

只是将IMAGE URL HERE替换为图像的URL- http://www.website.com/image.jpg


6

非常简单,常用:

function getDataURI($imagePath) {
    $finfo = new finfo(FILEINFO_MIME_TYPE);
    $type = $finfo->file($imagePath);
    return 'data:'.$type.';base64,'.base64_encode(file_get_contents($imagePath));
}

//Use the above function like below:
echo '<img src="'.getDataURI('./images/my-file.svg').'" alt="">';
echo '<img src="'.getDataURI('./images/my-file.png').'" alt="">';

注意:文件的Mime-Type将被自动添加(从此PHP文档获得帮助)。


3

这是用于编码并保存到MySQL的上传代码

if (!isset($_GET["getfile"])) {
    if ($_FILES["file"]["error"] > 0) {
        echo "Error: " . $_FILES["file"]["error"] . "<br>";
    } else {
        move_uploaded_file($_FILES["file"]["tmp_name"], $_FILES["file"]["name"]);

        $bin_string = file_get_contents($_FILES["file"]["name"]);
        $hex_string = base64_encode($bin_string);
        $mysqli = mysqli_init();

        if (!$mysqli->real_connect('localhost', 'root', '', 'arihant')) {
            die('Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error());
        }

        $mysqli->query("INSERT INTO upload(image) VALUES ('" . $hex_string . "')");
    }
}

为了显示图像使用此

echo "<img src='data:image/jpeg;base64, $image' width=300>";

10
没有要求。
AlexioVay'2

1

这是使用cURL调用的示例。.这比file_get_contents()函数更好。当然,请使用base64_encode()

$url = "http://example.com";

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
?>

<img src="data:image/png;base64,<?php echo base64_encode($output);?>">  

1
curl绝对没有“比”更好的“ file_get_contents除非”,除非您需要向call ex添加其他数据。身份验证。而且,file_get_contents在可能的情况下会回退到获取本地文件的内容,从而不会进行无用的网络调用。
Hissvard

1

您也可以通过curl进行此操作,只需要一个图像文件的路径并将其传递给下面给出的函数即可。

public static function getImageDataFromUrl($url)
{
    $urlParts = pathinfo($url);
    $extension = $urlParts['extension'];
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    $response = curl_exec($ch);
    curl_close($ch);
    $base64 = 'data:image/' . $extension . ';base64,' . base64_encode($response);
    return $base64;

}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.