| 
			
			 | 
		#1 | 
| 
			
			
			
			 Enthusiast 
			
			![]() ![]() ![]() Posts: 49 
				Karma: 208 
				Join Date: Nov 2012 
				
				
				
				Device: Kobo Glo 
				
				
				 | 
	
	
	
		
		
			
			 
				
				Take screenshot from Kobo
			 
			
			
			Thanks to this link: http://www.cnx-software.com/2010/07/...er-screenshot/ 
		
	
		
		
		
		
		
		
		
		
		
		
		
			we can make screenshot from our Kobo screen. * requires telnet run this command: Code: 
	cat /dev/fb0 > screen.raw Create a new perl script with this contents: Code: 
	#!/usr/bin/perl -w
$w = shift || 240;
$h = shift || 320;
$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);
   print OUT pack("C3",
      ($short & 0xf800) >> 8,
      ($short & 0x7e0) >> 3,
      ($short & 0x1f) << 3);
}
close OUT;
after that run this: change the resolution to your Kobo screen (I have a kobo Glo) Code: 
	./FILE.SH 1024 758 < screen.raw > screen.png Last edited by koenieee; 01-04-2013 at 05:37 AM.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#2 | 
| 
			
			
			
			 Groupie 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 168 
				Karma: 1000036 
				Join Date: Oct 2008 
				Location: Citizen of the World 
				
				
				Device: iPod Touch, Nook Colour, Kobo Touch, Kobo Glo, Nexus 7, Nexus 5, Pixel 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Good one!
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#3 | 
| 
			
			
			
			 Groupie 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 197 
				Karma: 1086780 
				Join Date: Jul 2012 
				
				
				
				Device: Kobo H2O Ed. 2, Glo HD, Glo, Touch, Clara HD 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Someone with telnet set up, you could use this technique to determine the Kobo Glo's maximum native image size and forward this information onto the Calibre developers in order to create an optomized Kobo Glo output profile.
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#4 | |
| 
			
			
			
			 Enthusiast 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 40 
				Karma: 8604 
				Join Date: Dec 2012 
				Location: Germany 
				
				
				Device: Kobo Touch 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			I'm triggering the following script via an integrated webserver on the kobo touch... screenshots directly to the desktop ^^ 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Quote: 
	
  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5 | 
| 
			
			
			
			 Addict 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 264 
				Karma: 9246 
				Join Date: Feb 2010 
				Location: Berlin, Germany 
				
				
				Device: Kobo H20, iPhone 6+, Macbook Pro 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Is there any easy-to-use-script for the Kobo Glo to get a screenshot directly to the desktop or a configurable folder on a pc? 
		
	
		
		
		
		
		
		
		
		
		
		
	
	I have no experience with the console at all. Or is there a calibre plugin which "pulls" a screenshot? Thanks.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#6 | 
| 
			
			
			
			 Grand Sorcerer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 24,905 
				Karma: 47303824 
				Join Date: Jul 2011 
				Location: Sydney, Australia 
				
				
				Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			If you look at https://www.mobileread.com/forums/sho...d.php?t=218376, one of the options is a screenshot. When you add:  
		
	
		
		
		
		
		
		
		
		
		
		
	
	Code: 
	[FeatureSettings] Screenshots=true  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#7 | 
| 
			
			
			
			 Addict 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 264 
				Karma: 9246 
				Join Date: Feb 2010 
				Location: Berlin, Germany 
				
				
				Device: Kobo H20, iPhone 6+, Macbook Pro 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			@davidfor 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Thanks!   Works perfectly!
		 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#8 | |
| 
			
			
			
			 Member 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 22 
				Karma: 4897 
				Join Date: Dec 2012 
				
				
				
				Device: Kobo Glo 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#9 | 
| 
			
			
			
			 Guru 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 963 
				Karma: 149907 
				Join Date: Jul 2013 
				Location: Rotterdam 
				
				
				Device: HiSenseA5ProCC, OnyxNotePro, Note5, Kobo Glo, Aura 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			If you use koreader and the multi touch modification, you can also take a screenshot inside koreader by pressing both diagonal corners.  
		
	
		
		
		
		
		
		
		
		
		
		
		
			It creates a pam-file in koreader/screenshots, which can be viewed and converted with a program like Imagemagick. Last edited by Markismus; 05-17-2014 at 08:58 AM.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#10 | 
| 
			
			
			
			 Junior Member 
			
			![]() Posts: 3 
				Karma: 10 
				Join Date: Dec 2013 
				
				
				
				Device: Kobo aura hd 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			I have koreader installed, how do I  enable the multitouch functionality ? Right now pressing diagonal corners doesn't create the screenshots :-(
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#11 | 
| 
			
			
			
			 Terraner 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 532 
				Karma: 4455667 
				Join Date: Aug 2011 
				
				
				
				Device: Kobo Libra, Aura One, Kindle Oasis 1 & 2 ... 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Just swipe from bottom left to upper corner right. This will create a screenshot, which can be found in koreader/screenshots.
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#12 | 
| 
			
			
			
			 Zealot 
			
			![]() Posts: 104 
				Karma: 10 
				Join Date: Jul 2011 
				Location: Gētīg 
				
				
				Device: Kobo Aura HD / Kobo Aura ONE 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Even Gimp doesn't open .pam files in windows. What program do you recommend for opening such file formats in Windows?
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#13 | 
| 
			
			
			
			 Terraner 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 532 
				Karma: 4455667 
				Join Date: Aug 2011 
				
				
				
				Device: Kobo Libra, Aura One, Kindle Oasis 1 & 2 ... 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			You can use ImageMagick to open .pam files. http://www.imagemagick.org/script/bi...es.php#windows
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#15 | 
| 
			
			
			
			 Zealot 
			
			![]() Posts: 104 
				Karma: 10 
				Join Date: Jul 2011 
				Location: Gētīg 
				
				
				Device: Kobo Aura HD / Kobo Aura ONE 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Thank you everybody. Now it sometimes takes screenshots and sometimes doesn't! When e.g. I wanna take a screenshot from the opened dictionary, it doesn't take any snapshots.
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
![]()  | 
            
        
            
            
  | 
    
			 
			Similar Threads
		 | 
	||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Taking a screenshot on Kindle 4 | Blog Kindle | Amazon Kindle | 2 | 10-06-2012 02:44 PM | 
| ssknap (v1) - screenshot as screensaver | fbdev | Kindle Developer's Corner | 6 | 10-22-2011 10:41 PM | 
| Post a screenshot of your desktop. | KryptoNyte | Nook Developer's Corner | 103 | 07-09-2011 05:48 PM | 
| DR800 screenshot | madusaya | iRex | 5 | 04-29-2010 07:31 PM | 
| Screenshot Capability? | wallcraft | OpenInkpot | 4 | 12-31-2008 02:41 PM |