- 安装 exif 依赖包:
npm install exif-js --save
- 使用到的函数:
/**
* 获取图片 exif 信息
* image: Image
**/
export const getExifFromFile = async (image: any) => {
return new Promise(resolve => {
EXIF.getData(image, () => {
const gpsLatitude = EXIF.getTag(image, 'GPSLatitude');
const gpsLongitude = EXIF.getTag(image, 'GPSLongitude'