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

Namespace ImagePlayground
Inputs
System.String

Generates a QR code initiating a Skype call.

Remarks

Use this cmdlet for legacy Skype calling scenarios where a QR scan should start a call with a specific account.

Examples

Authored help example

Create a basic Skype-call QR code

PS>


New-ImageQRCodeSkypeCall -UserName 'echo123' -FilePath skype.png
        

Creates a QR code that opens Skype and targets the selected username for a call.

Create a helpdesk Skype QR code

PS>


New-ImageQRCodeSkypeCall -UserName 'evotec.helpdesk' -FilePath skype-helpdesk.png -ForegroundColor MidnightBlue -PixelSize 16 -Show
        

Generates a branded Skype call QR code and opens the resulting image after creation.

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-ImageQRCodeSkypeCall [-BackgroundColor <Color>] -FilePath <String> [-ForegroundColor <Color>] [-PixelSize <Int32>] [-Show] -UserName <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

BackgroundColor Color optionalposition: namedpipeline: False
Background color of the QR code.
FilePath String requiredposition: 1pipeline: True (ByValue)
The image format is inferred from the file extension.
ForegroundColor Color optionalposition: namedpipeline: False
Foreground color of QR modules.
PixelSize Int32 optionalposition: namedpipeline: False
Pixel size for each QR module.
Show SwitchParameter optionalposition: namedpipeline: False
Opens the image after creation.
UserName String requiredposition: 0pipeline: False
Skype username to call.