Screenshot Utilities

Moderator: Forum moderators

User avatar
greengeek
Posts: 1218
Joined: Thu Jul 16, 2020 11:06 pm
Has thanked: 349 times
Been thanked: 146 times

Re: Screenshot Utilities

Post by greengeek »

Great idea for a central index for these utils.

But don't forget to add T.A.S - been my favourite for a long time.
darry19662018
Posts: 453
Joined: Sat Dec 14, 2019 12:24 am
Has thanked: 54 times
Been thanked: 65 times

Re: Screenshot Utilities

Post by darry19662018 »

Thanks GG,
Forgot about that one.
User avatar
mikeslr
Posts: 2848
Joined: Mon Jul 13, 2020 11:08 pm
Has thanked: 173 times
Been thanked: 859 times

Re: Screenshot Utilities -mtpaint snapshot

Post by mikeslr »

IIRC, 01micko developed the script for using mtpaint's snapshot capability. I think I packaged it as a pet with a desktop file so that I could use it in a taskbar launcher.

The GUI provides four choices for delaying taking a snapshot of your desktop: Now, 2 sec., 5 secs, 10 secs. A snapshot of your entire desktop is taken and opened in mtpaint where you can use all of its capabilities. If you want to preserve only a portion of the screenshot, you 'lasso' the part you want.
mtpaintsnapshot-2.014.pet
mtpaint snapshot
(5.51 KiB) Downloaded 101 times
User avatar
smokey01
Posts: 171
Joined: Sun Jul 12, 2020 10:46 am
Location: Australia
Has thanked: 21 times
Been thanked: 25 times
Contact:

Re: Screenshot Utilities

Post by smokey01 »

Jamesbond's Xscreenshot is very good also. It comes with Fatdog64.

https://www.lightofdawn.org/wiki/wiki.cgi/Xscreenshot
step
Posts: 516
Joined: Thu Aug 13, 2020 9:55 am
Has thanked: 50 times
Been thanked: 184 times
Contact:

Re: Screenshot Utilities

Post by step »

Fredx181's Take-a-GIF (tkagif / TKAGIF), a fork of TAS.
User avatar
fredx181
Posts: 2648
Joined: Tue Dec 03, 2019 1:49 pm
Location: holland
Has thanked: 293 times
Been thanked: 1041 times
Contact:

Re: Screenshot Utilities

Post by fredx181 »

step wrote: Fri Aug 14, 2020 5:43 am Fredx181's Take-a-GIF (tkagif / TKAGIF), a fork of TAS.
See here:
http://oldforum.puppylinux.com/puppy/vi ... p?t=118623

Fred
User avatar
Dingo
Posts: 244
Joined: Sat Aug 01, 2020 3:03 pm
Has thanked: 10 times
Been thanked: 17 times

Re: Screenshot Utilities

Post by Dingo »

User avatar
stemsee
Posts: 658
Joined: Sun Jul 26, 2020 8:11 am
Location: lattitude 0
Has thanked: 162 times
Been thanked: 104 times
Contact:

Re: Screenshot Utilities -mtpaint snapshot

Post by stemsee »

mikeslr wrote: Thu Aug 13, 2020 9:57 pm IIRC, 01micko developed the script for using mtpaint's snapshot capability. I think I packaged it as a pet with a desktop file so that I could use it in a taskbar launcher.

The GUI provides four choices for delaying taking a snapshot of your desktop: Now, 2 sec., 5 secs, 10 secs. A snapshot of your entire desktop is taken and opened in mtpaint where you can use all of its capabilities. If you want to preserve only a portion of the screenshot, you 'lasso' the part you want.

mtpaintsnapshot-2.014.pet
or cli

Code: Select all

sleep 3 && mtpaint -s & exit
Last edited by stemsee on Mon Aug 17, 2020 9:27 am, edited 1 time in total.
User avatar
MochiMoppel
Posts: 1135
Joined: Mon Jun 15, 2020 6:25 am
Location: Japan
Has thanked: 18 times
Been thanked: 369 times

Re: Screenshot Utilities

Post by MochiMoppel »

...or GUI with "enhanced user experience" ;)

Code: Select all

for i in 'Shoot‎ the ‎screen ‎after '{5..1}' sec' Fire\!;do echo XXX;echo $i;echo XXX;read -t1;done|Xdialog -but text -can 'Oh no!!' -info '' 220x80 0 && mtpaint -s
Can be run from the command line or script, but I put it directly into my JWM config file as a <Key> tag and assigned shortcut Ctrl+PrintScrn to it. No need for a script file. Requires Xdialog.
mistfire
Posts: 662
Joined: Thu Jul 16, 2020 2:16 am
Location: CALABARZON, PH
Has thanked: 3 times
Been thanked: 143 times

Re: Screenshot Utilities

Post by mistfire »

You forgot the gtk-screenshot
darry19662018
Posts: 453
Joined: Sat Dec 14, 2019 12:24 am
Has thanked: 54 times
Been thanked: 65 times

Re: Screenshot Utilities

Post by darry19662018 »

Link please Misty....
User avatar
greengeek
Posts: 1218
Joined: Thu Jul 16, 2020 11:06 pm
Has thanked: 349 times
Been thanked: 146 times

Re: Screenshot Utilities

Post by greengeek »

MochiMoppel wrote: Sat Aug 15, 2020 12:05 am ...or GUI with "enhanced user experience" ;)

Code: Select all

for i in 'Shoot‎ the ‎screen ‎after '{5..1}' sec' Fire\!;do echo XXX;echo $i;echo XXX;read -t1;done|Xdialog -but text -can 'Oh no!!' -info '' 220x80 0 && mtpaint -s
Can be run from the command line or script, but I put it directly into my JWM config file as a <Key> tag and assigned shortcut Ctrl+PrintScrn to it. No need for a script file. Requires Xdialog.
Is there a trick to NOT capturing the terminal into which one has entered this command ?
Attachments
screencapture.jpg
screencapture.jpg (41.56 KiB) Viewed 1277 times
User avatar
MochiMoppel
Posts: 1135
Joined: Mon Jun 15, 2020 6:25 am
Location: Japan
Has thanked: 18 times
Been thanked: 369 times

Re: Screenshot Utilities

Post by MochiMoppel »

@greengeek Sure. This will prevent the terminal window from being captured:

Code: Select all

for i in 'Shoot‎ the ‎screen ‎after '{5..1}' sec' Fire\!;do echo XXX;echo $i;echo XXX;read -t1;done|Xdialog -but text -can 'Oh no!!' -info '' 220x80 0 && { mtpaint -s & exit ;}
User avatar
greengeek
Posts: 1218
Joined: Thu Jul 16, 2020 11:06 pm
Has thanked: 349 times
Been thanked: 146 times

Re: Screenshot Utilities

Post by greengeek »

Thanks, that works perfectly.
Both options would be valuable. Is there any easy way to build a choice into the dialog?
(yes, i know i'm a pain. According to my wife that's my most defining personal characteristic...) :)
User avatar
mikewalsh
Moderator
Posts: 5664
Joined: Tue Dec 03, 2019 1:40 pm
Location: King's Lynn, UK
Has thanked: 601 times
Been thanked: 1738 times

Re: Screenshot Utilities

Post by mikewalsh »

And don't forget Micko's "Screeny":-

http://murga-linux.com/puppy/viewtopic. ... 1bee4d7d2f

Works well with most older Pups; needs xwd. Can be temperemental with newer Pups, though.....can produce a "skew-wiff" shot, b & w, angled to one side. No idea what the cause of this might be...


Mike. ;)
Last edited by mikewalsh on Mon Aug 17, 2020 2:30 pm, edited 2 times in total.

Puppy "stuff" ~ MORE Puppy "stuff" ~ ....and MORE! :D
_______________________________________________________

Image

User avatar
MochiMoppel
Posts: 1135
Joined: Mon Jun 15, 2020 6:25 am
Location: Japan
Has thanked: 18 times
Been thanked: 369 times

Re: Screenshot Utilities

Post by MochiMoppel »

greengeek wrote: Sun Aug 16, 2020 5:28 am Thanks, that works perfectly.
Both options would be valuable. Is there any easy way to build a choice into the dialog?
(yes, i know i'm a pain. According to my wife that's my most defining personal characteristic...) :)
I can see your wife's point :mrgreen:
No, there is no easy way. In fact there is no way at all with Xdialog. Maybe yad can do that.
Why would you want to capture the terminal window and why would you want to use the command line at all? Self torture?
User avatar
mikewalsh
Moderator
Posts: 5664
Joined: Tue Dec 03, 2019 1:40 pm
Location: King's Lynn, UK
Has thanked: 601 times
Been thanked: 1738 times

Re: Screenshot Utilities

Post by mikewalsh »

That's astonishing, mate. A screenshot utility from a 2-series Puppy that works in a current 8-series....

It runs fine in radky's Busterpup8.0 (32-bit)..! Amazing...


Mike. ;)

Puppy "stuff" ~ MORE Puppy "stuff" ~ ....and MORE! :D
_______________________________________________________

Image

mistfire
Posts: 662
Joined: Thu Jul 16, 2020 2:16 am
Location: CALABARZON, PH
Has thanked: 3 times
Been thanked: 143 times

Re: Screenshot Utilities

Post by mistfire »

darry19662018 wrote: Sat Aug 15, 2020 8:11 am Link please Misty....
Source code:
https://sourceforge.net/projects/gtk-screenshot/

Precompiled (in tazpkg, just try to convert it to pet package)
http://mirror.slitaz.org/packages/cooki ... 2.0.tazpkg
User avatar
666philb
Posts: 429
Joined: Thu Jul 09, 2020 3:18 pm
Location: wales uk
Has thanked: 111 times
Been thanked: 146 times

Re: Screenshot Utilities

Post by 666philb »

hotshots https://github.com/obiwankennedy/HotShots

nice as you can annotate and also upload to an image hosting service
User avatar
mikewalsh
Moderator
Posts: 5664
Joined: Tue Dec 03, 2019 1:40 pm
Location: King's Lynn, UK
Has thanked: 601 times
Been thanked: 1738 times

Re: Screenshot Utilities

Post by mikewalsh »

666philb wrote: Mon Aug 17, 2020 4:18 pm hotshots https://github.com/obiwankennedy/HotShots

nice as you can annotate and also upload to an image hosting service
Sheesh. I forgot all about that one.... :lol:


Mike. ;)

Puppy "stuff" ~ MORE Puppy "stuff" ~ ....and MORE! :D
_______________________________________________________

Image

darry19662018
Posts: 453
Joined: Sat Dec 14, 2019 12:24 am
Has thanked: 54 times
Been thanked: 65 times

Re: Screenshot Utilities

Post by darry19662018 »

mistfire wrote: Mon Aug 17, 2020 1:02 pm
darry19662018 wrote: Sat Aug 15, 2020 8:11 am Link please Misty....
Source code:
https://sourceforge.net/projects/gtk-screenshot/

Precompiled (in tazpkg, just try to convert it to pet package)
http://mirror.slitaz.org/packages/cooki ... 2.0.tazpkg
Thanks Mistfire :thumbup:
darry19662018
Posts: 453
Joined: Sat Dec 14, 2019 12:24 am
Has thanked: 54 times
Been thanked: 65 times

Re: Screenshot Utilities

Post by darry19662018 »

mikewalsh wrote: Mon Aug 17, 2020 11:16 am
That's astonishing, mate. A screenshot utility from a 2-series Puppy that works in a current 8-series....

It runs fine in radky's Busterpup8.0 (32-bit)..! Amazing...


Mike. ;)
No Problems Mike enjoy :)
User avatar
666philb
Posts: 429
Joined: Thu Jul 09, 2020 3:18 pm
Location: wales uk
Has thanked: 111 times
Been thanked: 146 times

Tas with uploader to imgur

Post by 666philb »

Here's @JakeSFRs tas 1.15 combined with an imgur uploader from here https://github.com/tremby/imgur.sh

Attachments
tas-1.15.1-imgur.pet
(10.55 KiB) Downloaded 55 times
tosim
Posts: 439
Joined: Thu Jul 23, 2020 1:13 pm
Has thanked: 733 times
Been thanked: 50 times

Re: Screenshot Utilities

Post by tosim »

Flameshot is a pretty good app. Can be found in our PPM's for an easy download.

User avatar
mikewalsh
Moderator
Posts: 5664
Joined: Tue Dec 03, 2019 1:40 pm
Location: King's Lynn, UK
Has thanked: 601 times
Been thanked: 1738 times

Re: Screenshot Utilities

Post by mikewalsh »

tosim wrote: Wed Feb 23, 2022 6:14 pm

Flameshot is a pretty good app. Can be found in our PPM's for an easy download.

I guess I've tried most of the available screeny apps over the last several years. I tried Flameshot; it was, um.....o-kay (-ish). I found an AppImage over at AppImageHub, made up a tray icon launcher for it, stuck it in /opt,and launched it at boot from /root/Startup.

Apart from TAS - which is a masterpiece of lightweight coding - my current favourite is the KDE Project's KSnip.....a combo screenshot/editor app, rather like Hotshots. Only to MY mind, more logically laid-out & easier to understand than Hotshots....and also in AppImage format.

It's also one of the very few KDE apps I've come across that doesn't look like it was designed by a talented, yet 'backward' child. I don't know what it is about KDE stuff; apart from the last 2 or 3 years, most of the GUIs for their apps have always had a slightly "cartoonish" aspect to them. It's hard to explain; maybe it's just me!

Aside from that, both AppImages are the same size, around 23 MB (both use Qt5, so there's 90% of the reason for the size right there.) But KSnip has an easier-to-understand interface; I've always had the greatest difficulty in figuring out what all those various blobs around the perimeter of Flameshot's 'area/region' window are supposed to do.....

Mike. ;)

Puppy "stuff" ~ MORE Puppy "stuff" ~ ....and MORE! :D
_______________________________________________________

Image

tosim
Posts: 439
Joined: Thu Jul 23, 2020 1:13 pm
Has thanked: 733 times
Been thanked: 50 times

Re: Screenshot Utilities

Post by tosim »

@mikewalsh Thanks for the info(re Ksnip); I'll dl and check it out.

User avatar
mikewalsh
Moderator
Posts: 5664
Joined: Tue Dec 03, 2019 1:40 pm
Location: King's Lynn, UK
Has thanked: 601 times
Been thanked: 1738 times

Re: Screenshot Utilities

Post by mikewalsh »

@tosim :-

tosim wrote: Thu Feb 24, 2022 4:25 pm

@mikewalsh Thanks for the info(re Ksnip); I'll dl and check it out.

I think I've got a package at MEGA....which I uploaded, yet I don't think I've posted about it. Let's see.....

Yep; here we are:-

https://mega.nz/folder/SOBTxSRD#9zZKeMhkGMleW2TTE57ZtA

I remember now. I didn't bother adding any of the usual MenuEntry scripts'n'stuff, 'cos this thing puts its own icon into the notification area. Just click on it, and it's there, ready-to-use. The only thing I added was a small script in /root/my-applications/bin, linked to /root/Startup to launch it at boot-time.

Your Pup fires up....and it's there in the tray, ready to go. Same as Flameshot, IIRC....

Let me know what you think. You can edit the picture by adding arrows....numbers....text....all sorts of stuff. Quite useful, really. I don't suppose it's so different to all the other screeny apps out there, but it's rare to find KDE apps that don't want the whole of the Plasma desktop AND the Dolphin file-manager before they'll condescend to run. By KDE standards, this one is like a greyhound.....positively slim-line.

Mike. ;)

Puppy "stuff" ~ MORE Puppy "stuff" ~ ....and MORE! :D
_______________________________________________________

Image

tosim
Posts: 439
Joined: Thu Jul 23, 2020 1:13 pm
Has thanked: 733 times
Been thanked: 50 times

Re: Screenshot Utilities

Post by tosim »

@mikewalsh Thank you. Got it; checked it out; really good! Thanks again.

mow9902
Posts: 178
Joined: Fri Jul 24, 2020 11:57 pm
Has thanked: 13 times
Been thanked: 51 times

Re: Screenshot Utilities

Post by mow9902 »

Thanks for this - works great! I personally find it easier to use than the many alternatives.

Post Reply

Return to “Utilities”