Linux – n image viewer that takes images on STDIN

image-viewerimageslinuxunix

I'm looking for an image viewer that takes data on stdin and can be run like:

cat image.png | imageviewer

Best Answer

ImageMagick's display program will do just that, assuming you pipe it something that it understands.

cat image.png | display

and it'll pop up a window showing that image.

Related Question