个人案例
- 和你的100件小事
情侣、好友、亲子美好回忆记录,一起完成未完成的事,记录属于你我感动的故事
和你的100件小事(开源)扫码体验
复线视频:https://v.qq.com/x/page/p32672xzaki.html 客户端代码:(uniapp) <template> <view> <view @tap="onImageTap" style="padding: 10px; background-color: #000000; color: white;">上传图片</view> <view style="margin-top: 30rpx;;">返回内容</view> <view style="margin-top: 30rpx; word-break: break-all;">{{response}}</view> </view> </template> <script> import api from '@/common/js/api.js' export default { data() { return { response: '' } }, methods: { onImageTap() { uni.chooseImage({ count: 1, sizeType: ['original'], sourceType: ['album'], success: async (res) => { console.log(res) uni.showLoading({ title: '读取Exif信息中' }) // 通过服务器Exif尝试获取图片Gps位置信息 let exif = await api.uploadFile({ url: 'images/exif-test', filePath: res.tempFilePaths[0], name: 'file', formData: { } }) uni.hideLoading() if( exif && exif.data.status) { this.response = JSON.stringify(exif.data.data) } else { this.response = '解析失败' } } }) } } } </script> <style> </style> 服务器端代码: public function exifTest(Request $request) { return $this->success(exif_read_data($request->file('file')->getRealPath(), 0, true)); }
微信小程序chooseImage接口,IOS返回的照片丢失exif信息问题chooseImage接口已设置original, 只有选择IOS竖着拍的宽高比3:4的照片,才能通过php的exif_read_data读取到exif信息;IOS横着拍,或者其他尺寸的照片,都会丢失exif GPS地理位置信息;
2021-08-13