View source for Talk:Screen Grabber

From Openmoko

Jump to: navigation, search

You do not have permission to edit this page, for the following reasons:

  • The action you have requested is limited to users in the group: Administrators.
  • You must confirm your email address before editing pages. Please set and validate your email address through your user preferences.

You can view and copy the source of this page:

Return to Talk:Screen Grabber.

Personal tools

You can grab screen shots manually by using the following command on your Neo:

# cat /dev/fb0 >myscreenshot_001.raw

You can then convert this on your pc with fb2png by using the following command:

# fb2png myscreenshot_001.raw myscreenshot_001.png 9 480 640 16


You can also push a screen capture back onto the display:

# cat myscreenshot_001.raw >/dev/fb0


If you want to show a sequence of screens in an animation you can use convert. Once you have all your screen shots as .pngs try:

# convert -delay 25 -dispose Background +page myscreenshot_*.png -loop 0 animated_test.gif