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

New-ImageGif

Namespace ImagePlayground
Inputs
System.String

Creates an animated GIF from existing images.

Remarks

Creates an animated GIF from existing images.

Examples

Authored help example

Build a GIF from two images


New-ImageGif -Frames img1.png,img2.png -FilePath out.gif -FrameDelay 100
        

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

New-ImageGif -FilePath <String> [-FrameDelay <Int32>] -Frames <String[]> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

FilePath String requiredposition: 1pipeline: True (ByValue)
Output path for the GIF animation.
FrameDelay Int32 optionalposition: namedpipeline: False
Delay between frames in milliseconds.
Frames String[] requiredposition: 0pipeline: False
Source image paths used as frames.