mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-24 00:43:35 +01:00
Fixed typo
This commit is contained in:
parent
d6434c0a16
commit
ad8f39dd8f
@ -6,14 +6,15 @@
|
|||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$Text = "http://www.fleschutz.de", $ImageSize = "500x500")
|
param([string]$Text = "", $ImageSize = "")
|
||||||
if ($Text -eq "") {
|
if ($Text -eq "") {
|
||||||
$Text = read-input "Enter text or URL"
|
$Text = read-input "Enter text or URL"
|
||||||
}
|
}
|
||||||
if ($ImageSize -eq "") {
|
if ($ImageSize -eq "") {
|
||||||
$ImageSize = read-input "Enter image size (e.g. 500x500)"
|
$ImageSize = read-input "Enter image size (e.g. 500x500)"
|
||||||
}
|
}
|
||||||
$ECC = "L" # can be L, M, Q, H
|
|
||||||
|
$ECC = "M" # can be L, M, Q, H
|
||||||
$QuietZone = 1
|
$QuietZone = 1
|
||||||
$ForegroundColor = "000000"
|
$ForegroundColor = "000000"
|
||||||
$BackgroundColor = "ffffff"
|
$BackgroundColor = "ffffff"
|
||||||
|
Loading…
Reference in New Issue
Block a user