|
| |
| | hotspots.scm |
 | | (define (script-fu-save-hotspots inImage inLayer inMapName inFile) (gimp-undo-push-group-start inImage) (let* (; Save current selection, open file, initialize some Vars... |  | | (orig-selection (car (gimp-selection-save inImage))) (outFile (if (> (string-length inFile) 0) (fopen inFile "w") ())) (chanArray (cadr (gimp-image-get-channels inImage))) (chanNr (car (gimp-image-get-channels inImage))) (chanName "") (chanArea "") (chanURL "") (chanALT "") (chanCoords "") (chanType 0) (chanIndex 0) (chanCurr 0) (selection ())) (fwrite (string-append "\n |  | | \n\n" outFile) (if (> (string-length inFile) 0) (fclose outFile) ()) (gimp-selection-load inImage orig-selection) (gimp-image-unset-active-channel inImage) (gimp-image-remove-channel inImage orig-selection)) (gimp-undo-push-group-end inImage) (gimp-displays-flush inImage)) ; Register the function with the GIMP: (script-fu-register "script-fu-save-hotspots" " |
|
http://www.cise.ufl.edu/mirrors/gimp/contrib/scripts/hotspots.scm
(716 words)
|
|
| |
| | Re: [Gegl-developer] Re: [Gimp-developer] GEGL development/gimp integration |
 | | Re: [Gimp-developer] GEGL development/gimp integration Sven Neumann (2k) |  | | Re: [Gimp-developer] GEGL development/gimp integration Sven Neumann (1k) |  | | Re: [Gimp-developer] Color Management was GEGL development/gimp integration Hal V. Engel (7k) |
|
http://www.opensubscriber.com/message/gimp-developer@lists.xcf.berkeley.edu/383889.html
(484 words)
|
|
| |
| | Re: [Gimp-developer] Re: Color Management was GEGL development/gimp integration |
 | | Re: [Gimp-developer] Re: Color Management was GEGL development/gimp integration David Neary (1k) |  | | Re: [Gimp-developer] Re: Color Management was GEGL development/gimp integration |  | | [Gimp-developer] Re: Color Management was GEGL development/gimp integration Gerhard Gau (3k) |
|
http://www.opensubscriber.com/message/gimp-developer@lists.xcf.berkeley.edu/464299.html
(336 words)
|
|
| |
| | GIMP 2.2.0 Released FootNotes |
 | | While GIMP 2.4 (which should be released in a couple of months already) is being worked on, GEGL will be brought to a state where it becomes useable for GIMP. |  | | GIMP 2.4 will bring you color management but not higher color depths. |  | | I may be totally wrong about this and if I am, someone please correct me, but I'm under the impression that 16-bit colors support won't happen until Gimp switches to use Gegl as backend. |
|
http://gnomedesktop.org/node/2091
(929 words)
|
|
| |
| | GIMP, GimpWin, MacGimp, Film Gimp, and GEGL |
 | | When Film Gimp began in 1998, the idea was to create a good companion paint program to Silicon Grail's proprietary Chalice compositor, the precursor to RAYZ (an alternative to Shake). |  | | GEGL intended to incorporate the lessons learned from the abandoned Film Gimp experiment, but without the constraints of legacy code. |  | | GEGL is viewed as part of the GIMP project, even though the code is all new. |
|
http://filmgimp.sourceforge.net/cinepaint/user/which.gimp.html
(698 words)
|
|
| |
| | CinePaint Ports |
 | | The Windows release was scheduled for December 2002, but the Macintosh team's success delivering their Film Gimp port six month's ahead of schedule changed that. |  | | The first Film Gimp version to support Macintosh is 0.10, released December 3, 2002. |  | | A Mac Quartz version of Film Gimp is being planned for Q4 2003. |
|
http://filmgimp.sourceforge.net/cinepaint/user/ports.html
(341 words)
|
|
| |
| | GIMP - for Mac OS X |
 | | In general, building the GIMP on Mac OS X is complicated by the fact that dynamic libraries from GNU projects require a GNU-specific dynamic loading library. |  | | Unlike most Linux distributions, Mac OS X does not come with the open source libraries upon which the GIMP is built. |  | | Since the primary menu in the GIMP is accessed by a right-click in the image window, it is advisable for Mac users (who all have a single mouse button by default) to obtain a multi-button USB mouse. |
|
http://www.gimp.org/macintosh
(602 words)
|
|
| |
| | NodeWorks - Encyclopedia: GIMP |
 | | The GNU Image Manipulation Program or The GIMP is a bitmap graphics editor, a program for creating and processing raster graphics. |  | | GIMP uses GTK+ as its widget toolkit (the part of the program that builds the user interface); in fact, GTK+ was initially part of the GIMP, intended as a replacement for the commercial Motif toolkit, which GIMP originally depended upon. |  | | This allows to write scripts and plugins for the GIMP which can then be used interactively; it is also possible to produce images in completely non-interactive ways (for example generating images for a webpage on the fly using CGI scripts) and for batch color correction and conversion of images. |
|
http://pedia.nodeworks.com/G/GI/GIM/GIMP
(781 words)
|
|
| |
| | fade-outline.scm |
 | | l-has-selection FALSE) (gimp-selection-layer-alpha inLayer))) ; (gimp-selection-sharpen inImage) ; apply the existing mask before creating a new one (gimp-image-remove-layer-mask inImage inLayer 0) (if (= inClearUnselected TRUE) (begin (set! |  | | ; Define the main function: (define (script-fu-fade-outline inImage inLayer inBorderSize inFadeFrom inFadeTo inGrowingSelection inApplyMask inClearUnselected) (let* ((l-idx 0) (l-old-bg-color (car (gimp-palette-get-background))) (l-has-selection TRUE)) ; check Fade from and To Values (and force values from 0% to 100%) (if (> inFadeFrom 100) (begin (set! |  | | l-orig-selection (car (gimp-selection-save inImage))) (gimp-selection-invert inImage))) (while ( |
|
http://www.rpi.edu/AFS/home/43/chenj/acm/packages/gimp/gimp-1.2.3/plug-ins/script-fu/scripts/fade-outline.scm
(334 words)
|
|
| |
| | [Gimp-user] gimp-by-color-select trouble |
 | | Example - The following script works as predicted: (define (redglow inImage inLayer) (let* (; define local vars ((thePaste) (bounds) (x) (y)) ; the script (gimp-by-color-select inLayer '(255 255 80) 60 2 1 0 0 1) (set! |  | | y (caddr bounds)) (gimp-edit-copy inLayer) (gimp-selection-grow inImage 2) (gimp-selection-feather inImage 4) (gimp-palette-set-background '(255 80 255)) (gimp-edit-fill inLayer 1) (set! |  | | If the drawable has no open display then the result is that it selects the entire image, not just the color that I want. |
|
http://lists.xcf.berkeley.edu/lists/gimp-user/2002-April/004424.html
(247 words)
|
|
| |
| | [gnome] Log of /gimp/app/composite/gimp-composite-sse.c |
 | | Speed is improved at a cost of a 64k look-up table which is probably manageable for 8bpp images, but at larger bpp images (which currently are not supported by the GIMP) this is unlikely to be tolerable. |  | | The environment variable GIMP_COMPOSITE is a hexadecimal number representing a bit-field used to set/reset options in the gimp-composite code. |  | | * app/composite/gimp-composite-generic.c * app/composite/gimp-composite-mmx.c * app/composite/gimp-composite-sse.c Incorporated a very clean patch from starox-gimp@starox.org (Frederic Leroy) which improves the generic performance of the burn compositing function. |
|
http://cvs.gimp.org/viewcvs/gimp/app/composite/gimp-composite-sse.c?rev=1.26&view=log
(1929 words)
|
|
| |
| | GIMP - The GNU Image Manipulation Program |
 | | We hope that this will help us to learn more about how GIMP is actually being used and how we can improve the user experience. |  | | The French-speaking GIMP users may be interested in a new book called "Gimp 2 efficace" written by Cédric Gémy, author of "(A la) SOS GIMP". |  | | Many user interface decisions are being made by developers who often have little experience in user interface design. |
|
http://www.gimp.org
(1929 words)
|
|
| |
| | GIMP for Windows -- No pressure sensitivity for Wacom for Gimp 2.0.2 |
 | | Next by thread: Re: No pressure sensitivity for Wacom for Gimp 2.0.2 |  | | Next by Date: Re: Re: Wingimp on an USB memmory stick |  | | The tablet (Wacom Intuos 2) is tracking correctly, but pressure sensitivity isn't working and in the "Preferences / Interface / Input Devices / Configure Extended Input Devices" dialog its telling me there are no Extended Input Devices. |
|
http://www.spinics.net/lists/gimpwin/msg03255.html
(1929 words)
|
|
| |
| | GIMP - The GNU Image Manipulation Program |
 | | Usability is an important but also a very difficult subject for a large and complex application like GIMP. |  | | The French-speaking GIMP users may be interested in a new book called "Gimp 2 efficace" written by Cédric Gémy, author of "(A la) SOS GIMP". |  | | New GIMP book in French: Gimp 2 efficace2005-09-07 |
|
http://www.gimp.org
(794 words)
|
|
| |
| | Help GIMP developers get to GUADEC 2004 |
 | | Having completely revamped its user interface in the most recent release, version 2.0.0, the plan is now to set the GIMP on track for a new rendering engine (GEGL) that will allow arbitrary colour depths and spaces. |  | | Currently, the GIMP community has received several generous donations from the Free Software Foundation and MacGIMP, and a Merit Award from OSI, but needs about 3000 US$ more. |  | | Our goal is to have all the active GIMP and GEGL developers present at GIMPCon 2004 in order to chart a course for the GIMP for the next year and beyond. |
|
http://www.xs4all.nl/~collin/gimp/pr/guadec2004.html
(551 words)
|
|
| |
| | The History of Film Gimp |
 | | Film Gimp development was sponsored by Hollywood motion picture software maker Silicon Grail (now part of Apple) and Los Angeles film and television post-production studio Rhythm and Hues. |  | | This was a branch of Film Gimp, based on a November 2001 CVS snapshot. |  | | Scooby-Doo, the computer-generated dog in the Warner Brothers film of the same name, is the latest picture to use Film Gimp. |
|
http://filmgimp.sourceforge.net/docs/history.filmgimp.html
(1629 words)
|
|
| |
| | OpenOSX: ReadyStream: CinePaint |
 | | The Gimp is the open source alternative to Adobe Photoshop. |  | | CinePaint has been developed from The Gimp (The GNU Image Manipulation Program), specially enhanced for motion picture's film-resolution of 16-bit color-space and includes a Frame Manager. |  | | For more information about Film Gimp, visit CinePaints home and for Gimp visit Gimp's home page at www.Gimp.org. |
|
http://openosx.com/filmgimp
(320 words)
|
|
| |
| | Building Panoramic Images in The GIMP Linux Journal |
 | | Pandora is a plugin for The GIMP that takes photos and tries to match the edges of the photos together, using a best guess at where one photo ends and the next begins. |  | | Pandora detects which version of The GIMP is available and installs it automatically. |  | | Because Pandora is a GIMP plugin, to install it, you need The GIMP version 1.2 or 1.3, as well as Gimptool, which is provided in The GIMP development package. |
|
http://www.linuxjournal.com/article/7295
(1457 words)
|
|
| |
| | Grokking the GIMP - Learning Advanced Image Editing Techniques |
 | | Grokking the GIMP is a leading book for learning advanced digital image editing techniques using the GNU Image Manipulation Program, the GIMP. |  | | Because the online version of Grokking the GIMP requires JavaScript, you will need to enable it in your current browser or obtain a browser that is JavaScript capable. |  | | The book provides everything needed to learn the GIMP, including tutorials, beginning and advanced techniques, and practical information. |
|
http://gimp-savvy.com/BOOK
(173 words)
|
|
| |
| | Grokking the GIMP - $31.50 |
 | | In addition to emphasizing the theory and core concepts of image manipulation, "Grokking the GIMP" beautifully illustrates the practical aspects of working with digital images. |  | | "There are a batch of books on The GIMP, but few are as sophisticated as Grokking The GIMP. |  | | Home > Bookstore > Operating Systems > Linux > Grokking the GIMP |
|
http://www.quepublishing.com/title/0735709246
(496 words)
|
|
| |
| | No Mutants Allowed :: View topic - Briareus is not a gimp |
 | | Nothing exciting is happening on the BIS feedback forum, so i`ll leave just a quote by Chad "Briareus" Nicholas on the existence of weak characters that will lead to many reloads or the player to quit them (gimp characters): |  | | I strongly feel that the character creation and skill selection and (more importantly) the implementation of the skills will make it a lot more difficult to build a gimp character in VB than in previous games. |  | | Posted: Sat Aug 30, 2003 14:25 Post subject: Briareus is not a gimp |
|
http://www.nma-fallout.com/forum/viewtopic.php?t=1922
(450 words)
|
|
| |
| | GIMP FreeType Plug-In |
 | | GIMP FreeType Plug-In GIMP FreeType Plug-In A plug-in for The GIMP that renders text using the excellent FreeType library. |  | | The source code of GIMP FreeType lives in CVS. |  | | If you are looking for the plug-in for GIMP 1.2, you can download an older version. |
|
http://freetype.gimp.org
(450 words)
|
|
| |
| | GIMP - The GNU Image Manipulation Program |
 | | The goal of this event is to extend the traditional Gimp Convention to bring together developers and users of the best of Free Software graphics applications - GIMP, Inkscape, Scribus, Blender and more. |  | | We try to provide as much information about the GIMP community and related projects as possible. |  | | Submit those entries to the contest area of this web site and wait to see if there is a gimp-2.2.10 with your entry as the very special release splash. |
|
http://www.gimp.org
(594 words)
|
|
| |
| | Building Panoramic Images in The GIMP Linux Journal |
 | | Pandora is a plugin for The GIMP that takes photos and tries to match the edges of the photos together, using a best guess at where one photo ends and the next begins. |  | | Pandora detects which version of The GIMP is available and installs it automatically. |  | | Because Pandora is a GIMP plugin, to install it, you need The GIMP version 1.2 or 1.3, as well as Gimptool, which is provided in The GIMP development package. |
|
http://www.linuxjournal.com/article/7295
(1465 words)
|
|
| |
| | GIMP - About GIMP |
 | | Restart GIMP and your splash screen should be the one being used by GIMP instead of the one from the archive. |  | | The splash screens archives shows us some of the history behind GIMP and how it has developed through the years. |  | | As a gratitude to all people doing splash screens for GIMP, this page has been setup to show everyone the good art from people contributing. |
|
http://www.gimp.org/about/splash
(138 words)
|
|
| |
| | NewsForge Open source Photoshop alternatives |
 | | For working with raster images, photographs, and the like, the open source king is the GNU Image Manipulation Program, better known as the GIMP. |  | | The weakness in the GIMP's layering is probably the most serious deficiency; but the fact that the GIMP does not support vector layers means that there is no real integration between our vector designs and our raster images, making many graphics design tasks far more work than they really need to be. |  | | Sodipodi offers absolutely nothing over Inkscape except for its interface, which is a very poor GIMP imitation and is reported by many to be incomparably worse than that or Inkscape. |
|
http://software.newsforge.com/software/04/07/19/214206.shtml
(138 words)
|
|
| |
| | ITworld.com - GTK+ matures |
 | | Spencer Kimball and Peter Mattis began work on GIMP in the summer of 1995. |  | | However, Kimball and Mattis wanted GIMP to be entirely free, and Motif's license was quite restrictive at the time. |  | | The first versions of GIMP relied on Motif, which was the dominant commercial standard for Unix GUI development over the last decade, as we explained in an earlier report in this series on GUI toolkits. |
|
http://www.itworld.com/App/827/UIR001110gtk/
(138 words)
|
|
| |
| | INTERVIEW: Spencer Kimball and Peter Mattis |
 | | By now, Spencer and Peter would probably want to be working on something besides Gimp anyhow, but they could still be working for us. |  | | The most vocal open source proponents contend that open-source software can flourish on the strength of globally-distributed volunteerism alone; but Gimp and Gtk weren't the product of either Internet-based collaboration or bazaar-style software development. |  | | Progress on the Gimp screeched to a halt when Spencer Kimball and Peter Mattis left college to take paying jobs. |
|
http://www.balug.org/ml/balug-talk/msg02152.html
(138 words)
|
|
| |
| | GIMP - The GNU Image Manipulation Program |
 | | The French-speaking GIMP users may be interested in a new book called "Gimp 2 efficace" written by Cédric Gémy, author of "(A la) SOS GIMP". |  | | New GIMP book in French: Gimp 2 efficace2005-09-07 |  | | The book starts with the basic steps such as installation and configuration for Windows, Linux and Mac OS X and moves on to more complex topics including layers, color correction and finally scripting. |
|
http://www.gimp.org
(138 words)
|
|
| |
| | MacGIMP - GIMP 2.2 at the MacWorld Conference and Expo |
 | | GIMP Shop Turns the GIMP into Photoshop Wannabe (0) |  | | Currently in the final stages of testing, MacGIMP 2.2 is planned to be the best release of the GIMP for Mac OS X yet. |  | | We are looking into showing off MacGIMP 2.2 at the MacWorld Conference and Expo. |
|
http://www.macgimp.org/article.php?story=20041227135729682
(185 words)
|
|
|