ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Remove GPS Exif data

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
wezzend Posted - Jul 04 2012 : 07:29:59

Hi,

Is it possible to remove all GPS-related EXIF data from a jpg image? All other EXIF data could remain untouched and all GPS-related data could completely removed.

Thanks in advance.
4   L A T E S T    R E P L I E S    (Newest First)
wezzend Posted - Jul 05 2012 : 11:56:37
Great, thanks.
fab Posted - Jul 05 2012 : 10:53:13
This is intentional. Because GPSVersionID is necessary, when it is empty ImageEn doesn't save back other GPS tags.
wezzend Posted - Jul 05 2012 : 06:44:57
Hi,

Thanks. It does exactly what I need.
Does it intentional feature (I mean setting EXIF_GPSVersionID := '' deletes all GPS-related data) or it is accidental feature?
I'm asking because other GPS fields (e.g. EXIF_GPSLatitudeDegrees, EXIF_GPSLongitudeDegrees) did not touch just EXIF_GPSVersionID but all of them deleted.

Thanks.
fab Posted - Jul 04 2012 : 08:09:43
Hi,
set EXIF_GPSVersionID='' and save back the image. Example:

ImageEnView1.IO.LoadFromFile('input.jpg');
ImageEnView1.IO.Params.EXIF_GPSVersionID := '';
ImageEnView1.Io.SaveToFile('output.jpg');