Which screenshot app is best? (solved)

Moderators: 666philb, Forum moderators

Post Reply
rburkartjo
Posts: 237
Joined: Thu Feb 25, 2021 12:29 am
Been thanked: 4 times

Which screenshot app is best? (solved)

Post by rburkartjo »

what is a better app to use than the take a shot app/tks

Last edited by rburkartjo on Tue Mar 09, 2021 3:58 pm, edited 1 time in total.
mistfire
Posts: 661
Joined: Thu Jul 16, 2020 2:16 am
Location: CALABARZON, PH
Has thanked: 3 times
Been thanked: 143 times

Re: screenshot app

Post by mistfire »

gtk-screenshot
xfce4-screenshooter

User avatar
ThruHammer
Posts: 257
Joined: Sun Jul 12, 2020 1:08 am
Location: Ray Brook, NY
Been thanked: 14 times

Re: screenshot app

Post by ThruHammer »

Everyone has their favorite. Look here.

User avatar
bigpup
Moderator
Posts: 6372
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 751 times
Been thanked: 1319 times

Re: screenshot app

Post by bigpup »

What do you not like about Take a Shot?
Is there some feature you want it to have?

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

rburkartjo
Posts: 237
Joined: Thu Feb 25, 2021 12:29 am
Been thanked: 4 times

Re: screenshot app

Post by rburkartjo »

big sometimes like to include a screen shot when i have problem. when i used take a shot and captured the whole screen was noted that my attachment was too large. never had a problem capturing my whole screen and using as an attachment

User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 119 times

Re: screenshot app

Post by taersh »

You should choose .jpg as the output file format instead of .png. Makes screenshots much smaller in storage size.

My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!

rburkartjo
Posts: 237
Joined: Thu Feb 25, 2021 12:29 am
Been thanked: 4 times

Re: screenshot app

Post by rburkartjo »

tae tks for the advice

rburkartjo
Posts: 237
Joined: Thu Feb 25, 2021 12:29 am
Been thanked: 4 times

Re: screenshot app

Post by rburkartjo »

tae saving to .jpg format works better

rburkartjo
Posts: 237
Joined: Thu Feb 25, 2021 12:29 am
Been thanked: 4 times

Re: screenshot app

Post by rburkartjo »

big saving in .jpg format enables me to post whole desktop screenshot

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

Re: screenshot app_(solved)

Post by tosim »

I've used many different ones, but now prefer "Flameshot".

User avatar
bigpup
Moderator
Posts: 6372
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 751 times
Been thanked: 1319 times

Re: screenshot app_(solved)

Post by bigpup »

If you are using Take A Shot v1.15

After making the image file. It pops up a window, where there is an option to edit.
Click on edit and the image opens in MtPaint.
Under image->Scale Canvas
You can adjust the overall size of the image.
That will also lower the size of it.

Also the scale setting in Take a Shot, will change overall size of image.

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

bob93
Posts: 50
Joined: Fri Nov 25, 2022 8:29 am
Location: Fossapup64 9.5
Has thanked: 21 times
Been thanked: 1 time

Re: Which screenshot app is best? (solved)

Post by bob93 »

Is there a screenshotting program that allows you to set coordinates and size precisely and continue to take screenshots using those settings? I had a look at a few ppm packages and none seems to have the possibility of setting screen coordinates

Fossapup64 9.5

pp4mnklinux
Posts: 850
Joined: Wed Aug 19, 2020 5:43 pm
Location: Edinburgh
Has thanked: 529 times
Been thanked: 233 times
Contact:

Take continuous screenshots at a specific position

Post by pp4mnklinux »

bob93 wrote: Tue Dec 05, 2023 3:28 pm

Is there a screenshotting program that allows you to set coordinates and size precisely and continue to take screenshots using those settings? I had a look at a few ppm packages and none seems to have the possibility of setting screen coordinates

Hi, @bob93

You can do this with HOTSHOT 2.2.O (it is at the ppm) and if you configure it you can do what you are asking about.

These are the instructions:

1.- stick windows (with my configuration you can do it clicking on the icon at the top right corner of this program )

2.- Right click on the top bar and choose..... ALWAYS ON TOP

3.- Capture mode.... GRAB REGION

4.- Those are the basic instructions, I can't tell you here all the process, but try and you can do it.- (when you click on the icon to take a photo, decide where to put the capture area, take the photo and the next times the area is going to be the one you chose).

Excuse my explanation, it is really easy, but it is difficult to explain for me...jajajja

I hope it helps you.

CHEERS.

~

F96CE_XFCE_FUSILLI ====> https://puppyxfcefusilli.wordpress.com/

User avatar
rockedge
Site Admin
Posts: 5770
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 2048 times
Been thanked: 2130 times
Contact:

Re: Which screenshot app is best? (solved)

Post by rockedge »

Using flameshot it appears it is possible.

Code: Select all

flameshot gui --region $(flameshot gui -g) --accept-on-select --pin

If you want to have sequential screenshot from the same area:

Code: Select all

# select the area once
REGION=$(flameshot gui --print-geometry)

# iterate until user press Esc in the gui mode of flameshot
while true
do
    flameshot gui --region ${REGION} --raw > "/tmp/$(date +'%Y%m%d_%H%M%S').png"
    
    # check if user has canceled the previous screenshot
    if [ $? == 1 ]; then
        break
    fi
done

And the --accept-on-select can be combined with --region to take screenshot almost without opening the gui:

Code: Select all

# select the area once
REGION=$(flameshot gui --print-geometry)

# sequentially every 5 seconds until user press Ctrl+c:
while true
do
    sleep 5
    flameshot gui --region ${REGION} --accept-on-select --raw > "/tmp/$(date +'%Y%m%d_%H%M%S').png"
    
done

You can also set an environmental variable to store the coordinate of the region of interest and always call Flameshot to use that variable as input for --region.

You can do sequential screenshot functionality using an environmental variable (just bind it to a shortcut):

Code: Select all

export FLAMESHOT_LAST_REGION=$(flameshot gui --print-geometry --region "$([[ -v FLAMESHOT_LAST_REGION ]] && echo ${FLAMESHOT_LAST_REGION} || echo '100x100+100+100')")

it basically reads the last region from the variable, let you create the screenshot, get the new region (if you have changed it) and save it again on the same variable. It will select the region 100x100+100+100 if the FLAMESHOT_LAST_REGION variable is not defined. So I suggest to export the environmental variable to your environment when you boot your computer with whatever value you would like.

Alternatively you can modify the code to write into (and read from) a file for example in ~/.config/flameshot/last_region.

User avatar
Flash
Moderator
Posts: 902
Joined: Tue Dec 03, 2019 3:13 pm
Location: Arizona, U.S.
Has thanked: 46 times
Been thanked: 106 times

Re: screenshot app_(solved)

Post by Flash »

bigpup wrote: Wed Mar 10, 2021 12:41 am

If you are using Take A Shot v1.15
After making the image file, it pops up a window where there is an option to edit.
Click on edit and the image opens in MtPaint.
Under image->Scale Canvas
You can adjust the overall size of the image.
That will also lower the size of it.
Also the scale setting in Take a Shot, will change overall size of image.

I would add: crop your screenshot before you scale it. (Image -> crop, after using the cursor and left clicking to choose an area.) Remove everything that doesn't help make your point, then scale what's left to reduce its size. That way you don't have to reduce its size as much.

Chaos coordinator :?
HerrBert
Posts: 333
Joined: Mon Jul 13, 2020 6:14 pm
Location: Germany, NRW
Has thanked: 17 times
Been thanked: 112 times

Re: Which screenshot app is best? (solved)

Post by HerrBert »

bob93 wrote: Tue Dec 05, 2023 3:28 pm

Is there a screenshotting program that allows you to set coordinates and size precisely and continue to take screenshots using those settings? I had a look at a few ppm packages and none seems to have the possibility of setting screen coordinates

If your request is about the same coordinates, i can't help here.
If it's about the same active window, i recall a discussion here.
In the latter case we have to consider opening a new thread... The code at the afore mentioned thread is buggy....

Post Reply

Return to “Fossapup64”