94 lines
4.1 KiB
Markdown
94 lines
4.1 KiB
Markdown
# TerminalImageViewer (tiv)
|
||
|
||
Small C++ program to display images in a (modern) terminal using RGB ANSI codes and unicode block graphic characters.
|
||
|
||
There are various similar tools (such as `timg`) using the unicode half block character to display two 24bit pixels per character cell. This program enhances the resolution by mapping 4x8 pixel cells to different unicode characters, using the following algorithm:
|
||
|
||
For each 4x8 pixel cell of the (potentially downscaled) image:
|
||
|
||
1. Find the color channel (R, G or B) that has the biggest range of values for the current cell
|
||
2. Split this range in the middle and create a corresponding bitmap for the cell
|
||
4. Compare the bitmap to the assumed bitmaps for various unicode block graphics characters
|
||
5. Re-calculate the foreground and background colors for the chosen character.
|
||
|
||
See the difference by disabling this optimization using the `-0` option. Or just take a look at the comparison image at the end of this text.
|
||
|
||
## News
|
||
|
||
- 2019-03-26: Exciting week: @Cableo has fixed output redirection, @boretom has added cross-compilation support to the build file and @AlanDeSmet has fixed tall thumbnails and greyscale images.
|
||
- 2019-01-14: Install via snap: `sudo snap install --edge tiv`
|
||
- 2020-04-09: @aaronliu0130 has added homebrew support.
|
||
- 2020-07-05: @cxwx has fixed homebrew support.
|
||
- 2021-05-21: @aaronliu0130 has added Apple Clang support.
|
||
## Installation
|
||
|
||
### Build from source (Linux)
|
||
|
||
sudo apt install imagemagick || yum install ImageMagick
|
||
git clone https://github.com/stefanhaustein/TerminalImageViewer.git
|
||
cd TerminalImageViewer/src/main/cpp
|
||
make
|
||
sudo make install
|
||
|
||
### Homebrew (MacOS)
|
||
|
||
Option 1:
|
||
```
|
||
brew tap stefanhaustein/TerminalImageViewer https://github.com/stefanhaustein/TerminalImageViewer
|
||
brew install tiv
|
||
```
|
||
Option 2(deprecated, for macOS Mojave and below):
|
||
```
|
||
brew tap stefanhaustein/TerminalImageViewer https://github.com/stefanhaustein/TerminalImageViewer
|
||
brew install terminalimageviewer
|
||
```
|
||
Option 3(deprecated):
|
||
```
|
||
brew install https://raw.githubusercontent.com/stefanhaustein/TerminalImageViewer/master/terminalimageviewer.rb
|
||
```
|
||
|
||
### Snap (outdated)
|
||
|
||
sudo snap install --edge tiv
|
||
|
||
## Usage
|
||
|
||
tiv [options] <filename(s)>
|
||
|
||
The shell will expand wildcards. By default, thumbnails and file names will be displayed if more than one image is provided. To display a list of options, just run the command without any parameters.
|
||
|
||
## Packages / Contributions
|
||
|
||
- megamaced has created a RPM for SUSE:
|
||
https://build.opensuse.org/package/show/home:megamaced/terminalimageviewer
|
||
- bperel has created a Docker image:
|
||
https://hub.docker.com/r/bperel/terminalimageviewer
|
||
- teresaejunior has created a snapcraft.yaml file, which can build a Snap package with `sudo docker run -it --rm -v "$PWD:$PWD" -w "$PWD" snapcore/snapcraft sh -c 'apt-get update && snapcraft'`, and then installed with `sudo snap install --dangerous ./*.snap`.
|
||
- aaronliu0130 has added brew support.
|
||
|
||
I am happy to accept useful contributions under the Apache 2.0 licencse, but it might make sense to file an issue to discuss the approach before investing large amounts of time.
|
||
|
||
Support for additional platforms, CPUs or similar will require somebody who is happy to help with maintenance, in particular, if I don't have access to it.
|
||
|
||
## Common problems
|
||
|
||
- On some linux platforms, an extra flag seems to be required: `make LDLIBS=-lstdc++fs` (but it also breaks MacOs), see https://github.com/stefanhaustein/TerminalImageViewer/issues/103
|
||
- If you see strange horizontal lines, the characters don't fully fill the character cell. Remove additional line spacing in your terminal app
|
||
- Wrong colors? Try -256 to use a 256 color palette instead of 24 bit colors
|
||
- Strange characters? Try -0 or install an use full unicode font (e.g. inconsolata or firacode)
|
||
|
||
|
||
## Examples
|
||
|
||
![Examples](https://i.imgur.com/8UyGjg8.png)
|
||
|
||
If multiple images match the filename spec, thumbnails are shown.
|
||
|
||
![Thumbnails](https://i.imgur.com/PTYgSqz.png)
|
||
|
||
## Comparison to Using Half-Block Characters Only
|
||
|
||
The top image was generated with the character optimization disabled via the `-0` option.
|
||
|
||
![Comparison](https://i.imgur.com/OzdCeh6.png)
|
||
|