Curl

如何顯示以二進制流形式出現的圖像?

  • March 10, 2022

我想顯示從curl命令接收到的圖像。例如,我想使用 Eye of Gnome 來顯示它。我怎樣才能做到這一點?

就像是:

curl https://example.com/image.png --output - | eog

我想直接顯示它,而不是先保存在磁碟上。

有沒有辦法做到這一點?

您可以為此使用 ImageMagicks display

curl https://example.com/image.png --output - | display

如果您使用 X11(或使用 XWayland),feh也支持此功能:

curl https://example.com/image.png --output - | feh --scale-down -  

另外,我認為 KDEgwenview可以做到:

curl https://example.com/image.png --output - | gwenview /dev/stdin

引用自:https://unix.stackexchange.com/questions/693820