

This Photo metadata removal tool is capable for removing metadata from PNG, JPG, TIFF, PSD, PDF, 3G2, 3GP2, 3GP, 3GPP, AAX, AI, AIT, ARQ, ARW, AVIF, CR2, CR3, CRM, CRW, CIFF, CS1, DCP, DNG, DR4, DVB, EPS, EPSF, PS, ERF, EXIF, EXV, F4A, F4B, F4P, F4V, FFF, FLIP, GIF, GPR, HDP, WDP, JXR, HEIC, HEIF, ICC, ICM, IIQ, IND, INDD, INDT, INSP, JP2, JPF, JPM, JPX, JPE, LRV, M4A, M4B, M4P.

Related: convert PNGs to ICO in context menu.BitRecover Image Metadata Remover is an all-in-one software that is specially developed for deleting EXIF & IPTC metadata from images, videos, graphics, documents, etc.

PNG-Minify.reg Windows Registry Editor Version to minified to\\convert.exe\" -background none -strip -set filename:n \"%%t\" \"%1\" \"%%.png\"" (using ImageMagick, changes data overwriting original file)Ĭonvert -background none -strip -set filename:n "%t" image.png "%.png" JPG-RemoveExif.reg Windows Registry Editor Version to\\exiftool.exe\" -all= \"%1\""įor PNG files: command " Convert to minified PNG" (using ExifTool, preserves original file as backup) Hint for convenience: If you are on Windows, you can apply a REG file to the registry, to install an entry in the context menu, so you can easily remove metadata by right-clicking the file and selecting the command.įor example (remember to edit the paths to point to where the executables are installed on your computer):įor JPEG,JPG,JPE,JFIF files: command " Remove metadata" Call me old fashioned, but when I remove something from a file, I want a file size the be smaller if not the same size. This leads me to believe that Imagemagick is encoding the data you want stripped away, and is storing it somewhere else in the file. If your image file uses little endian, some adjustments need to be made.ģ) When trying to use ImageMagick to strip exif data, I noticed that I ended up with a larger file than what I started with. Nikon has information after this which my program truncates.Ģ) Because this is for Nikon format, it assumes big endian byte order. Normally image programs read up to the first EOI marker found. They encode this data on to the end of the image file by creating a second EOI marker. Nikon's JPEG format adds somthing to the very end of each file it creates. The code below does the following:ġ) Gets the current orientation of the image.Ģ) Removes all data contained in APP1 (Exif data) and APP2 (Flashpix data) by blanking.ģ) Recreates the APP1 orientation marker and sets it to the original value.Ĥ) Finds the first EOI marker (End of Image) and truncates the file if nessasary.ġ) This program is used for my Nikon camera.
