Project

ImagePlayground

Automate image processing, codes, metadata, charts, topology, and visual stories from PowerShell.

Stars 100
Forks 7
Total downloads 712,347
Release ImagePlayground-PowerShellModule.v3.2.7
Language: C# Updated: 2026-08-25

API Reference

Command

Remove-ImageExif

Namespace ImagePlayground
Inputs
System.String

Removes EXIF metadata from an image.

Remarks

Removes EXIF metadata from an image.

Examples

Authored help example

Remove specific tag


Remove-ImageExif -FilePath img.jpg -ExifTag ExifIFD.DateTimeOriginal
        

Remove all tags


Remove-ImageExif -FilePath img.jpg -All
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Remove-ImageExif -ExifTag <ExifTag[]> -FilePath <String> [-FilePathOutput <String>] [<CommonParameters>]
#
Parameter set: Tag

Parameters

ExifTag ExifTag[] requiredposition: namedpipeline: False
Tags to remove.
FilePath String requiredposition: 0pipeline: True (ByValue)
Path to the image file.
FilePathOutput String optionalposition: 1pipeline: False
Optional output path.
Remove-ImageExif -All -FilePath <String> [-FilePathOutput <String>] [<CommonParameters>]
#
Parameter set: All

Parameters

All SwitchParameter requiredposition: namedpipeline: False
Remove all tags.
FilePath String requiredposition: 0pipeline: True (ByValue)
Path to the image file.
FilePathOutput String optionalposition: 1pipeline: False
Optional output path.