ImageMagick
-
create a thumbnail by command lineComputer/linux 2011. 9. 27. 23:45
imagemagick can do almost everything ..... convert -thumbnail widthxheight a.png a.thumbnail.png convert -thumbnail 120 a.png a.thumb.png (width 120px) convert -thumbnail 120x120 a.png a.thumb.png (width/height 120px) convert -thumbnail x120 a.png a.thumb.png (height 120px)
-
How to do screenshot with ImageMagick in the xterm.Computer/linux 2008. 1. 5. 01:00
How to do screenshot with ImageMagick in the xterm. $ import screenshot.png $ import -frame screenshot.png The above command changes the mouse icon (cross symbol)choose the window you want to make the screenshot.-frame option includes window manager frame $ import -window root screenshot.png screenshot with all screens and windows... more detailed infos about import: http://linuxreviews.org/man/..