API Reference
Command
New-ImageQRCodeSlovenianUpnQr
Generates a Slovenian UPN QR payment code.
Remarks
Use this cmdlet to render Slovenian UPN payment details into a scannable QR image.
Examples
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 SetsParameters
- Amount Double
- Payment amount.
- BackgroundColor Color
- Background color of the QR code.
- Code String
- UPN payment code.
- Deadline DateTime
- Payment deadline.
- Description String
- Payment description.
- FilePath String
- The image format is inferred from the file extension.
- ForegroundColor Color
- Foreground color of QR modules.
- PayerAddress String
- Payer street address.
- PayerName String
- Payer name.
- PayerPlace String
- Payer postal place.
- PixelSize Int32
- Pixel size for each QR module.
- RecipientAddress String
- Recipient street address.
- RecipientIban String
- Recipient IBAN.
- RecipientName String
- Recipient name.
- RecipientPlace String
- Recipient postal place.
- RecipientSiModel String
- Recipient SI model.
- RecipientSiReference String
- Recipient SI reference.
- Show SwitchParameter
- Opens the image after creation.