Curl
如何顯示以二進制流形式出現的圖像?
我想顯示從
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 -
另外,我認為 KDE
gwenview
可以做到:curl https://example.com/image.png --output - | gwenview /dev/stdin