The image processing I use to make a raw screenshot easier to handle and view is straightforward:
- Scale down (shrink) the image by 80%
- Run the sharpen filter to make the text more readable
- Reduce the palette to 256 colors to take less space
- Add a border to make the image standout
- Save the image as a PNG file for universal viewing
; GIMP Screenshot Processor v1.2 (Script-Fu)
(define (screenshot-processor img draw)
(gimp-image-scale img ;Shrink image 80%
(* (car (gimp-image-width img)) 0.8)
(* (car (gimp-image-height img)) 0.8))
(plug-in-sharpen TRUE img draw 25) ;Sharpen image
(gimp-image-convert-indexed img ;Reduce colors to 256
1 0 256 FALSE TRUE "")
(script-fu-addborder img draw ;Add 4px border
4 4 '(128 128 128) 0)
(gimp-image-flatten img) ;Convert to single layer
)
(script-fu-register
"screenshot-processor" "Screenshot Processor"
"Shrinks, sharpens, reduces color, and adds border to current image."
"Dem Pilafian, Center Key Software"
"Public Domain" "October 5, 2008" ""
SF-IMAGE "Image" 0 SF-DRAWABLE "Drawable" 0)
(script-fu-menu-register "screenshot-processor" "<Image>/Tools")
Steps to Install:
1) Download script and save it as:
screenshot-processor.scm2) Copy file to folder:
<installfolder>/GIMP-2.0/share/gimp/2.0/scripts/3) Filters → Script-Fu → Refresh Scripts

Now you are ready to take your screenshot (in Microsoft Windows: <Ctrl-PrintScreen> or <Alt-PrintScreen>).
Steps to Run:
1) Create new image by pasting screenshot into GIMP
2) Tools → Screenshot Processor
3) File → Save → Name: screenshot.png → Save → Save
The result is a convenient screenshot image file that is appropriate for sending in an e-mail.





