[ad_1]
I’ve to show picture metadata information(date, lat, lng) to customers. Consumer also can edit their picture whereas captured. However cannot get any metadata information from edited picture, trigger editor take away metadata information from picture. That is why I am utilizing FlutterExif to jot down lat, lng into picture.
exif = FlutterExif.fromPath(filePath);
await exif!.setLatLong(place.latitude,place.longitude);
await exif!.setAttribute("txt", 'myTxt');
await exif!.saveAttributes();
var imageToRead = await exif!.imageData;
readFile(imageToRead);
From this, I can learn metadata data from picture. However I wish to see the metadata information from Desktop(Home windows/Mac) from Picture->Properties->Particulars (Ex.). Cannot see these data whereas I am opening that picture into desktop. How may I see these metadata data from this fashion additionally. To get this, what I’ve to do? Want Assist…
[ad_2]

