时间:2021-07-01 10:21:17 帮助过:5人阅读
$file = "example.jpg";
$type = getimagesize( $file ); //取得图片的大小,类型等$file_content = base64_encode( file_get_contents( $file ) );
switch ( $type[2] ) { //判读图片类型case1:
$img_type = "gif";
break;
case2:
$img_type = "jpg";
break;
case3:
$img_type = "png";
break;
}
$img = 'data:image/https://www.gxlcms.com/' . $img_type . ';base64,https://www.gxlcms.com/' . $file_content; //合成图片的base64编码echo'https://www.gxlcms.com/';
以上就介绍了php将image转换为base64编码,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。