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-ImageStoryScene

Namespace ImagePlayground
Inputs
ImagePlayground.PowerShell.Stories.ImageStoryPanelSpec[]
Outputs
ImagePlayground.PowerShell.Stories.ImageStorySceneSpec

Groups resolved panels into one timed visual-story scene.

Remarks

Groups resolved panels into one timed visual-story scene.

Examples

Authored help example

Create a scene from a resolved text panel


$panel = New-ImageStoryPanel -Id 'summary' -Text 'Deployment completed.' -Emphasized
            New-ImageStoryScene -Id 'result' -Title 'Deployment result' -Panels $panel -DurationSeconds 3
        

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-ImageStoryScene [-DurationSeconds <Double>] -Id <String> [-Layout <Focus|Split|Stacked>] -Panels <ImageStoryPanelSpec[]> -Title <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

DurationSeconds Double optionalposition: namedpipeline: False
Scene display duration.
Id String requiredposition: namedpipeline: False
Stable scene identifier.
Layout VisualStorySceneLayout optionalposition: namedpipeline: Falsevalues: 3
Panel arrangement.
Possible values: Focus, Split, Stacked
Panels ImageStoryPanelSpec[] requiredposition: namedpipeline: True (ByValue)
Resolved panels in display order.
Title String requiredposition: namedpipeline: False
Visible scene heading.

Outputs

ImagePlayground.PowerShell.Stories.ImageStorySceneSpec: PowerShell-friendly resolved scene specification for New-ImageStory.