|
本帖最后由 qqsweb 于 2017-8-24 11:22 编辑
手机动不动就几M的图片 不压缩上传就傻眼了~
最近项目有需求 就发出来了 应该很多人都会用到
upload.php
后台接收
- $base64_image_content = file_get_contents('php://input');
- if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)){
- $type = $result[2]; //jpeg
- $img = base64_decode(str_replace($result[1], '', $base64_image_content)); //返回文件流
- }
- $tmp_file = time().'.'.$type;
- file_put_contents($tmp_file, $img);
- echo '您的头像已经更新成功';
复制代码
完整源码
效果演示:
http://www.s575.com/demo/84/
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
评分
-
查看全部评分
|