|
| |
| | hotspots.scm |
 | | \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 <b>theb> function with <b>theb> GIMP: (script-fu-register "script-fu-save-hotspots" " |  | | (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 |
|
http://www.cise.ufl.edu/mirrors/gimp/contrib/scripts/hotspots.scm
(716 words)
|
|
| |
| | Re: [Gegl-developer] Re: [Gimp-developer] GEGL development/gimp integration |
 | | > interface and doesn't affect <b>theb> GEGL operators involved. |  | | Re: [Gimp-developer] GEGL development/gimp integration Sven Neumann (2k) |  | | Re: [Gimp-developer] GEGL development/gimp integration Sven Neumann (1k) |
|
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 |
 | | So, I guess we'll have to wait for a timeline to appear on gimp.org, or, in <b>theb> meantime go to gegl.org and start working on some of <b>theb> tasks listed there. |  | | Gegl development was not as high priority as getting gimp-2.2 ready for <b>theb> masses and most of <b>theb> people hacking on gegl are <b>theb> same people who gave us gimp (again someone correct me if I'm wrong). |  | | I may be totally wrong about this and if I am, someone please correct me, but I'm under <b>theb> 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 |
 | | GEGL is viewed as part of <b>theb> GIMP project, even though <b>theb> code is all new. |  | | <b>Theb> GEGL project is working toward a future version of GIMP, known as GIMP 2. |  | | When Film Gimp began in 1998, <b>theb> idea was to create a good companion paint program to Silicon Grail's proprietary Chalice compositor, <b>theb> precursor to RAYZ (an alternative to Shake). |
|
http://filmgimp.sourceforge.net/cinepaint/user/which.gimp.html
(698 words)
|
|
| |
| | CinePaint Ports |
 | | <b>Theb> Windows release was scheduled for December 2002, but <b>theb> Macintosh team's success delivering their Film Gimp port six month's ahead of schedule changed that. |  | | <b>Theb> first Film Gimp version to support Macintosh is 0.10, released December 3, 2002. |  | | <b>Theb> Windows Film Gimp port had first begun running (without plug-ins) on Windows 2000 on November 25, 2002. |
|
http://filmgimp.sourceforge.net/cinepaint/user/ports.html
(341 words)
|
|
| |
| | GIMP - for Mac OS X |
 | | In general, building <b>theb> GIMP on Mac OS X is complicated by <b>theb> 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 <b>theb> open source libraries upon which <b>theb> GIMP is built. |  | | Once you have installed <b>theb> GIMP on Mac OS X, <b>theb> configuration is very similar to <b>theb> other UNIX systems. |
|
http://www.gimp.org/macintosh
(602 words)
|
|
| |
| | NodeWorks - Encyclopedia: GIMP |
 | | <b>Theb> GNU Image Manipulation Program or <b>Theb> GIMP is a bitmap graphics editor, a program for creating and processing raster graphics. |  | | GIMP uses GTK+ as its widget toolkit (<b>theb> part of <b>theb> program that builds <b>theb> user interface); in fact, GTK+ was initially part of <b>theb> GIMP, intended as a replacement for <b>theb> commercial Motif toolkit, which GIMP originally depended upon. |  | | This allows to write scripts and plugins for <b>theb> 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 <b>theb> 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 <b>theb> existing mask before creating a new one (gimp-image-remove-layer-mask inImage inLayer 0) (if (= inClearUnselected TRUE) (begin (set! |  | | ; Define <b>theb> 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 - <b>Theb> following script works as predicted: (define (redglow inImage inLayer) (let* (; define local vars ((thePaste) (bounds) (x) (y)) ; <b>theb> 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 <b>theb> drawable has no open display then <b>theb> result is that it selects <b>theb> entire image, not just <b>theb> 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 <b>theb> GIMP) this is unlikely to be tolerable. |  | | <b>Theb> environment variable GIMP_COMPOSITE is a hexadecimal number representing a bit-field used to set/reset options in <b>theb> 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 <b>theb> generic performance of <b>theb> burn compositing function. |
|
http://cvs.gimp.org/viewcvs/gimp/app/composite/gimp-composite-sse.c?rev=1.26&view=log
(1929 words)
|
|
| |
| | GIMP - <b>Theb> 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 <b>theb> user experience. |  | | <b>Theb> 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". |  | | <b>Theb> GIMP team is proud to announce a new release of <b>theb> user manual for GIMP 2.2. |
|
http://www.gimp.org
(1929 words)
|
|
| |
| | GIMP for Windows -- No pressure sensitivity for Wacom for Gimp 2.0.2 |
 | | I just installed GTK+ 2 for Windows (version 2.4.3) and <b>Theb> Gimp for Windows (version 2.0.2) using <b>theb> installer from Jernej Simoncic's site. |  | | <b>Theb> tablet (Wacom Intuos 2) is tracking correctly, but pressure sensitivity isn't working and in <b>theb> "Preferences / Interface / Input Devices / Configure Extended Input Devices" dialog its telling me there are no Extended Input Devices. |  | | Next by thread: Re: No pressure sensitivity for Wacom for Gimp 2.0.2 |
|
http://www.spinics.net/lists/gimpwin/msg03255.html
(1929 words)
|
|
| |
| | GIMP - <b>Theb> GNU Image Manipulation Program |
 | | <b>Theb> 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". |  | | Please note that this is an unstable development release, there are bugs and lots of rough edges that need to be polished before 2.4. |  | | Usability is an important but also a very difficult subject for a large and complex application like GIMP. |
|
http://www.gimp.org
(794 words)
|
|
| |
| | Help GIMP developers get to GUADEC 2004 |
 | | Having completely revamped its user interface in <b>theb> most recent release, version 2.0.0, <b>theb> plan is now to set <b>theb> GIMP on track for a new rendering engine (GEGL) that will allow arbitrary colour depths and spaces. |  | | Currently, <b>theb> GIMP community has received several generous donations from <b>theb> Free Software Foundation and MacGIMP, and a Merit Award from OSI, but needs about 3000 US$ more. |  | | Our goal is to have all <b>theb> active GIMP and GEGL developers present at GIMPCon 2004 in order to chart a course for <b>theb> GIMP for <b>theb> next year and beyond. |
|
http://www.xs4all.nl/~collin/gimp/pr/guadec2004.html
(551 words)
|
|
| |
| | <b>Theb> History of Film Gimp |
 | | Scooby-Doo, <b>theb> computer-generated dog in <b>theb> Warner Brothers film of <b>theb> same name, is <b>theb> latest picture to use Film Gimp. |  | | <b>Theb> History of <b>theb> Development 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. |
|
http://filmgimp.sourceforge.net/docs/history.filmgimp.html
(1629 words)
|
|
| |
| | OpenOSX: ReadyStream: CinePaint |
 | | <b>Theb> Gimp is <b>theb> open source alternative to Adobe Photoshop. |  | | CinePaint has been developed from <b>Theb> Gimp (<b>Theb> 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 <b>Theb> GIMP Linux Journal |
 | | Pandora is a plugin for <b>Theb> GIMP that takes photos and tries to match <b>theb> edges of <b>theb> photos together, using a best guess at where one photo ends and <b>theb> next begins. |  | | Pandora detects which version of <b>Theb> GIMP is available and installs it automatically. |  | | Because Pandora is a GIMP plugin, to install it, you need <b>Theb> GIMP version 1.2 or 1.3, as well as Gimptool, which is provided in <b>Theb> GIMP development package. |
|
http://www.linuxjournal.com/article/7295
(1457 words)
|
|
| |
| | Grokking <b>theb> GIMP - Learning Advanced Image Editing Techniques |
 | | Grokking <b>theb> GIMP is a leading book for learning advanced digital image editing techniques using <b>theb> GNU Image Manipulation Program, <b>theb> GIMP. |  | | Whether you are looking for a tutorial approach or an in depth exposition of image manipulation methods, Grokking <b>theb> GIMP provides a clear and incisive presentation of this exciting field. |  | | Because <b>theb> online version of Grokking <b>theb> GIMP requires JavaScript, you will need to enable it in your current browser or obtain a browser that is JavaScript capable. |
|
http://gimp-savvy.com/BOOK
(173 words)
|
|
| |
| | Grokking <b>theb> GIMP - $31.50 |
 | | "Grokking <b>theb> GIMP" is for <b>theb> serious user of <b>theb> GNU Image Manipulation Program, a premiere digital image editing and painting program. |  | | It covers <b>theb> GIMP in depth, and complex tasks are intuitively presented and explained using an interactive approach. |  | | In addition to emphasizing <b>theb> theory and core concepts of image manipulation, "Grokking <b>theb> GIMP" beautifully illustrates <b>theb> practical aspects of working with digital images. |
|
http://www.quepublishing.com/title/0735709246
(496 words)
|
|
| |
| | No Mutants Allowed :: View topic - Briareus is not a gimp |
 | | Nothing exciting is happening on <b>theb> BIS feedback forum, so i`ll leave just a quote by Chad "Briareus" Nicholas on <b>theb> existence of weak characters that will lead to many reloads or <b>theb> player to quit them (gimp characters): |  | | I strongly feel that <b>theb> character creation and skill selection and (more importantly) <b>theb> implementation of <b>theb> skills will make it a lot more difficult to build a gimp character in VB than in previous games. |  | | But i did get <b>theb> title right, you`re no gimp for sure |
|
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 <b>Theb> GIMP that renders text using <b>theb> excellent FreeType library. |  | | <b>Theb> source code of GIMP FreeType lives in CVS. |  | | If you are looking for <b>theb> plug-in for GIMP 1.2, you can download an older version. |
|
http://freetype.gimp.org
(450 words)
|
|
| |
| | GIMP - <b>Theb> GNU Image Manipulation Program |
 | | <b>Theb> goal of this event is to extend <b>theb> traditional Gimp Convention to bring together developers and users of <b>theb> best of Free Software graphics applications - GIMP, Inkscape, Scribus, Blender and more. |  | | We try to provide as much information about <b>theb> GIMP community and related projects as possible. |  | | Submit those entries to <b>theb> contest area of this web site and wait to see if there is a gimp-2.2.10 with your entry as <b>theb> very special release splash. |
|
http://www.gimp.org
(594 words)
|
|
| |
| | Building Panoramic Images in <b>Theb> GIMP Linux Journal |
 | | Pandora is a plugin for <b>Theb> GIMP that takes photos and tries to match <b>theb> edges of <b>theb> photos together, using a best guess at where one photo ends and <b>theb> next begins. |  | | Pandora detects which version of <b>Theb> GIMP is available and installs it automatically. |  | | Because Pandora is a GIMP plugin, to install it, you need <b>Theb> GIMP version 1.2 or 1.3, as well as Gimptool, which is provided in <b>Theb> GIMP development package. |
|
http://www.linuxjournal.com/article/7295
(1465 words)
|
|
| |
| | GIMP - About GIMP |
 | | Restart GIMP and your splash screen should be <b>theb> one being used by GIMP instead of <b>theb> one from <b>theb> archive. |  | | <b>Theb> splash screens archives shows us some of <b>theb> history behind GIMP and how it has developed through <b>theb> years. |  | | <b>Theb> GIMP allows you to make your own splash screen and have that as startup splash instead of <b>theb> one that comes with <b>theb> archive. |
|
http://www.gimp.org/about/splash
(138 words)
|
|
| |
| | NewsForge Open source Photoshop alternatives |
 | | For working with raster images, photographs, and <b>theb> like, <b>theb> open source king is <b>theb> GNU Image Manipulation Program, better known as <b>theb> GIMP. |  | | <b>Theb> weakness in <b>theb> GIMP's layering is probably <b>theb> most serious deficiency; but <b>theb> fact that <b>theb> 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 <b>theb> summer of 1995. |  | | <b>Theb> first versions of GIMP relied on Motif, which was <b>theb> dominant commercial standard for Unix GUI development over <b>theb> last decade, as we explained in an earlier report in this series on GUI toolkits. |  | | GTK+ is an acronym for <b>theb> GNU image manipulation project (GIMP) toolkit. |
|
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. |  | | <b>Theb> most vocal open source proponents contend that open-source software can flourish on <b>theb> strength of globally-distributed volunteerism alone; but Gimp and Gtk weren't <b>theb> product of either Internet-based collaboration or bazaar-style software development. |  | | Progress on <b>theb> 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 - <b>Theb> GNU Image Manipulation Program |
 | | <b>Theb> 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". |  | | <b>Theb> book starts with <b>theb> 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. |  | | If you want to try it nevertheless, please read <b>theb> release notes for <b>theb> development releases. |
|
http://www.gimp.org
(138 words)
|
|
| |
| | MacGIMP - GIMP 2.2 at <b>theb> MacWorld Conference and Expo |
 | | GIMP Shop Turns <b>theb> GIMP into Photoshop Wannabe (0) |  | | Currently in <b>theb> final stages of testing, MacGIMP 2.2 is planned to be <b>theb> best release of <b>theb> GIMP for Mac OS X yet. |  | | We are looking into showing off MacGIMP 2.2 at <b>theb> MacWorld Conference and Expo. |
|
http://www.macgimp.org/article.php?story=20041227135729682
(185 words)
|
|
|