25. Juni 2007

Linux Screenshots

Category: Allgemein,Work — Christian @ 09:14

Kann man immer mal brauchen:

The Lazy Man’s Way to Linux Screenshots

Die Kurzzusammenfassung:

The Import Screenshot Method

    $ netscape -display servername:0 &
    $ import -window root -display servername:0 myfile01.pcx

Resolution and Color Reduction

    $ import -window root -geometry 640:480 -display servername:0 myfile01.pcx
    $ import -window root -colors 16 +dither -display servername:0 myfile01.pcx

The xwd Screenshot Method

    $ netscape -display servername:0 &
    $ xwd -display servername:0 -root > myfile.dmp
    $ convert myfile.dmp myfile.pcx

Color Reducing the Screenshot

    $ convert -depth 24 $1 $1
    $ convert -depth 16 $1 $1
    $ convert -depth 8 $1 $1
    $ convert -colors 16 $1 $1

Das war’s auch schon

1 Kommentar

  1. Kommentare gesperrt wegen Spam

    Comment by Christian — 7. Juni 2012 @ 07:17

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.