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

Namespace ImagePlayground
Inputs
System.String

Generates a QR code for dialling a phone number.

Remarks

Use this cmdlet when you want a scan action to immediately open the dialer with a predefined number.

Examples

Authored help example

Create a basic phone-number QR code

PS>


New-ImageQRCodePhoneNumber -Number '+123456' -FilePath phone.png
        

Generates a QR code that opens the dialer with the selected number.

Create a support hotline QR code

PS>


New-ImageQRCodePhoneNumber -Number '+48 500 600 700' -FilePath hotline.png -ForegroundColor DarkRed -PixelSize 18 -Show
        

Creates a styled call-now QR code suitable for posters, intranet pages, or support desks.

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-ImageQRCodePhoneNumber [-BackgroundColor <Color>] -FilePath <String> [-ForegroundColor <Color>] -Number <String> [-PixelSize <Int32>] [-Show] [<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.
Number String requiredposition: 0pipeline: False
Phone number to dial.
PixelSize Int32 optionalposition: namedpipeline: False
Pixel size for each QR module.
Show SwitchParameter optionalposition: namedpipeline: False
Opens the image after creation.