Hi all new and need help

Started by Peterstad, March 17, 2025, 03:19:22 PM

Previous topic - Next topic

Peterstad

Hello everyone I'm new here and I muddle my way through with things.
I have a xenforo website and my members would like me to do something to remove all there location data from their images
I was suggested to try exiftool so after some advice please

Phil Harvey

If you are talking about JPEG images, then this command will remove all metdata:

exiftool -all= FILE

If you are looking at just removing the standard EXIF GPS metadata, then this would do it:

exiftool -gps:all= FILE

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

Peterstad

@phil Harvey many thanks
How do i install it please do i put it on the server

Phil Harvey

...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).