Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpo007/write-blockletters
This repository contains a PowerShell script, Write-BlockLetters.ps1, which defines a dictionary of block letters, punctuation, and symbols. Each character is 5x5 (max.), allowing for the creation of large, block-style text.
https://github.com/dpo007/write-blockletters
block-letters console font powershell text
Last synced: 15 days ago
JSON representation
This repository contains a PowerShell script, Write-BlockLetters.ps1, which defines a dictionary of block letters, punctuation, and symbols. Each character is 5x5 (max.), allowing for the creation of large, block-style text.
- Host: GitHub
- URL: https://github.com/dpo007/write-blockletters
- Owner: dpo007
- Created: 2023-11-18T08:04:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-18T00:08:29.000Z (7 months ago)
- Last Synced: 2024-07-18T03:25:55.154Z (7 months ago)
- Topics: block-letters, console, font, powershell, text
- Language: PowerShell
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Write-BlockLetters.ps1
This PowerShell script prints out block letters on the console. It takes a string of text and prints it out in block letters on the console. The alignment, forground and background colours can be customized.
## Parameters
- `Text`: The text to be printed in block letters.
- `Align`: The alignment of the text. Can be "Left", "Center", or "Right". Default is "Left".
- `VerticalPadding`: The number of blank lines to add to the top and bottom of the output. Default is 0.
- `ForegroundColor`: The colour of the text. Default is Gray.
- `BackgroundColor`: The background colour of the text. Default is Black.## Example Usage
```powershell
.\Write-BlockLetters.ps1 -Text "Go PowerShell!" -Align Center -ForegroundColor White -BackgroundColor Blue
```## Example Output
!["Go PowerShell" example output](OutputExample.png)