User:CarolSpears

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
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[edit]

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

TWFTTY[edit]

garbage truck[edit]

plants and animals[edit]

food[edit]

Michigan weather[edit]

Spring[edit]

Summer[edit]

Autumn[edit]

Winter[edit]

tools and utensils[edit]

folkart[edit]

useful icons[edit]

Eastern Michigan University[edit]

screenshots[edit]

English wikipedia administration[edit]

A gallery of accomplishment

categorematic[edit]

coign[edit]

censored[edit]

conte[edit]

retouched photographs and scans[edit]

repair of scans of old graphics and aged photographs[edit]

trying not to lose pixels[edit]

sepia scans[edit]

black and white scans[edit]

Norman Mailer[edit]

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[edit]
Germans, pretty ones and regular ones too[edit]

a desire to work with the higher resolution images[edit]

GIMP art[edit]

GIMP gradients[edit]

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[edit]

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[edit]

Authored by me[edit]

jtleveler.py[edit]

#!/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[edit]

ng24.scm[edit]


; 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[edit]

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

And more:

Other[edit]

uploads