Render images to terminal using ANSI escape codes. Displays PNG, JPEG, BMP, and other common image formats directly in your terminal as colored block characters, enabling image previews without leaving the command line.
scorpiox-renderimage <image-path>
$ scorpiox-renderimage logo.png
$ scorpiox-renderimage photo.jpg # The image is rendered as colored Unicode block characters # using ANSI 24-bit true-color escape sequences
$ curl -sO https://example.com/screenshot.png $ scorpiox-renderimage screenshot.png
#!/bin/bash # render-artifacts.sh — preview generated charts after a build for img in output/charts/*.png; do echo "=== $img ===" scorpiox-renderimage "$img" echo "" done
$ scorpiox-renderimage assets/favicon.png # Useful for verifying image assets in headless CI environments # without needing a graphical display server
$ scorpiox-renderimage diagram.bmp # Supports common raster formats: PNG, JPEG, BMP
scorpiox/scorpiox-renderimage.clibsxutil