Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)