Project

ImagePlayground

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

Stars98
Forks7
Open issues0
PowerShell Gallery downloads711600
ReleaseImagePlayground-PowerShellModule.v3.2.6
Language: C# Updated: 2026-08-09T21:09:58.0000000+00:00

Curated Examples

Render an organization hierarchy

Build a compact organization hierarchy from PowerShell with branch-level layout policies.

Use the organization surface when input data describes reporting relationships rather than a free-form network. A branch can opt into compact or vertical layout while the rest of the hierarchy keeps its normal policy.

using module ImagePlayground

New-ImageOrganizationChart -TeamId engineering -TeamLabel 'Engineering' -LayoutPolicy Auto -MemberDefinition {
    New-ImageOrganizationMember -Id director -Name 'Avery Stone' -Role 'Director of Engineering' -Status Healthy -LayoutPolicy Standard
    New-ImageOrganizationMember -Id platform -Name 'Morgan Lee' -Role 'Platform Lead' -ParentId director -Status Healthy -LayoutPolicy Compact
    New-ImageOrganizationMember -Id product -Name 'Sam Park' -Role 'Product Lead' -ParentId director -Status Healthy -LayoutPolicy Vertical
    New-ImageOrganizationMember -Id runtime -Name 'Alex Kim' -Role 'Runtime Engineer' -ParentId platform -Status Warning
    New-ImageOrganizationMember -Id tooling -Name 'Jordan Bell' -Role 'Tooling Engineer' -ParentId platform -Status Healthy
    New-ImageOrganizationMember -Id ux -Name 'Taylor Reed' -Role 'Product Designer' -ParentId product -Status Healthy
} -FilePath '.\engineering-organization.svg' -Width 1100 -Height 620

For exact command names and parameter sets in the installed release, use the ImagePlayground API reference. The underlying hierarchy and topology model is documented in the ChartForgeX hub.