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

Namespace ImagePlayground
Inputs
System.String

Generates a Slovenian UPN QR payment code.

Remarks

Use this cmdlet to render Slovenian UPN payment details into a scannable QR image.

Examples

Authored help example

Create a Slovenian UPN QR payment code

PS>


New-ImageQRCodeSlovenianUpnQr -PayerName 'John Doe' -PayerAddress 'Main Street 1' -PayerPlace 'Ljubljana' -RecipientName 'Evotec d.o.o.' -RecipientAddress 'Business Street 2' -RecipientPlace 'Maribor' -RecipientIban 'SI56192001234567890' -Description 'Invoice 2026-041' -Amount 199.99 -FilePath upn.png
        

Generates a UPN payment QR code from the payment fields supplied to the cmdlet.

Create a branded UPN QR code and preview it

PS>


New-ImageQRCodeSlovenianUpnQr -PayerName 'John Doe' -PayerAddress 'Main Street 1' -PayerPlace 'Ljubljana' -RecipientName 'Evotec d.o.o.' -RecipientAddress 'Business Street 2' -RecipientPlace 'Maribor' -RecipientIban 'SI56192001234567890' -Description 'Annual subscription' -Amount 49 -FilePath upn-brand.png -ForegroundColor DarkGreen -PixelSize 14 -Show
        

Creates a styled payment QR code and opens the resulting image after generation.

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-ImageQRCodeSlovenianUpnQr -Amount <Double> [-BackgroundColor <Color>] [-Code <String>] [-Deadline <DateTime>] -Description <String> -FilePath <String> [-ForegroundColor <Color>] -PayerAddress <String> -PayerName <String> -PayerPlace <String> [-PixelSize <Int32>] -RecipientAddress <String> -RecipientIban <String> -RecipientName <String> -RecipientPlace <String> [-RecipientSiModel <String>] [-RecipientSiReference <String>] [-Show] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Amount Double requiredposition: 8pipeline: False
Payment amount.
BackgroundColor Color optionalposition: namedpipeline: False
Background color of the QR code.
Code String optionalposition: namedpipeline: False
UPN payment code.
Deadline DateTime optionalposition: namedpipeline: False
Payment deadline.
Description String requiredposition: 7pipeline: False
Payment description.
FilePath String requiredposition: 9pipeline: True (ByValue)
The image format is inferred from the file extension.
ForegroundColor Color optionalposition: namedpipeline: False
Foreground color of QR modules.
PayerAddress String requiredposition: 1pipeline: False
Payer street address.
PayerName String requiredposition: 0pipeline: False
Payer name.
PayerPlace String requiredposition: 2pipeline: False
Payer postal place.
PixelSize Int32 optionalposition: namedpipeline: False
Pixel size for each QR module.
RecipientAddress String requiredposition: 4pipeline: False
Recipient street address.
RecipientIban String requiredposition: 6pipeline: False
Recipient IBAN.
RecipientName String requiredposition: 3pipeline: False
Recipient name.
RecipientPlace String requiredposition: 5pipeline: False
Recipient postal place.
RecipientSiModel String optionalposition: namedpipeline: False
Recipient SI model.
RecipientSiReference String optionalposition: namedpipeline: False
Recipient SI reference.
Show SwitchParameter optionalposition: namedpipeline: False
Opens the image after creation.