You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final attributesFirst = await Exif.getAttributes(filePath);
print(attributesFirst);
final latitude = -4.8055555;
final longitude = -39.3555555;
final dateTimeOriginal = DateTime.parse('2009-08-11 16:45:32');
final userComment = 'You can add a metadata stringified version here';
final newAttributes = Metadata(
latitude: latitude,
longitude: longitude,
dateTimeOriginal: dateTimeOriginal,
userComment: userComment,
);
await Exif.setAttributes(filePath, newAttributes);
final attributesSecond = await Exif.getAttributes(filePath);
print(attributesSecond);
If your question was regarding how to add the package to the pubspec.yaml then you can directly include the GitHub dependency (until it is published to pub.dev). For example:
I see this package as the ultimate solution, that I've been looking for, but I can't see the documentation of using.
The text was updated successfully, but these errors were encountered: