imgcat
It's like cat, but for images.
File Explorer
Download Latest Version (.zip)- build-and-test.yml
- compile-manpage.yml
- imgcat.1
- imgcat.1.md
- .gitignore
- color_db.py
- gen_img.py
- gen_table.py
- xterm-256color.yaml
- .gitignore
- imgcat.c
- load_image.cc
- load_image.h
- print_image.c
- print_image.h
- rgbtree.c
- rgbtree.h
- tree_256_color.h
- 1px_256.jpg
- 1px_256.png
- 1px_8.png
- 1px_grey.png
- 1x512px_magenta.png
- 512x512px_magenta.png
- 256.bin
- 256H.bin
- iterm2.80xN.bin
- iterm2.bin
- 8.bin
- 256.bin
- 256.1x24.bin
- iterm2.1x24.bin
- 256.16x16.half-height.bin
- 256.16x8.half-height.bin
- 256.80xN.bin
- 256.8x16.half-height.bin
- 256.8x8.half-height.bin
- README.md
- run
- .gitignore
- .gitmodules
- CImg
- configure
- LICENSE
- Makefile
- README.md
- VERSION
# Installation Guide
git clone https://github.com/eddieantonio/imgcat
Downloads the entire project code from GitHub to your computer.
cd imgcat
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Homebrew A package manager for macOS/Linux.
- APT (Debian/Ubuntu κ³μ΄) Built into Debian/Ubuntu-based Linux distributions.
brew install eddieantonio/eddieantonio/imgcat
Installs the pre-built package via Homebrew β no source build required.
sudo apt-get install build-essential pkg-config libncurses5-dev
Installs directly from the APT package repository (Debian/Ubuntu-based).
sudo apt-get install libpng-dev libjpeg-dev
Installs directly from the APT package repository (Debian/Ubuntu-based).
Pulled directly from this repo's README.
3. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
make install
Compiles the code based on the generated build configuration to produce an executable.
make install PREFIX=/opt
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
