If you simply have a series of `.jpeg` images that you wish to display in a tty, you can use `aview` or `asciiview`. When calling `asciiview` with an image, it will convert the image to the `.pnm` format - using an external program like NetPBM or ImageMagic - before passing it to `aview` for displaying. The `.pnm` is the `ascii` image format used to represent the image as set of characters. To view an image in this format, simply use:
$ asciiview foo.jpeg
or to save a `.pnm` copy first:
$ convert foo.jpeg foo.pnm
$ aview foo.pnm
These support the driver from `aalib`.