<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://registry.gimp.org" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>unknown</title>
 <link>http://registry.gimp.org/taxonomy/term/40</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Tiles 2</title>
 <link>http://registry.gimp.org/node/14458</link>
 <description>&lt;p&gt;This script will take up to 6 colours chosen by the user and create a tiled image by choosing a colour for each tile based on a percentage value entered by the user. The percentages for each colour determine the percent of tiles in the image that will use that colour. The colour and brush to use for the grout can also be chosen, along with the width and height of the image and the width and height of the tiles themselves.&lt;/p&gt;
&lt;p&gt;Check out the README.txt for more info.&lt;/p&gt;
&lt;p&gt;Comments and any useful info are welcome since this is my first attempt at a script.&lt;/p&gt;
&lt;p&gt;If anyone wants to modify the script then they are more than welcome to do so.&lt;/p&gt;
&lt;p&gt;NuttyMonk&lt;/p&gt;
&lt;p&gt;[edit] updated the script to v2 based on comments from RobA. The changes only affect the tile grout which is now much faster at being drawn.&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/14458#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/523">2.6</category>
 <category domain="http://registry.gimp.org/taxonomy/term/20">Script-Fu</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <enclosure url="http://registry.gimp.org/files/tiles2.zip" length="315211" type="application/zip" />
 <pubDate>Sat, 28 Feb 2009 02:26:37 +0100</pubDate>
 <dc:creator>NuttyMonk</dc:creator>
 <guid isPermaLink="false">14458 at http://registry.gimp.org</guid>
</item>
<item>
 <title>Noise Generator 0.2.5 Windows 32 binary</title>
 <link>http://registry.gimp.org/node/13436</link>
 <description>&lt;p&gt;A Windows 32 version of noise-generator-0.2.5, another great plugin by Marcor.&lt;br /&gt;
Without console window (compiled with LDFLAGS=-mwindows).&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/13436#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/523">2.6</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/126">grain</category>
 <category domain="http://registry.gimp.org/taxonomy/term/129">noise</category>
 <category domain="http://registry.gimp.org/taxonomy/term/60">plugin</category>
 <category domain="http://registry.gimp.org/taxonomy/term/374">windows</category>
 <enclosure url="http://registry.gimp.org/files/noise-generator-0.2.5.win32.zip" length="25160" type="application/zip" />
 <pubDate>Mon, 12 Jan 2009 12:14:08 +0100</pubDate>
 <dc:creator>Francois_C</dc:creator>
 <guid isPermaLink="false">13436 at http://registry.gimp.org</guid>
</item>
<item>
 <title>Wavelet denoise 0.3.1 Windows binary</title>
 <link>http://registry.gimp.org/node/13434</link>
 <description>&lt;p&gt;This is a working Windows binary of the latest 0.3.1 excellent wavelet denoise plugin by Marcor.&lt;br /&gt;
No console window: I compiled with LDFLAGS=-mwindows.&lt;br /&gt;
I have some trouble compiling the latest versions of some plugins: I&#039;m told &quot;cc: Command not found&quot;, and as I could not get it to work with aliases, I used a dirty workaround: making a copy of gcc.exe, named cc.exe.&lt;br /&gt;
If you want to make clean Windows exe&#039;s, you often need dirty workarounds...&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/13434#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/523">2.6</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/333">denoise</category>
 <category domain="http://registry.gimp.org/taxonomy/term/60">plugin</category>
 <category domain="http://registry.gimp.org/taxonomy/term/374">windows</category>
 <enclosure url="http://registry.gimp.org/files/wavelet-denoise-0.3.1_win32.zip" length="21830" type="application/zip" />
 <pubDate>Mon, 12 Jan 2009 11:30:14 +0100</pubDate>
 <dc:creator>Francois_C</dc:creator>
 <guid isPermaLink="false">13434 at http://registry.gimp.org</guid>
</item>
<item>
 <title>Sculptie</title>
 <link>http://registry.gimp.org/node/13129</link>
 <description>&lt;p&gt;(define (script-fu-exp-sculptie inImage inDrawable inFilename)&lt;br /&gt;
  (define (putv x y z f)&lt;br /&gt;
      (let* ((buf (string-append &quot;v &quot;&lt;br /&gt;
                                 (number-&amp;gt;string x) &quot; &quot;&lt;br /&gt;
                                 (number-&amp;gt;string y) &quot; &quot;&lt;br /&gt;
                                 (number-&amp;gt;string z) &quot;\n&quot;)))&lt;br /&gt;
      (puts buf f)&lt;br /&gt;
      )&lt;br /&gt;
  )&lt;br /&gt;
  (define (v-num-str row col width) (number-&amp;gt;string (+ (* row width) col 1)))&lt;br /&gt;
  (define (decode x) (if (&amp;gt;= x 0) x (+ 256 x)))&lt;br /&gt;
  (let*&lt;br /&gt;
    (&lt;br /&gt;
    (obj-file (fopen inFilename &quot;w+&quot;))&lt;br /&gt;
    (iwidth (car (gimp-drawable-width inDrawable)))&lt;br /&gt;
    (iheight (car (gimp-drawable-height inDrawable)))&lt;br /&gt;
    (row 0)&lt;br /&gt;
    )&lt;br /&gt;
    (verbose 2)&lt;br /&gt;
    (while (&amp;lt; row iheight)&lt;br /&gt;
        (let* ((col 0))&lt;br /&gt;
           (while (&amp;lt; col iwidth)&lt;br /&gt;
             (let*&lt;br /&gt;
               (&lt;br /&gt;
                 (pixel (cadr (gimp-drawable-get-pixel inDrawable col row)))&lt;br /&gt;
                 (x (/ (decode (aref pixel 0)) 255.0))&lt;br /&gt;
                 (y (/ (decode (aref pixel 1)) 255.0))&lt;br /&gt;
                 (z (/ (decode (aref pixel 2)) 255.0))&lt;br /&gt;
               )&lt;br /&gt;
               (putv x y z obj-file)&lt;br /&gt;
             )&lt;br /&gt;
             (set! col (+ col 1))&lt;br /&gt;
           )&lt;br /&gt;
        )&lt;br /&gt;
        (set! row (+ row 1))&lt;br /&gt;
    )&lt;br /&gt;
    (set! row 0)&lt;br /&gt;
    (while (&amp;lt; row (- iheight 1))&lt;br /&gt;
        (let* ((col 0))&lt;br /&gt;
           (while (&amp;lt; col iwidth)&lt;br /&gt;
             (writes obj-file (string-append &quot;f &quot;&lt;br /&gt;
                   (v-num-str row col iwidth) &quot; &quot;&lt;br /&gt;
                   (v-num-str row  (fmod (+ col 1) iwidth) iwidth) &quot; &quot;&lt;br /&gt;
                   (v-num-str (+ row 1) (fmod (+ col 1) iwidth)  iwidth) &quot; &quot;&lt;br /&gt;
                   (v-num-str (+ row 1) col iwidth) &quot;\n&quot;))&lt;br /&gt;
             (set! col (+ col 1))&lt;br /&gt;
           )&lt;br /&gt;
        )&lt;br /&gt;
        (set! row (+ row 1))&lt;br /&gt;
    )&lt;br /&gt;
    (verbose 0)&lt;br /&gt;
    (fclose obj-file)&lt;br /&gt;
  )&lt;br /&gt;
)&lt;/p&gt;
&lt;p&gt;        (script-fu-register&lt;br /&gt;
          &quot;script-fu-exp-sculptie&quot;                  ;func name&lt;br /&gt;
          &quot;Export Sculptie&quot;                         ;menu label&lt;br /&gt;
          &quot;Exports the current image layer as a wavefront\&lt;br /&gt;
            obj file.&quot;              ;description&lt;br /&gt;
          &quot;Kris Kovacs&quot;                             ;author&lt;br /&gt;
          &quot;copyright 2007, Kris Kovacs&quot;             ;copyright notice&lt;br /&gt;
          &quot;May 17, 2007&quot;                            ;date created&lt;br /&gt;
          &quot;RGB*&quot;&lt;br /&gt;
          SF-IMAGE &quot;Input Image&quot; 0                  ;image type that the script works on&lt;br /&gt;
          SF-DRAWABLE &quot;Input Drawable&quot; 0              ;&lt;br /&gt;
          SF-FILENAME      &quot;Output File:&quot;        &quot;tmp.obj&quot; ;a string variable&lt;br /&gt;
        )&lt;br /&gt;
(script-fu-menu-register &quot;script-fu-exp-sculptie&quot; _&quot;/Script-Fu/SecondLife&quot;)&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/13129#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/25">2.4</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/631">Sculptie</category>
 <pubDate>Mon, 29 Dec 2008 02:59:20 +0100</pubDate>
 <dc:creator>caithlincarter</dc:creator>
 <guid isPermaLink="false">13129 at http://registry.gimp.org</guid>
</item>
<item>
 <title>generate three vista plus (mac) type buttons</title>
 <link>http://registry.gimp.org/node/10536</link>
 <description>&lt;p&gt;This is an adaption of a script that I found (not sure where now but possible to re-find by searching on google).  The name under the registration was Lucas Pettett so I guess it was his.&lt;br /&gt;
Originally it took some colours and text and produced a vista style button with a gradient dark part and light part horizontally divided.  The corners were rounded and it had a border.&lt;br /&gt;
I have added the following things (so I can quickly create buttons for some of the applications I am working on):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;horizontal edge has rounded corners and feathered
	&lt;/li&gt;
&lt;li&gt;produces three versions:
&lt;ul&gt;
&lt;li&gt;grey - inactive form
		&lt;/li&gt;
&lt;li&gt;normal button
		&lt;/li&gt;
&lt;li&gt;mouse hover form (i.e. with the blue led shining through)
		&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;it&#039;s possible to pick up a vector/path type svg file (you can save a path as this by right clicking on the path in the dockable dialogue then choosing export).  This will then be scaled to fit your button (so you will get distortion if they are mismatched shapes.)
	&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I&#039;m not a script-fu programmer so most of this is trial and error and would probably benefit from some expert scrutiny.&lt;br /&gt;
The GIMP I&#039;m using is 2.6 on windows so I don&#039;t know if it works elsewhere.&lt;br /&gt;
(examples attached below)&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/10536#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/523">2.6</category>
 <category domain="http://registry.gimp.org/taxonomy/term/20">Script-Fu</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/312">button</category>
 <category domain="http://registry.gimp.org/taxonomy/term/547">grayed</category>
 <category domain="http://registry.gimp.org/taxonomy/term/546">greyed</category>
 <category domain="http://registry.gimp.org/taxonomy/term/548">hover</category>
 <category domain="http://registry.gimp.org/taxonomy/term/314">logo</category>
 <category domain="http://registry.gimp.org/taxonomy/term/545">vista</category>
 <enclosure url="http://registry.gimp.org/files/v_but_0.png" length="4952" type="image/png" />
 <pubDate>Thu, 16 Oct 2008 20:53:13 +0200</pubDate>
 <dc:creator>paddywwoof</dc:creator>
 <guid isPermaLink="false">10536 at http://registry.gimp.org</guid>
</item>
<item>
 <title>JPEG 2000</title>
 <link>http://registry.gimp.org/node/9899</link>
 <description>&lt;p&gt;The wavelet/JPEG 2000 plug-in, written by Divyanshu Vats, from the 2006 GIMP Google Summer of Code wavelet project, mentored by Simon Budig.&lt;/p&gt;
&lt;p&gt;It creates three plug-ins:&lt;br /&gt;
jp2: JPEG 2000 support&lt;br /&gt;
denoise: A noise removal plug-in&lt;br /&gt;
ihalf: Inverse halftoning -- remove halftones from printed images. &lt;/p&gt;
&lt;p&gt;It requires the openjpeg library, available at: &lt;a href=&quot;http://www.openjpeg.org/&quot; title=&quot;http://www.openjpeg.org/&quot;&gt;http://www.openjpeg.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&#039;m not sure what the license is (the code files don&#039;t say) but the COPYING file looks pretty free.&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/9899#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/25">2.4</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/518">jpeg</category>
 <category domain="http://registry.gimp.org/taxonomy/term/336">wavelet</category>
 <enclosure url="http://registry.gimp.org/files/jp2.tar.gz" length="1013619" type="application/x-gzip" />
 <pubDate>Tue, 30 Sep 2008 23:21:57 +0200</pubDate>
 <dc:creator>akkana</dc:creator>
 <guid isPermaLink="false">9899 at http://registry.gimp.org</guid>
</item>
<item>
 <title>Iconify2.scm</title>
 <link>http://registry.gimp.org/node/8554</link>
 <description>&lt;p&gt;Iconify2.scm&lt;br /&gt;
Iconify2 plug-in converts a single layer of a single image into a multi-layered image ready to be saved as a Windows icon.&lt;br /&gt;
;The new image will contain all standard sizes (16x16, 32x32, 48x48) at all standard bit depths (16 colors, 256 colors, 32-bit RGBA), with transparency support.&lt;br /&gt;
*Note: Not fully tested though, so be sure to try it on an &amp;quot;expendable&amp;quot; copy of an image first.&lt;br /&gt;
**Tested on - Gimp 2.4.6&lt;br /&gt;
- Gimp Portable 2.4.6&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/8554#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/25">2.4</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/198">icons</category>
 <category domain="http://registry.gimp.org/taxonomy/term/60">plugin</category>
 <category domain="http://registry.gimp.org/taxonomy/term/259">script</category>
 <category domain="http://registry.gimp.org/taxonomy/term/299">script-fu</category>
 <enclosure url="http://registry.gimp.org/files/iconify2.scm" length="5139" type="application/octet-stream" />
 <pubDate>Mon, 25 Aug 2008 06:09:40 +0200</pubDate>
 <dc:creator>Gargy</dc:creator>
 <guid isPermaLink="false">8554 at http://registry.gimp.org</guid>
</item>
<item>
 <title>anitools</title>
 <link>http://registry.gimp.org/node/8362</link>
 <description>&lt;p&gt;this script adds an &amp;quot;anitools&amp;quot; submenu to the &amp;quot;script-fu&amp;quot; menu with entries useful for creating (optimized) animated GIFs:&lt;br /&gt;
&lt;b&gt;create scanlines&lt;/b&gt;: paint every other horizontal line in each layer with the current foreground layer. this can decrease the size of the resulting GIF and some people like the look :-)&lt;br /&gt;
&lt;b&gt;set image framerate&lt;/b&gt;: set the frame rate for all layers in the current image.&lt;br /&gt;
&lt;b&gt;set layer framerate&lt;/b&gt;: set the frame rate for just the current layer.&lt;br /&gt;
&lt;b&gt;make GIF animation&lt;/b&gt;: rough and unfinished attempt to improve on the &amp;quot;optimize for GIF&amp;quot; plugin.&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/8362#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/523">2.6</category>
 <category domain="http://registry.gimp.org/taxonomy/term/20">Script-Fu</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/253">animation</category>
 <category domain="http://registry.gimp.org/taxonomy/term/378">gif</category>
 <enclosure url="http://registry.gimp.org/files/animation-tools.scm" length="4562" type="text/x-scheme" />
 <pubDate>Tue, 19 Aug 2008 23:05:56 +0200</pubDate>
 <dc:creator>joodie</dc:creator>
 <guid isPermaLink="false">8362 at http://registry.gimp.org</guid>
</item>
<item>
 <title>Make Your Own Planet - Script of MarvinX&#039;s Tutorial - Updated for Gimp 2.6</title>
 <link>http://registry.gimp.org/node/8172</link>
 <description>&lt;p&gt;This script automates many of the steps in MarvinX&#039;s fantastic &amp;quot;Make a Planet&amp;quot; tutorial, with a couple of added features.  There is an atmospheric haze around the planet, and there are stars on the background layer.  This script does not do the IWarp step.  I leave that to the individual user to make wherever they want..  Everything else is in here.&lt;br /&gt;
After the script is done running, you can manually adjust the hue and saturation to get the planet the color you would like.  There is also an option to make the planet more earth-like (using the Land and Sea gradient on the Clouds Layer.)  The sun shadow is also optional.&lt;br /&gt;
Enjoy!&lt;/p&gt;
</description>
 <comments>http://registry.gimp.org/node/8172#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/25">2.4</category>
 <category domain="http://registry.gimp.org/taxonomy/term/20">Script-Fu</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/441">MarvinX</category>
 <category domain="http://registry.gimp.org/taxonomy/term/45">planet</category>
 <category domain="http://registry.gimp.org/taxonomy/term/259">script</category>
 <enclosure url="http://registry.gimp.org/files/Planet_Setup.scm" length="7973" type="application/octet-stream" />
 <pubDate>Fri, 15 Aug 2008 05:10:58 +0200</pubDate>
 <dc:creator>sambrookjm</dc:creator>
 <guid isPermaLink="false">8172 at http://registry.gimp.org</guid>
</item>
<item>
 <title>3d Landscape Generate</title>
 <link>http://registry.gimp.org/node/7431</link>
 <description>Makes landscapes around these lines, no color tho, that has to be done manually with overlay and multiply layers&lt;img src=&quot;http://i130.photobucket.com/albums/p264/bryanthesnotskie/Landscape-800.jpg&quot; /&gt;&lt;br /&gt;
Width&lt;br /&gt;
Height&lt;br /&gt;
Use Thumbnail sizes (400 x 300, good for a quick preview until you get something amazing)&lt;br /&gt;
Seed 1&lt;br /&gt;
Seed 2&lt;br /&gt;
Balance (affects the contrast/brightness balance in one of the mid steps, can give a little more &amp;quot;crisp&amp;quot; to final product) Detail (detail values in the difference clouds)&lt;br /&gt;
Depth (gives the mountains some more rugidness)&lt;br /&gt;
Blur (smooths out the layer with the lines on it some more)&lt;br /&gt;
Lean (how far in the layer is leaned back)&lt;br /&gt;
Edge (how far in the bottom edges are moved in)&lt;br /&gt;
Interpolate (for perspective plugin) Remove Grid Flatten&lt;br /&gt;&lt;br /&gt;
Ill try and get a tutorial up somewhere for explaining exactly how it works, and another for getting some color in&lt;br /&gt;
&lt;br /&gt;
note: this can run pretty slow sometimes when working with the larger images (like the 1600 x 1200 wallpapers), hence the implementing of the thumbnail toggle. Also tried only in version 2.4, if any problems just tell me and ill give it a look</description>
 <comments>http://registry.gimp.org/node/7431#comments</comments>
 <category domain="http://registry.gimp.org/taxonomy/term/20">Script-Fu</category>
 <category domain="http://registry.gimp.org/taxonomy/term/40">unknown</category>
 <category domain="http://registry.gimp.org/taxonomy/term/418">KNO3 3d Landscape Generate wallpaper</category>
 <enclosure url="http://registry.gimp.org/files/kno3landscape.scm" length="3410" type="application/octet-stream" />
 <pubDate>Sun, 27 Jul 2008 08:14:19 +0200</pubDate>
 <dc:creator>Bryan-Knowles</dc:creator>
 <guid isPermaLink="false">7431 at http://registry.gimp.org</guid>
</item>
</channel>
</rss>
