引用PHP手册里的一评论
This will greatly reduce your page load time as the browser will only need to send one server request for the entire page, rather than multiple requests for the HTML and the images. Requests need to be uploaded and 99% of the world are limited on their upload speed to the server.
翻译一下就是
这种方式能够大大减少页面载入时间,因为整个页面只需要一个请求,多个针对html文档和图片的请求。请求需要被提(上)交(传),但是99%的上传速度是被限制的。
所以减少请求也是一个明确的选择!
程序很简单,替换一下example.jpg为你的图片路径即可!
<?php
$file = "example.jpg";
$type = getimagesize( $file ); //取得图片的大小,类型等
$file_content = base64_encode( file_get_contents( $file ) );
switch ( $type[2] ) { //判读图片类型
case 1:
$img_type = "gif";
break;
case 2:
$img_type = "jpg";
break;
case 3:
$img_type = "png";
break;
}
$img = 'data:image/' . $img_type . ';base64,' . $file_content; //合成图片的base64编码
echo '<img src="' . $img . '" >';
再来个python版本的
import base64
path = r'C:\Users\Administrator\Desktop\logo.png'
f = open(path,'rb')
b64 = base64.b64encode(f.read())
f.close()
print b64
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有