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

Namespace ImagePlayground
Inputs
System.String

Generates a Girocode QR code.

Remarks

Use this cmdlet to create SEPA payment QR codes for European bank transfers.

Examples

Authored help example

Create a basic Girocode payment QR

PS>


New-ImageQRCodeGirocode -Iban 'DE12500105170648489890' -Bic 'COBADEFFXXX' -Name 'Evotec GmbH' -Amount 12.34 -FilePath giro.png
        

Creates a payment QR code with the core SEPA transfer fields.

Create a Girocode for invoice payment

PS>


New-ImageQRCodeGirocode -Iban 'DE12500105170648489890' -Bic 'COBADEFFXXX' -Name 'Evotec GmbH' -Amount 249.99 -RemittanceInformation 'Invoice 2026-041' -FilePath invoice-payment.png -ForegroundColor DarkBlue -PixelSize 14 -Show
        

Generates a branded invoice-payment QR code and opens it 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-ImageQRCodeGirocode -Amount <Decimal> [-BackgroundColor <Color>] -Bic <String> -FilePath <String> [-ForegroundColor <Color>] -Iban <String> -Name <String> [-PixelSize <Int32>] [-RemittanceInformation <String>] [-Show] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Amount Decimal requiredposition: 3pipeline: False
Transfer amount.
BackgroundColor Color optionalposition: namedpipeline: False
Background color of the QR code.
Bic String requiredposition: 1pipeline: False
BIC of the payee.
FilePath String requiredposition: 5pipeline: True (ByValue)
The image format is inferred from the file extension.
ForegroundColor Color optionalposition: namedpipeline: False
Foreground color of QR modules.
Iban String requiredposition: 0pipeline: False
IBAN of the payee.
Name String requiredposition: 2pipeline: False
Recipient name.
PixelSize Int32 optionalposition: namedpipeline: False
Pixel size for each QR module.
RemittanceInformation String optionalposition: 4pipeline: False
Optional remittance information.
Show SwitchParameter optionalposition: namedpipeline: False
Opens the image after creation.