Tuesday, November 26, 2013

How to take Screenshots with Google Glass?

How to take Screenshots with Google Glass?

In order to take screenshots with Google Glass as of now is to simply do it via the command line with ADB!




Check out these two commands that can easily take care of this for you:

adb shell /system/bin/screencap -p /sdcard/FILE.png
adb pull /sdcard/FILE.png FILE.png

1 comment:

  1. To take multiple screenshots in succession, use/edit this script:

    #!/bin/bash
    date=$(date +%s)
    adb shell /system/bin/screencap -p /sdcard/${date}.png
    adb pull /sdcard/${date}.png ~/Desktop/${date}.png

    ReplyDelete

Please make suggestions :)