如何将图像转换为 Base64 编码 [英] How to convert an image to Base64 encoding

查看:40
本文介绍了如何将图像转换为 Base64 编码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将图像从 URL 转换为 Base64 编码?

How can I convert an image from a URL to Base64 encoding?

推荐答案

我觉得应该是:

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

这篇关于如何将图像转换为 Base64 编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆