如何将图像转换为base 64编码?请您指导我如何将图像从URL转换为base 64编码?
3 回答
慕村225694
TA贡献1880条经验 获得超4个赞
我认为应该是:
$path = 'myfolder/myimage.png';
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
宝慕林4294392
TA贡献2021条经验 获得超8个赞
$imagedata = file_get_contents("/path/to/image.jpg"); // alternatively specify an URL, if PHP settings allow$base64 = base64_encode($imagedata);
memory_limit
.
- 3 回答
- 0 关注
- 449 浏览
添加回答
举报
0/150
提交
取消