| Author |
Message |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Fri 18 Feb 2011, 10:04 Post subject:
PupSnap-1.4 |
|
Version 1.4. See main post.
-Improved access to reduced-size (thumbnail) image acquisitions.
-Bug fix: jpg images were not captured at optimal resolution in prior versions. Please update to PupSnap-1.4.
|
|
Back to top
|
|
 |
r1tz

Joined: 09 Sep 2010 Posts: 165 Location: In #puppylinux (IRC)
|
Posted: Fri 18 Feb 2011, 10:38 Post subject:
|
|
I like this.
cp /usr/local/PupSnap/pupsnap2.rc /usr/local/PupSnap/pupsnap.rc
will easily solve the conf problem.
I found typing in file name every time troublesome so i did this | Code: | if [ "$FILENAME"= "" ]
then
FILENAME=picture
fi
num=1
while [ -f "$FOLDERNAME""$FILENAME"."$FILETYPE" ]
do
FILENAME="$(echo picture"$num")"
let num=num+1
done |
|
|
Back to top
|
|
 |
Jim1911
Joined: 19 May 2008 Posts: 2354 Location: Texas, USA
|
Posted: Fri 18 Feb 2011, 10:59 Post subject:
|
|
| r1tz wrote: | I like this.
cp /usr/local/PupSnap/pupsnap2.rc /usr/local/PupSnap/pupsnap.rc
will easily solve the conf problem.
I found typing in file name every time troublesome so i did this | Code: | if [ "$FILENAME"= "" ]
then
FILENAME=picture
fi
num=1
while [ -f "$FOLDERNAME""$FILENAME"."$FILETYPE" ]
do
FILENAME="$(echo picture"$num")"
let num=num+1
done |
| Good idea, but I don't know where to add the code. Adding it to the bottom of /usr/local/PupSnap/pupsnap.rc did nothing.
Thanks,
Jim
|
|
Back to top
|
|
 |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Fri 18 Feb 2011, 15:25 Post subject:
|
|
| r1tz wrote: | I like this.
cp /usr/local/PupSnap/pupsnap2.rc /usr/local/PupSnap/pupsnap.rc
will easily solve the conf problem.
I found typing in file name every time troublesome so i did this | Code: | if [ "$FILENAME"= "" ]
then
FILENAME=picture
fi
num=1
while [ -f "$FOLDERNAME""$FILENAME"."$FILETYPE" ]
do
FILENAME="$(echo picture"$num")"
let num=num+1
done |
|
Hi r1tz,
Thanks for the suggestion. I'll see what I can do.
|
|
Back to top
|
|
 |
abushcrafter

Joined: 30 Oct 2009 Posts: 1447 Location: England
|
Posted: Fri 18 Feb 2011, 16:12 Post subject:
|
|
Some recommendations and bugs:
- If one forgets to enter file name and has the thumbnail check box ticked. It does not remember that the thumbnail check box is ticked.
- Please use a "&" at the end of the error sound command. I have one that is a few secs long.
- What about the default location being "/tmp"?
- Change window title to "PupShots" from "PS".
- "Help" tab be renamed to "About/Help/Config".
- Default image format of PNG instead of JPG.
- Option to use Date & Time for file name. Here is a date command you can use:
_________________ adobe flash is rubbish!
My Quote:"Humans are stupid, though some are clever but stupid." http://www.dependent.de/media/audio/mp3/System_Syn_Heres_to_You.zip http://www.systemsyn.com/
|
|
Back to top
|
|
 |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Sat 19 Feb 2011, 02:20 Post subject:
|
|
| abushcrafter wrote: | Some recommendations and bugs:
[1]If one forgets to enter file name and has the thumbnail check box ticked. It does not remember that the thumbnail check box is ticked.
[2]Please use a "&" at the end of the error sound command. I have one that is a few secs long.
[3]What about the default location being "/tmp"?
[4]Change window title to "PupShots" from "PS".
[5]"Help" tab be renamed to "About/Help/Config".
[6]Default image format of PNG instead of JPG.
[7]Option to use Date & Time for file name. Here is a date command you can use: |
The next release of PupSnap should address 1, 2, 6 and 7 above. However, 3, 4 and 5 will not change for now.
I'll upload the new version later today.
Thanks for your suggestions.
|
|
Back to top
|
|
 |
r1tz

Joined: 09 Sep 2010 Posts: 165 Location: In #puppylinux (IRC)
|
Posted: Sat 19 Feb 2011, 05:33 Post subject:
|
|
| Jim1911 wrote: | | r1tz wrote: | I like this.
cp /usr/local/PupSnap/pupsnap2.rc /usr/local/PupSnap/pupsnap.rc
will easily solve the conf problem.
I found typing in file name every time troublesome so i did this | Code: | if [ "$FILENAME"= "" ]
then
FILENAME=picture
fi
num=1
while [ -f "$FOLDERNAME""$FILENAME"."$FILETYPE" ]
do
FILENAME="$(echo picture"$num")"
let num=num+1
done |
| Good idea, but I don't know where to add the code. Adding it to the bottom of /usr/local/PupSnap/pupsnap.rc did nothing.
Thanks,
Jim |
You add it in func somewhere at the top just before the xdialog line. | Quote: | ERROR="aplay /usr/share/audio/error.wav"
[ "$FILENAME" = "" ] && $ERROR && Xdialog --title Alert --no-cancel --msgbox "Please enter a file name!" 0 0 && $WORKDIR/PupSnap && exit 0
|
i added this behind so i can just link people to the image in a jippy. xclip default setting it to "copy" to middle click.
echo "http://q.r1tz.operaunite.com/file_sharing/content/images/"${FILENAME}"."${FILETYPE}""|xclip
Initially, i was thinking of adding a script to upload to imagebin.
|
|
Back to top
|
|
 |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Sat 19 Feb 2011, 11:16 Post subject:
Subject description: PupSnap-1.5 |
|
Version 1.5 See main post.
-Added option to apply current date and time to the image file name. (thanks abushcrafter)
-When a new name is not selected for the File Name entry box, the capture proceeds with automatic sequential naming of images. (thanks r1tz)
-The most recent capture is now the default entry for the File Name.
Last edited by radky on Thu 03 Mar 2011, 18:26; edited 1 time in total
|
|
Back to top
|
|
 |
abushcrafter

Joined: 30 Oct 2009 Posts: 1447 Location: England
|
Posted: Sun 20 Feb 2011, 16:02 Post subject:
|
|
I have thought of another recommendation. Add Image Magick "display" to the image viewer list.
_________________ adobe flash is rubbish!
My Quote:"Humans are stupid, though some are clever but stupid." http://www.dependent.de/media/audio/mp3/System_Syn_Heres_to_You.zip http://www.systemsyn.com/
|
|
Back to top
|
|
 |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Mon 21 Feb 2011, 12:04 Post subject:
|
|
| abushcrafter wrote: | | I have thought of another recommendation. Add Image Magick "display" to the image viewer list. |
Hi abushcrafter,
If an image viewer or editor is not currently supported by PupSnap, you can manually add the name of the executable to the appropriate combobox (with path and switches if needed). This new viewer or editor selection will remain your default choice until you decide to change it.
Thanks for the recommendation.
|
|
Back to top
|
|
 |
abushcrafter

Joined: 30 Oct 2009 Posts: 1447 Location: England
|
Posted: Mon 21 Feb 2011, 19:14 Post subject:
|
|
| radky wrote: | | If an image viewer or editor is not currently supported by PupSnap, you can manually add the name of the executable to the appropriate combobox (with path and switches if needed). This new viewer or editor selection will remain your default choice until you decide to change it. | Thanks. Nice feature.
_________________ adobe flash is rubbish!
My Quote:"Humans are stupid, though some are clever but stupid." http://www.dependent.de/media/audio/mp3/System_Syn_Heres_to_You.zip http://www.systemsyn.com/
|
|
Back to top
|
|
 |
Jim1911
Joined: 19 May 2008 Posts: 2354 Location: Texas, USA
|
Posted: Mon 07 Mar 2011, 11:31 Post subject:
Empty file |
|
Hi radky,
A number of times I've had problems with the forum reporting that I was trying to upload an empty file and refused to post. This morning I tried to upload these two images made with PupSnap that are on the image made with mt-paint snapshot. Weird!
| Description |
|

Download |
| Filename |
252vs253.png |
| Filesize |
519.27 KB |
| Downloaded |
436 Time(s) |
|
|
Back to top
|
|
 |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Mon 07 Mar 2011, 20:11 Post subject:
Re: Empty file |
|
| Jim1911 wrote: | Hi radky,
A number of times I've had problems with the forum reporting that I was trying to upload an empty file and refused to post. This morning I tried to upload these two images made with PupSnap that are on the image made with mt-paint snapshot. Weird! |
Hi Jim,
In PupSnap, the File-Quality setting of 100 (least compression) may seem ideal for those who want to capture an image at maximum quality. However, when posting an image to the Murga forum, a full screen that is captured with no significant image compression may exceed the forum limits for image size.
On my system, a basic 1920x1080 full-screen image captured in PNG format with the File-Quality setting of 100 (6086K) will not upload to the forum. However, the same PNG image captured at the File-Quality setting of 50 (48K), will upload quickly, and the image looks very good when viewed as a link to the primary forum post. File compression in the PNG format is ‘lossless’ and image quality is preserved.
When capturing PNG images with PupSnap (i.e. with Scrot and the imlib2 library), the file size (in kilobytes) does not reduce significantly at File-Quality settings of 95 or 90, but drops dramatically at 85 (and below). You may have noticed that mtPaint and GIMP initially default to the maximum compression value of '9' when images are saved in the PNG format. At this numerical setting, the size of the mtPaint file (or GIMP file) is identical to the same image captured in PupSnap with the File-Quality setting of 50. The following quote is from the GIMP help file: “Since compression in the PNG format is not lossy, the only reason to use a compression level less than 9, is if it takes too long to compress a file on a slow computer." Consequently, when capturing PNG images in PupSnap, I would recommend the File-Quality setting of 50, which correlates with the maximum compression level of 9 in both mtpaint and GIMP. This will produce an image of high quality and convenient size (in kilobytes).
On the other hand, if the goal is to display an image of large dimension on the primary forum page (without linking), you can use a bitmap editor to crop the image, or downsize by pixel interpolation. A maximum image size of 600 pixels should satisfy the forum criteria for direct image viewing. Alternatively, you can use the Region (ROI) capture mode of PupSnap to limit the size of the captured image, or you may want to experiment with the PupSnap Thumbnail feature, which permits automatic downsizing of large images at the time of capture.
Thanks for your question.
|
|
Back to top
|
|
 |
radky
Joined: 02 May 2010 Posts: 363
|
Posted: Wed 23 Mar 2011, 19:35 Post subject:
Subject description: PupSnap-1.5.1 |
|
Version 1.5.1
-Updated help resources with recommendations for acquiring optimal screenshots. (thank you Jim1911)
-Added support for 64-bit Puppy derivatives such as Fatdog64 (thank you Billtoo for providing 64-bit builds of Scrot and the associated support files)
|
|
Back to top
|
|
 |
Billtoo
Joined: 07 Apr 2009 Posts: 1508 Location: Ontario Canada
|
Posted: Wed 23 Mar 2011, 20:17 Post subject:
PupSnap-1.5.1 Subject description: 64bit |
|
Working well in Fatdog
| Description |
|
| Filesize |
37.91 KB |
| Viewed |
1328 Time(s) |

|
|
|
Back to top
|
|
 |
|