what is a better app to use than the take a shot app/tks
Which screenshot app is best? (solved)
Moderators: 666philb, Forum moderators
-
- Posts: 237
- Joined: Thu Feb 25, 2021 12:29 am
- Been thanked: 4 times
Which screenshot app is best? (solved)
- ThruHammer
- Posts: 257
- Joined: Sun Jul 12, 2020 1:08 am
- Location: Ray Brook, NY
- Been thanked: 14 times
- bigpup
- Moderator
- Posts: 6960
- Joined: Tue Jul 14, 2020 11:19 pm
- Location: Earth, South Eastern U.S.
- Has thanked: 897 times
- Been thanked: 1517 times
Re: screenshot app
What do you not like about Take a Shot?
Is there some feature you want it to have?
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
-
- Posts: 237
- Joined: Thu Feb 25, 2021 12:29 am
- Been thanked: 4 times
Re: screenshot app
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
- taersh
- Posts: 951
- Joined: Tue Jul 07, 2020 11:13 pm
- Location: Germany
- Has thanked: 53 times
- Been thanked: 119 times
Re: screenshot app
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!
-
- Posts: 237
- Joined: Thu Feb 25, 2021 12:29 am
- Been thanked: 4 times
-
- Posts: 237
- Joined: Thu Feb 25, 2021 12:29 am
- Been thanked: 4 times
-
- Posts: 237
- Joined: Thu Feb 25, 2021 12:29 am
- Been thanked: 4 times
- bigpup
- Moderator
- Posts: 6960
- Joined: Tue Jul 14, 2020 11:19 pm
- Location: Earth, South Eastern U.S.
- Has thanked: 897 times
- Been thanked: 1517 times
Re: screenshot app_(solved)
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.
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
-
- Posts: 53
- 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)
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: 1108
- Joined: Wed Aug 19, 2020 5:43 pm
- Location: Edinburgh
- Has thanked: 630 times
- Been thanked: 280 times
- Contact:
Take continuous screenshots at a specific position
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.
XFCE_FUSILLI . ===> https://puppyxfcefusilli.wordpress.com/
YouTube How_To . ==> https://bit.ly/f96ce_xfce_fusilli_HOWTO
Learning EASY OS . => https://easyos.org/
- rockedge
- Site Admin
- Posts: 6518
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 2726 times
- Been thanked: 2611 times
- Contact:
Re: Which screenshot app is best? (solved)
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
.
- Flash
- Moderator
- Posts: 974
- Joined: Tue Dec 03, 2019 3:13 pm
- Location: Arizona, U.S.
- Has thanked: 51 times
- Been thanked: 125 times
Re: screenshot app_(solved)
bigpup wrote: ↑Wed Mar 10, 2021 12:41 amIf 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.
-
- Posts: 356
- Joined: Mon Jul 13, 2020 6:14 pm
- Location: Germany, NRW
- Has thanked: 18 times
- Been thanked: 125 times
Re: Which screenshot app is best? (solved)
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....