如何将图像转换为base 64编码?

如何将图像转换为base 64编码?

请您指导我如何将图像从URL转换为base 64编码?



偶然的你
浏览 450回答 3
3回答

慕村225694

我认为应该是:$path = 'myfolder/myimage.png';$type = pathinfo($path, PATHINFO_EXTENSION);$data = file_get_contents($path);$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);

宝慕林4294392

简单:$imagedata = file_get_contents("/path/to/image.jpg");              // alternatively specify an URL, if PHP settings allow$base64 = base64_encode($imagedata);请记住,这将使数据增加33%,如果文件的大小超过您的memory_limit.
打开App,查看更多内容
随时随地看视频慕课网APP