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'); |