php如何转换远程或本地图片为base64格式?

Thea ·
更新时间:2024-11-14
· 741 次阅读

public static function base64EncodeImage ($image_file) {
$base64_image = '';
$image_info = getimagesize($image_file);
$image_data = file_get_contents($image_file);
$base64_image = 'data:' . $image_info['mime'] . ';base64,' . base64_encode($image_data);
return $base64_image;
}



图片 地图 base64 PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号