- #!/usr/bin/ksh93
- #
- # SIXEL test #2
- #
- # Written by Roland Mainz <roland.mainz@nrubsig.org>
- # Use within an XTERM started with xterm -ti vt340 -bc
- #
- builtin cat
- typeset infile="/usr/lib/x86_64-linux-gnu/perl5/5.32/Tk/demos/images/teapot.ppm"
- typeset out
- #
- # Note that the shell pipeline runs in parallel.
- # so output of ppmquant can interfere with
- # data written to the terminla while in SIXEL mode,
- # causing artifacts
- # The workaround is to write the data into the "out" variable,
- # and then send them to the terminal/stdout when the pipeline is done
- #
- out="${
- cat "$infile" | \
- ppmquant 256 | \
- { printf "\EPq" ; ppmtosixel ; printf "\E\\" ; } ;
- }"
- printf '%s\n' "$out"
- # EOF.
xterm SIXEL test #2
Posted by Anonymous on Tue 3rd Jan 2023 13:50
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.