LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-05-2009, 03:56 PM   #1
LNXlady
LQ Newbie
 
Registered: Feb 2009
Posts: 10

Rep: Reputation: 0
Is there anything similar to Snippit?


I've been trying to find some Linux compatible software that is similar to the Snippit program that came on my Vista laptop. It lets you take a screenshot of any part of the screen and then write directly on that image and save it. Snippit lets me write freehand, using my tablet, but if there was something similar that just let me type notes directly onto the image, that would be good enough. I'd prefer the save type to be an image file so I can easily scan through the thumbnails to find what I want later. I know there are screen capture programs, but I want to be able to add the annotations. Does anyone know of something similar to this for Linux? TIA
 
Old 02-05-2009, 04:29 PM   #2
alan_ri
Senior Member
 
Registered: Dec 2007
Location: Croatia
Distribution: Debian GNU/Linux
Posts: 1,733
Blog Entries: 5

Rep: Reputation: 127Reputation: 127
Hi and welcome!
Maybe ImageMagic is what you need.
I know that with Gimp you can edit any image and write on it,also there is Byzanz and Kim that might help you.I never needed to do what you're doing so maybe there is more apps for what you need(most likely)but I don't know about them.
 
Old 02-05-2009, 04:45 PM   #3
rweaver
Senior Member
 
Registered: Dec 2008
Location: Louisville, OH
Distribution: Debian, CentOS, Slackware, RHEL, Gentoo
Posts: 1,833

Rep: Reputation: 167Reputation: 167
Quote:
Originally Posted by LNXlady View Post
I've been trying to find some Linux compatible software that is similar to the Snippit program that came on my Vista laptop. It lets you take a screenshot of any part of the screen and then write directly on that image and save it. Snippit lets me write freehand, using my tablet, but if there was something similar that just let me type notes directly onto the image, that would be good enough. I'd prefer the save type to be an image file so I can easily scan through the thumbnails to find what I want later. I know there are screen capture programs, but I want to be able to add the annotations. Does anyone know of something similar to this for Linux? TIA
Gimp will do what you need to do, but it's not a little simple application like what you're looking for.
 
Old 02-06-2009, 02:37 PM   #4
LNXlady
LQ Newbie
 
Registered: Feb 2009
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by rweaver View Post
Gimp will do what you need to do, but it's not a little simple application like what you're looking for.
Right, I have GIMP and it's great but not a quick way to do what I need and not a small app to keep loaded and ready, either. I'll check out the others Alan mentioned and see if they would work. Thanks, both of you.

EDIT: I just checked the others and none of them seem to have the ability to annotate the image. This is really such a useful tool, it seems like someone would have created something similar for Linux. Anyone have other suggestions?

Last edited by LNXlady; 02-06-2009 at 02:48 PM.
 
Old 02-09-2009, 08:19 AM   #5
rweaver
Senior Member
 
Registered: Dec 2008
Location: Louisville, OH
Distribution: Debian, CentOS, Slackware, RHEL, Gentoo
Posts: 1,833

Rep: Reputation: 167Reputation: 167
Quote:
Originally Posted by LNXlady View Post
Right, I have GIMP and it's great but not a quick way to do what I need and not a small app to keep loaded and ready, either. I'll check out the others Alan mentioned and see if they would work. Thanks, both of you.

EDIT: I just checked the others and none of them seem to have the ability to annotate the image. This is really such a useful tool, it seems like someone would have created something similar for Linux. Anyone have other suggestions?
Hmm... this url lists some various ways to aquire the image, and imagemagick can add text but its hard to do unless you're using a static location to put the text. You an find an example of how to do that with ImageMagick here.

You might be better off setting up a command that execute a program like gpaint / kolourpaint / mtpaint (all small simple paint programs) on the resulting screenshot.

Maybe something to the tune of (using imagemagick and gpaint)...

ss.sh
Code:
#!/bin/bash
DATE='date +%h-%d-%Y-%H:%M:%S'
import -window root ${DATE}.png && gpaint ${DATE}.png
Then bind that to a key combo or make an icon on your desktop/menus/panel to execute it. Only limit there is about 1 ss/sec.

Another program to check out to see if it has the functionality is "xv" I've not used it since the late 90s, but it does basic image viewing and some image editing and its fairly lightweight. It may have a function to add text, but I can't say for sure.

Last edited by rweaver; 02-09-2009 at 08:22 AM.
 
Old 02-09-2009, 02:11 PM   #6
tdos20
Member
 
Registered: Aug 2006
Location: London
Distribution: Slackware
Posts: 132

Rep: Reputation: 39
in compiz fusion theres a screenshot plugin and an annotate plugin, using the annotate first followed by the screenshot may do what you desire
 
Old 02-10-2009, 06:48 AM   #7
LNXlady
LQ Newbie
 
Registered: Feb 2009
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by rweaver View Post
Hmm... this url lists some various ways to aquire the image, and imagemagick can add text but its hard to do unless you're using a static location to put the text. You an find an example of how to do that with ImageMagick here.

You might be better off setting up a command that execute a program like gpaint / kolourpaint / mtpaint (all small simple paint programs) on the resulting screenshot.

Maybe something to the tune of (using imagemagick and gpaint)...

ss.sh
Code:
#!/bin/bash
DATE='date +%h-%d-%Y-%H:%M:%S'
import -window root ${DATE}.png && gpaint ${DATE}.png
Then bind that to a key combo or make an icon on your desktop/menus/panel to execute it. Only limit there is about 1 ss/sec.

Another program to check out to see if it has the functionality is "xv" I've not used it since the late 90s, but it does basic image viewing and some image editing and its fairly lightweight. It may have a function to add text, but I can't say for sure.
Thanks, but that's a bit beyond me right now. I haven't heard of xv, but I'll look it up.
 
Old 02-10-2009, 06:50 AM   #8
LNXlady
LQ Newbie
 
Registered: Feb 2009
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by tdos20 View Post
in compiz fusion theres a screenshot plugin and an annotate plugin, using the annotate first followed by the screenshot may do what you desire

I don't normally like to run compiz fusion, but it sounds like it might be worth a shot. Thanks.
 
Old 02-10-2009, 08:06 AM   #9
rweaver
Senior Member
 
Registered: Dec 2008
Location: Louisville, OH
Distribution: Debian, CentOS, Slackware, RHEL, Gentoo
Posts: 1,833

Rep: Reputation: 167Reputation: 167
Quote:
Originally Posted by LNXlady View Post
Thanks, but that's a bit beyond me right now. I haven't heard of xv, but I'll look it up.
Make sure you check out the paint programs I mentioned too, one of them may have screen shotting capabilities and if it does they will let you do annotation in them. They're all small and fairly simple compared to gimp (think mspaint).
 
Old 02-11-2009, 06:30 AM   #10
LNXlady
LQ Newbie
 
Registered: Feb 2009
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by rweaver View Post
Make sure you check out the paint programs I mentioned too, one of them may have screen shotting capabilities and if it does they will let you do annotation in them. They're all small and fairly simple compared to gimp (think mspaint).
OK, I'll check them too, but they'd need to be really small as I'd planned to keep the app running all the time. Or either they'd need to load almost instantly. I thought I'd found an experimental Firefox plugin that would do the trick yesterday, but I couldn't get it to work. Maybe after they've tweaked it a bit more it will, though.
 
  


Reply

Tags
gimp, imagemagick



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Similar protocols? ravish.kanika Linux - General 1 02-16-2008 04:42 PM
C similar struct's greeklegend Programming 12 12-18-2007 11:45 AM
Looking for somewhat similar to potatoque Linux - Software 4 10-14-2006 11:50 PM
Similar code for c vishalbutte Programming 5 01-17-2006 04:25 AM
dc++ or similar porio Linux - Software 3 04-27-2005 09:00 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:45 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration