小程序
小游戏
企业微信
微信支付
扫描小程序码分享
chooseImage接口已设置original, 只有选择IOS竖着拍的宽高比3:4的照片,才能通过php的exif_read_data读取到exif信息;IOS横着拍,或者其他尺寸的照片,都会丢失exif GPS地理位置信息;
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
复线视频: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)); }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
+1,有没有什么魔法能拿到位置信息
我们也遇到了,IPHONE原图上传拿不到exif,有解决方法吗
经测试 安卓微信也是如此。
你好,具体是怎么复现情况的呢?提供下复现视频看看(上传至腾讯视频)。麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
复线视频: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)); }
+1,有没有什么魔法能拿到位置信息
我们也遇到了,IPHONE原图上传拿不到exif,有解决方法吗
经测试 安卓微信也是如此。
你好,具体是怎么复现情况的呢?提供下复现视频看看(上传至腾讯视频)。麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)