ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: Tom Cunningham on May 31, 2025, 05:11:32 PM

Title: Removing face tags
Post by: Tom Cunningham on May 31, 2025, 05:11:32 PM
I want to remove face tags from a file. I tried the command "exiftool -xmp-region:all= <file.jpg>" but exiftool reports 0 image files updated. What am I missing? Thanks.
Title: Re: Removing face tags
Post by: StarGeek on May 31, 2025, 06:34:08 PM
"xmp-region:all" isn't a tag group.


Try
exiftool -XMP-mwg-rs:all= -XMP-MP:all= -XMP-acdsee-rs:all= -XMP-iptcExt:ImageRegion*= /path/to/files/

This removes, in order, MWG regions, Microsoft regions, ACDSee regions, and IPTC Extension regions.
Title: Re: Removing face tags
Post by: Tom Cunningham on May 31, 2025, 06:42:34 PM
Thanks, StarGeek, that did the trick.