Scrungepipes
Scrungepipes

Reputation: 37581

Screenshots of circular watch are square

I'm trying to take screenshots of a Moto 360 watch (which is round) but they are coming out as square. For example the following commands will produce this:

adb -s localhost:4444 shell screencap -p /sdcard/screenshot.png
adb -s localhost:4444 pull /sdcard/screenshot.png

enter image description here

In addition to adb I know there is the "Take wearable screenshot" menu option in the Android Wear app but when I select that it says "Screenshot request sent" but nothing else happens after that. There is no ""Wearable screenshot finished. Touch to send." message which I've read is supposed to appear next.

Upvotes: 0

Views: 347

Answers (1)

ianhanniballake
ianhanniballake

Reputation: 199825

Internally, even round Android Wear devices uses a square frame buffer so what you are seeing is expected. You can manually circle crop the image or many device screenshot generators (and the preview image for watch faces) do this automatically for you.

Upvotes: 1

Related Questions