|  07-27-2014, 12:55 PM | #16 | 
| BLAM!            Posts: 13,506 Karma: 26047202 Join Date: Jun 2010 Location: Paris, France Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E | 
			
			I tweaked my FBGrab build, it should now handle Kobo devices properly. It generates PNG files, which are far easier to work with  . tshering tested it on a Touch, give me a shout if it's broken on other devices. | 
|   |   | 
|  09-19-2014, 05:34 PM | #17 | 
| Member  Posts: 18 Karma: 10 Join Date: Aug 2014 Device: Kobo Aura HD | 
			
			I modified the code from the first post to work with a framebuffer dump from my Aura HD: Code: #!/usr/bin/perl -w
$w = shift || 1088;
$h = shift || 1440;
$pixels = $w * $h;
open OUT, "|pnmtopng" or die "Can't pipe pnmtopng: $!\n";
printf OUT "P6%d %d\n255\n", $w, $h;
while ((read STDIN, $raw, 2) and $pixels--) {
$short = unpack('S', $raw);
$x = $short % 256;
print OUT pack("C3", $x, $x, $x);
}
close OUT; | 
|   |   | 
|  11-19-2014, 10:54 AM | #18 | |
| Connoisseur            Posts: 62 Karma: 13112 Join Date: Feb 2013 Device: Kindle Paperwhite; KOBO AURA HD | Quote: 
   | |
|   |   | 
|  05-12-2017, 08:13 AM | #19 | 
| Guru            Posts: 983 Karma: 2209358 Join Date: Nov 2011 Location: London, UK Device: Kobo Aura, Kobo Aura ONE, PocketBook InkPad Color 3 | 
			
			I know this is an old thread, but I wanted to note that this still works on the KA1 running 4.4.9298 firmware. The saved screenshots are now in PNG format. | 
|   |   | 
|  08-29-2022, 04:18 AM | #20 | 
| Guru            Posts: 706 Karma: 2153490 Join Date: Aug 2021 Location: Stupid Philippines Device: Kobo Libra 2, Boyue Likebook P78 | 
			
			I saw a color screenshot of the homescreen posted here in the forum. How do we do that? The book covers are in color. | 
|   |   | 
|  08-29-2022, 04:33 AM | #21 | 
| Resident Curmudgeon            Posts: 80,719 Karma: 150249619 Join Date: Nov 2006 Location: Roslindale, Massachusetts Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3 | |
|   |   | 
|  08-29-2022, 08:00 AM | #22 | |
| Guru            Posts: 706 Karma: 2153490 Join Date: Aug 2021 Location: Stupid Philippines Device: Kobo Libra 2, Boyue Likebook P78 | Quote: 
 This book covers are in color in Calibre. Does Calibre convert them to grayscale? | |
|   |   | 
|  08-29-2022, 08:36 AM | #23 | |
| Grand Sorcerer            Posts: 6,266 Karma: 16544702 Join Date: Sep 2009 Location: UK Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3 | Quote: 
 There's a similar option in the 'Kobo Utilities' calibre plugin for the option 'Upload covers for selected books'. | |
|   |   | 
|  08-29-2022, 09:02 AM | #24 | |
| Resident Curmudgeon            Posts: 80,719 Karma: 150249619 Join Date: Nov 2006 Location: Roslindale, Massachusetts Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3 | Quote: 
 That does the converting to grayscale and dithering and uploads the cover thumbnails. | |
|   |   | 
|  08-30-2022, 03:20 AM | #25 | ||
| Guru            Posts: 706 Karma: 2153490 Join Date: Aug 2021 Location: Stupid Philippines Device: Kobo Libra 2, Boyue Likebook P78 | Quote: 
 Quote: 
 That is the thing, both my kobo touch and kobotouch extended settings are set like this, so it should take color screenshot but still B&W screenshots are produced. | ||
|   |   | 
|  08-30-2022, 04:32 AM | #26 | 
| Resident Curmudgeon            Posts: 80,719 Karma: 150249619 Join Date: Nov 2006 Location: Roslindale, Massachusetts Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3 | 
			
			What happens if you take a screenshot of the cover that's in the eBook? That should not have been converted to grayscale and should still be in color.
		 | 
|   |   | 
|  08-30-2022, 06:07 AM | #27 | |
| Guru            Posts: 706 Karma: 2153490 Join Date: Aug 2021 Location: Stupid Philippines Device: Kobo Libra 2, Boyue Likebook P78 | Quote: 
 But Homescreen covers are in grayscale | |
|   |   | 
|  08-30-2022, 08:30 AM | #28 | 
| Resident Curmudgeon            Posts: 80,719 Karma: 150249619 Join Date: Nov 2006 Location: Roslindale, Massachusetts Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3 | 
			
			I suggest you ask in the KoboTouchExtended thread if it's maybe a bug and it's converting to grayscale anyway. But before you do that, I suggest plugging in your Kobo and having a look at the thumbnails and see if they are color or grayscale.
		 | 
|   |   | 
|  08-30-2022, 10:46 AM | #29 | 
| Guru            Posts: 706 Karma: 2153490 Join Date: Aug 2021 Location: Stupid Philippines Device: Kobo Libra 2, Boyue Likebook P78 | 
			
			Thumbnails are all in color
		 | 
|   |   | 
|  08-30-2022, 07:26 PM | #30 | 
| Resident Curmudgeon            Posts: 80,719 Karma: 150249619 Join Date: Nov 2006 Location: Roslindale, Massachusetts Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3 | |
|   |   | 
|  | 
| Thread Tools | Search this Thread | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Taking a screenshot on Kindle 4 | Blog Kindle | Amazon Kindle | 2 | 10-06-2012 01:44 PM | 
| ssknap (v1) - screenshot as screensaver | fbdev | Kindle Developer's Corner | 6 | 10-22-2011 09:41 PM | 
| Post a screenshot of your desktop. | KryptoNyte | Nook Developer's Corner | 103 | 07-09-2011 04:48 PM | 
| DR800 screenshot | madusaya | iRex | 5 | 04-29-2010 06:31 PM | 
| Screenshot Capability? | wallcraft | OpenInkpot | 4 | 12-31-2008 01:41 PM |