本文操作环境:windows7系统、PHP7.1版、DELL G3电脑php image怎么转base64?php 图片转 base64以下代码使用 PHP 将图片转换为 base64 字符串格式:实例<?php //$file:图片
本文操作环境:windows7系统、PHP7.1版、DELL G3电脑
php image怎么转base64?
php 图片转 base64
以下代码使用 PHP 将图片转换为 base64 字符串格式:
实例
<?php
//$file:图片地址
//Filetype: JPEG,PNG,GIF
$file = "encode.jpg";
if($fp = fopen($file,"rb", 0))
{
$gambar = fread($fp,filesize($file));
fclose($fp);
$base64 = chunk_split(base64_encode($gambar));
// 输出
$encode = '<img src="data:image/jpg/png/gif;base64,' . $base64 .'" >';
echo $encode;
}
?>
--结束END--
本文标题: php image怎么转base64
本文链接: https://lsjlt.com/news/535.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0