迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > PHP >

在 PHP 中将图像编码为 Base64

作者:迹忆客 最近更新:2023/03/29 浏览次数:

借助 PHP 中的多个内置函数,有很多方法可以将图像编码为 base64 格式。

这些函数包括:

  • pathinfo
  • file_get_contents
  • base64_encode
  • mime_content_type

在 PHP 中使用 file_get_contentspathinfobase64_encode 将图像编码为 Base64

图像应该有一个存储在变量中的定义路径,以使用 file_get_contentspathinfobase64_encode 将图像编码为 base64。

使用 pathinfo 功能读取信息。然后将结果信息传递给 file_get_contents 函数。

file_get_contents 的工作是将图像文件读入字符串。我们可以将字符串传递给 base64_encode 函数。

要显示 base64 编码的图像,连接字符串 data:image/、来自 pathinfo 的信息、字符串 ;base64 和 base64 编码的字符串。

<?php
	// Define a path for the image
	$image_path = 'xps-unsplash.jpg';

	// Check the image type
	$image_type = pathinfo($image_path, PATHINFO_EXTENSION);

	// Read the image into a string
	$data = file_get_contents($image_path);

	// Encode the image
	$base64_encode = 'data:image:/' . $image_type . ';base64,' . base64_encode($data);

	// Return the first 50 characters of the
	// base64 encoded string
	echo substr($base64_encode, 0, 50);
?>

输出:

data:image:/jpg;base64,/9j/4AAQSkZJRgABAQEASABIAAD

在 PHP 中使用 file_get_contentsbase64_encode 将图像编码为 Base64

要将图像转换为 base64,请将图像的路径直接传递给 file_get_contents 函数。

file_get_contents 函数将返回一个字符串。如果你将此字符串作为参数提供给 base64_encode 函数,将会有所帮助。

<?php
    // Define a path for the image
    $data = file_get_contents('xps-unsplash.jpg');

    // Encode the image
    $base64_encode = base64_encode($data);

    // Return the first 50 characters of the
    // base64 encoded string
    echo substr($base64_encode, 0, 50);
?>

输出:

/9j/4AAQSkZJRgABAQEASABIAAD/4gIcSUNDX1BST0ZJTEUAAQ

在 PHP 中使用 base64_encodemime_content_type 将图像编码为 Base64

使用 file_get_contents 函数读取图像路径。然后将生成的字符串转换为 base64 编码。

你可以在将图像源传递给 HTML <img> 标记中的 src 标记之前对其进行格式化。

为此,你需要将图像格式化为 data:{mime};base64,{data}。你可以从格式中推断出你需要图像 mime 类型。

你可以使用 mime_content_type 函数获取图像 mime 类型。最后,你将格式作为 <img> 标记的 src 属性的值传递。

<?php
    // Define a path for the image
    $image_path = 'xps-unsplash.jpg';

    // Read the image path and convert it to
    // base64
    $base64_encode = base64_encode(file_get_contents($image_path));

    // Prepare the image for use in an img
    // src tag
    $image_source = 'data: ' . mime_content_type($image_path) . ';base64,' . $base64_encode;

    // Display the image in the img src tag
    echo '<img src="' . $image_source . '">';
?>

输出:

在 PHP 中将图像编码为 base64


使用 PHP 中的自定义函数将图像编码为 Base64

在此函数的定义中,你可以使用诸如 file_get_contentsbase64_encodepathinfo 之类的方法来处理图像编码。

你可以使用 file_put_contents 实现缓存功能以获得更好的性能。

<?php
    function encode_html_image (
        $image_file,
        $alternate_text = NULL,
        $image_cache,
        $image_extension = NULL
    ) {
        // check if the image is not a file
        if (!is_file($image_file)) {
            return false;
        }
        // Save the image as base64 extension for
        // use as a cache
        $image_with_base64_extension = "{$image_file}.base64";
        if ($image_cache && is_file($image_with_base64_extension)) {
            // Use the cache image
            $base64_encoded_image = file_get_contents($image_with_base64_extension);
        } else {
            // Create a new base64 encoded image
            $image_binary_data = file_get_contents($image_file);
            $base64_encoded_image = base64_encode($image_binary_data);

            if ($image_cache) {
                file_put_contents($image_with_base64_extension, $base64_encoded_image);
            }
        }

        $image_extension = pathinfo($image_file, PATHINFO_EXTENSION);

        return "<img alt='{$alternate_text}' src='data:image/{$image_extension};base64,{$base64_encoded_image}' />";
    }

    $sample_image = 'xps-unsplash.jpg';
    $encoded_image = encode_html_image($sample_image, 'XPS by DELL', true);
    echo $encoded_image;
?>

输出:

在 PHP 中将图像编码为 base64

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

如何在 PHP 中获取时间差的分钟数

发布时间:2023/03/29 浏览次数:183 分类:PHP

本文介绍了如何在 PHP 中获取时间差的分钟数,包括 date_diff()函数和数学公式。它包括 date_diff()函数和数学公式。

PHP 中的重定向

发布时间:2023/03/29 浏览次数:136 分类:PHP

本教程演示了如何将用户从页面重定向到 PHP 中的其他页面

PHP 分页

发布时间:2023/03/29 浏览次数:66 分类:PHP

本教程介绍如何在 PHP 中对数据库行进行分页

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便