API Reference
Command
New-ImageQRCodeGirocode
Generates a Girocode QR code.
Remarks
Use this cmdlet to create SEPA payment QR codes for European bank transfers.
Examples
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 SetsParameters
- Amount Decimal
- Transfer amount.
- BackgroundColor Color
- Background color of the QR code.
- Bic String
- BIC of the payee.
- FilePath String
- The image format is inferred from the file extension.
- ForegroundColor Color
- Foreground color of QR modules.
- Iban String
- IBAN of the payee.
- Name String
- Recipient name.
- PixelSize Int32
- Pixel size for each QR module.
- RemittanceInformation String
- Optional remittance information.
- Show SwitchParameter
- Opens the image after creation.