Created
December 10, 2023 03:14
-
-
Save MobCat/27cbebe1322f019481349830bbadf750 to your computer and use it in GitHub Desktop.
New windows context menu for removing EXIF data with exiv2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; adds a "remove EXIF data" right click context menu item for jpg | |
; You should pre-process your jpg for compression first then use this tool | |
; when you post the jpg to the internet. | |
; The ico is optional. But I like it. | |
[HKEY_CLASSES_ROOT\*\shell\Exif Remove] | |
"AppliesTo"=".jpg" | |
"Icon"="C:\\exiv2-0.28.1\\bin\\remove.ico" | |
[HKEY_CLASSES_ROOT\*\shell\Exif Remove\command] | |
@="C:\\exiv2-0.28.1\\bin\\exiv2.exe -da rm \"%1\"" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment