简体   繁体   中英

How do I set properties of jpeg file in Xamarin for Android?

I am working with jpeg files, when I look at the details of a jpeg file under windows (right-click->properties), under the Details tab there are entries for Title, Subject, Rating, Tags, Comments, etc. How can I set these properties in Xamarin (Android)? Thanks.

Here is some code to guide you.

ExifInterface newExif= new ExifInterface(filePath);
newExif.SetAttribute(ExifInterface.TagGpsLatitude, "teste lat");
newExif.SetAttribute(ExifInterface.TagGpsLatitudeRef, "teste lat ref");
newExif.SetAttribute(ExifInterface.TagGpsLongitude, "teste long");
newExif.SetAttribute(ExifInterface.TagGpsLongitudeRef, "teste long ref");
newExif.SaveAttributes();

You can use Android.Media.ExifInterface for getting/setting Exif Properties in Xamarin.Android.

http://developer.android.com/reference/android/media/ExifInterface.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM