the photograph of me that was on the first wiki I used
BF-3


This user contributes using GNU/Linux.


Babel user information
en-N This user has a native understanding of English.
Users by language
 
13/23

photographs

'graphs I like (a lot) but did not take/make

TWFTTY

garbage truck

plants and animals

food

Michigan weather

Spring

Summer

Autumn

Winter

tools and utensils

folkart

useful icons

Eastern Michigan University

screenshots

English wikipedia administration

A gallery of accomplishment

categorematic

coign

censored

conte

retouched photographs and scans

repair of scans of old graphics and aged photographs

trying not to lose pixels

sepia scans

black and white scans

Norman Mailer

This man helped me to plan my life for decades later, not just for tomorrow or next year. I never read any of his books, and I think I have never seen any of his movies; yet, a decisive figure in my life anyways.

Orville and Wilbur
Germans, pretty ones and regular ones too

a desire to work with the higher resolution images

GIMP art

GIMP gradients

Select and paste into a text file and save in your ~/.gimp-2.4/gradients directory (if your computer lets you do that).

Lily Lilium Sky

GIMP Gradient
Name: Lily Lilium Sky
2
0.000000 0.281179 0.519274 0.196078 0.356863 0.564706 1.000000 0.309804 0.447059 0.654902 1.000000 0 0 0 0
0.519274 0.761905 1.000000 0.309804 0.447059 0.654902 1.000000 0.286275 0.447059 0.650980 1.000000 0 0 0 0

GIMP scripts

Authored by me

jtleveler.py

#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111_1307, USA.
#

from gimpfu import *

PLUGIN_VERSION = '0.2'


def layer_effect_jtlevels(image, drawable):
    
    layer_jtlevels = pdb.gimp_layer_copy(drawable, False)
    pdb.gimp_image_add_layer(image, layer_jtlevels, 0)

    channel = HISTOGRAM_VALUE
    start_range, end_range = 0, 255
    pdb.gimp_levels(layer_jtlevels, channel, 0, 100, 0.28, 0, 255)
    
    return layer_jtlevels


register(
        "python_fu_layer_effect_jtlevels",
        "Set the levels where the classic tutorial tells you to.",
        "Set the levels where the classic tutorial tells you to.  This effect is best at turning your blurred mask sharp again",
        "Carol Spears",
        "Carol Spears",
        "2006",
        "<Image>/Layer/Effects/JTLevels",
        "",
        [],
        [
          (PF_LAYER, "layer_jtlevels", "JTLevels Layer")
        ],
        layer_effect_jtlevels)


main ()

Trolled by me

ng24.scm


; Now Your Photos Can Look Like National Geographic! It's FREE!!
;
; Based on "Scale 25%" script for GIMP
;
; Description: scales the image down to 25%, boosts saturation 30%,
; contrast 10% and brightness 5% and applies unsharp mask.
;
; Last changed: 30.12.2004
;
; Original Copyright (C) 2004 Dr. Martin Rogge <marogge@onlinehome.de>
; Modification by Tuomas Kuosmanen <tigert@novell.com>
;
; --------------------------------------------------------------------
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;

(define (script-national-geographicize img draw)
;  (gimp-image-undo-group-start img)
  (gimp-image-flatten img)
  (let* (
         (width  (car (gimp-image-width  img)))
         (height (car (gimp-image-height img)))
         (scale (/ 800 (max height width)))
         (width (* scale width))
         (height (* scale height))
         (draw (car (gimp-image-get-active-drawable img)))
         )
;  (plug-in-unsharp-mask 1 img draw 0.5 1.5 0)
    (gimp-image-scale img width height)
;  (gimp-image-undo-group-end img)
    (gimp-brightness-contrast draw 10 20)
    (gimp-hue-saturation draw 0 0 0 10)
    (plug-in-unsharp-mask 1 img draw 0.1 0.7 0)
    (gimp-displays-flush))
  )

(script-fu-register
  "script-national-geographicize"
  "<Image>/Script-Fu/National Geographic(tm) Effect"
  "Enhance the image: boost contrast and colours and sharpen it, scale to 25%"
  "Dr. Martin Rogge <marogge@onlinehome.de>, Tuomas  Kuosmanen <tigert@novell.com>"
  "Dr. Martin Rogge, Tuomas Kuosmanen"
  "30/12/2004"
  "RGB*"
  SF-IMAGE    "Image"         0
  SF-DRAWABLE "Drawable"      0
)

TODO List

Contact these people about using their images from here on my web site:

And more:

Other

uploads