How to preview images
Vifm v0.8 onward provides four macros describing preview area that can be used along with external applications to preview images in a terminal, they are:
%pxx coordinate of top-left corner of preview area;%pyy coordinate of top-left corner of preview area;%pwwidth of preview area;%phheight of preview area.
|
NOTE Because terminals were built to display text rather than images, making them display images can be problematic. Some solutions work better in some environments than others, but none of them is perfect. |
Vifmimg[edit]
For a painless image preview integration visit the project vifmimg on Github.
Überzug[edit]
For an instruction on how to use Überzug, which is likely to work better than w3m, see this video.
The video is based on this thread.
|
NOTE Original project isn't maintained anymore. You might have to use this fork or ÜberzugPP. |
iTerm2[edit]
See issue #299 on GitHub for a command for OS X in iTerm2.
Sixel graphics[edit]
If you're using a terminal which has good support of Sixel (i.e., it clears it properly) along with Vifm v0.10.1+ (for %pd macro), see issue #419 on GitHub for sample configuration.
w3m[edit]
Below is a description and an example of making this work using w3m on GNU/Linux.
Mind that the support is lacking and you might have trouble making this work in many terminals. xterm without double-buffering tends to work better than others.
Prerequisites[edit]
1. w3mimgdisplay which might be part of w3m package or a separate one.
2. Terminal emulator without double buffering, otherwise w3m will fail to display images properly.
Setup[edit]
1. Create script that invokes w3m. w3mimgdisplay executable might reside in
different locations depending on the distribution. Below is a sample script, which can be used
after correcting several parameters at the top.
#!/bin/sh
#
# Based on script by z3bra -- 2014-01-21
w3mimgdisplay='/usr/libexec/w3m/w3mimgdisplay'
fonth=15 # Size of one terminal row in pixels
fontw=8 # Size of one terminal column in pixels
x=$1
y=$2
cols=$3
lines=$4
file=$5
widthheight=$(printf '5;%s' "$file" | "$w3mimgdisplay")
width=${widthheight% *}
height=${widthheight#* }
if [ -z "$width" ] || [ -z "$height" ]; then
echo 'Failed to obtain image size. Check if fonth and fontw are correct.'
exit 1
fi
x=$((fontw * x))
y=$((fonth * y))
max_width=$((fontw * cols))
max_height=$((fonth * lines))
if [ "$width" -gt "$max_width" ]; then
height=$((height * max_width / width))
width=$max_width
fi
if [ "$height" -gt "$max_height" ]; then
width=$((width * max_height / height))
height=$max_height
fi
printf '0;1;%s;%s;%s;%s;;;;;%s\n4;\n3;' "$x" "$y" "$width" "$height" "$file" |
"$w3mimgdisplay"
2. Update vifmrc with preview command like the following:
fileviewer *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm
\ imgt %px %py %pw %ph %c
Replace "imgt" with path to preview script or just update name if
script is available in your $PATH (which is the case if you put it
under $VIFM/scripts).
Notes[edit]
State of terminal support[edit]
One should be aware that this is kinda hack as terminals weren't made to display pictures, thus there might be some difficulties (like double buffering or incomplete clearing). That said, it does work in sufficient amount of configurations.
Positioning[edit]
When running inside terminal emulators, coordinates known to applications are relative to pane/window position. This should be taken into account, because without applying proper offsets images may appear in unexpected locations.
Clearing[edit]
Depending on your terminal this may be enough or require additional
script for clearing image leftovers (below), development version of vifm and changed :fileviewer command like this:
fileviewer *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm
\ imgt %px %py %pw %ph %c
\ %pc
\ imgc %px %py %pw %ph
Where imgc is a script that clears background of the terminal (it's configuration is at the top):
#!/bin/bash
W3MIMGDISPLAY="/usr/libexec/w3m/w3mimgdisplay"
FONTH=15 # Size of one terminal row
FONTW=7 # Size of one terminal column
X=$1
Y=$2
COLUMNS=$3
LINES=$4
x=$((FONTW * X))
y=$((FONTH * Y))
erase="6;$x;$y;$(( FONTW*COLUMNS ));$(( FONTH*LINES ))\n3;"
echo -e "$erase" | $W3MIMGDISPLAY
This is the case at least for urxvt.
See also[edit]
- Images in terminal for base of the script above.
- Issue #82 on GitHub for similar description and some discussion of some issues.
- Issue #102 on GitHub for report on image clearing issues.
kitty[edit]
See issue #731 on GitHub for an example configuration. The right configuration is dependent on the version of vifm and kitty.
Other options[edit]
In case everything else doesn't work well and you're fine sacrificing quality, there are numerous other tools which approximate images using characters.
|
NOTE Vifm before v0.12 didn't support 24-bit colors, so undefine |
Non-exhaustive list of such tools:
In addition to approximations, several of the tools also support alternative backends/protocols for displaying images like Sixel, iTerm or Kitty.