<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The Artist's Guide to GIMP Effects</title>
	
	<link>http://www.graphics-muse.org/artistsguide</link>
	<description>Companion site to the book by Michael J. Hammel, published by No Starch Press</description>
	<pubDate>Fri, 04 Sep 2009 20:30:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/artistsguide" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Building GIMP 2.7.x from source</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/_l0G3Q3Pz7k/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=247#comments</comments>
		<pubDate>Thu, 03 Sep 2009 01:59:51 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[GIMP Development]]></category>

		<category><![CDATA[babl]]></category>

		<category><![CDATA[fedora]]></category>

		<category><![CDATA[gegl]]></category>

		<category><![CDATA[gimp]]></category>

		<category><![CDATA[gnome]]></category>

		<category><![CDATA[gtk+]]></category>

		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=247</guid>
		<description><![CDATA[I&#8217;m preparing to update my GIMP book and decided it would be best to work from the source repository.  A long time ago that repository was in CVS and you needed to download a bunch of GTK related packages as prerequisites.  This was actually pretty easy.  Then things moved to SVN and things were still [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m preparing to update my GIMP book and decided it would be best to work from the source repository.  A long time ago that repository was in CVS and you needed to download a bunch of GTK related packages as prerequisites.  This was actually pretty easy.  Then things moved to SVN and things were still pretty easy but you needed different repository tools.  Now things are in GIT and you need more packages unrelated to GTK, such as GEGL and BABL.  Things keep getting harder.  Sounds like GNOME development in general.</p>
<p>But I&#8217;m a developer by trade so there should be no reason I cannot figure out.  So this blog entry is all about getting that done.</p>
<h3>Required Packages</h3>
<ul>
<li>BABL</li>
<li>GEGL
<ul>
<li>Ruby (when building from the git repository)</li>
<li>lua-devel</li>
<li>OpenEXR-devel</li>
<li>librsvg2-devel</li>
<li>libopenraw-devel</li>
<li>graphviz</li>
<li>avformat</li>
<li>libspiro-devel</li>
</ul>
</li>
<li>GIMP
<ul>
<li>jasper library</li>
<li>libpoppler</li>
<li>libwmf</li>
<li>libexif</li>
</ul>
</li>
</ul>
<p>These are just the packages that were not found the first time I tried to build things on Fedora 11.  On other systems (including Windows and Macs) you&#8217;ll may have other requirements, especially if you don&#8217;t use GNOME on your desktop at all.  Fedora 11 didn&#8217;t seem to have a version of avformat so I skipped it.  I installed libpoppler (runtime and devel packages) but GIMP didn&#8217;t like that so the PDF support was built using the Postscript plug-in.</p>
<p>The list of packages available from the GIT repository is available from the <a href="http://developer.gimp.org/git.html">GIMP Developer</a> web site.  This list does not list the prerequisites that are not part of the GIMP GIT repository.</p>
<h3>Getting The Source</h3>
<p>Git requires two steps to get the code.  The first is called a clone, which gets the source sufficient to build the tree.  The second step, checkout, actually checks out the source so that you can make modifications and check them back in.   A third step, config, allows configuration of general details such as your user name and email address.  Only the first step is required if all you want to do is built GIMP from the source tree in order to get all the latest features and bug fixes and are not intending to make source code changes to submit back to the project.  All of this information can be found on the <a href="http://live.gnome.org/Git/Developers">GNOME GIT</a> <a href="http://live.gnome.org/Git">pages</a>.</p>
<h3>Compiling Order</h3>
<p>Building the GIMP is easy at the moment because there are only two real dependencies that can&#8217;t be satisfied by just installing prebuilt development packages.  This won&#8217;t always be the case as development of the 2.7 version progresses.</p>
<p>For now, you can get away with building in the following order:</p>
<ul>
<li>BABL</li>
<li>GEGL</li>
<li>GIMP</li>
</ul>
<h3>Building Into a Development Directory</h3>
<p>If you build all the prerequisites into a single directory it will make it easier to compile prerequisites and run programs later.  Therefore we choose a single directory: <strong><span style="color: #003366;"><span style="font-family: courier new,courier;">/usr/local/gimpgit</span></span></strong>.   To use this directory for the build we&#8217;re going to want to add some environment variable settings:</p>
<p style="padding-left: 30px;"><span style="color: #003366;"><span style="font-family: courier new,courier;">export PKG_CONFIG_PATH=/usr/local/gimpgit/lib/pkgconfig/:$PKG_CONFIG_PATH</span></span></p>
<p style="padding-left: 30px;"><span style="color: #003366;"><span style="font-family: courier new,courier;">export LD_LIBRARY_PATH=/usr/local/gimpgit/lib:$LD_LIBRARY_PATH</span></span></p>
<p>The first variable is used to find pkg-config configuration files for prerequisite libraries.  The second is used to find runtime libraries of prerequisite packages during the build.  In both cases we&#8217;re placing the location to look for file of interest from the build directory tree ahead of any other configurations we might have previously set such as in our .bashrc file.  In this way we&#8217;ll pick up the new builds first and then pick up the old versions later if the new versions haven&#8217;t been built yet.  This will cause the build of each prerequisite to behave in the expected fashion, informing us of missing requirements.</p>
<h3>Build Process</h3>
<p>The GIMP packages (BABL, GEGL and GIMP) are all built using the autogen.sh script.  This is a front end to the autoconf/automake/libtool configuration contained in the source tree that makes it easy to create the Makefiles throughout the tree.  The general format of the command is as follows:</p>
<p style="padding-left: 30px;"><span style="color: #003366;"><span style="font-family: courier new,courier;">./autogen.sh &#8211;prefix=/usr/local/gimpgit</span></span></p>
<p>Running autogen.sh in the gimp source tree the first time will print out the results of simple tests to verify that you have required build tools, such as autoconf and automake.  When autogen.sh is run it will also run the configure script it creates which in turn will do additional searches for required packages.  It is at this point that the build will detect if you have the proper prerequisite libraries installed such as BABL and GEGL.</p>
<p>In order to find out what prerequisites I was missing I just ran autogen.sh once in the GIMP tree.  It told me I was missing babl, which I then built and installed.  I then ran the same autogen.sh command but substituted configure for autogen.sh because the latter will rebuild everything while the former (configure) will just run the configuration processing.  In other words, autogen.sh is needed once to build the configure script. After that you can usually just run configure instead.</p>
<h4>BABL</h4>
<p>After running autogen.sh, run the following commands:</p>
<ul>
<li>make</li>
<li>sudo make install</li>
</ul>
<h4>GEGL</h4>
<p>After installing the myriad of prerequisites and running autogen.sh, run the following commands:</p>
<ul>
<li>make</li>
<li>sudo make install</li>
</ul>
<h4>GIMP</h4>
<p>Fortunately it doesn&#8217;t appear that you need to update GTK+ and its related libraries for GIMP.  At least not at this time and not with GIMP 2.7 out of the git repository.</p>
<p>After installing the myriad of prerequisites and running autogen.sh, run the following commands:</p>
<ul>
<li>make</li>
<li>sudo make install</li>
</ul>
<h3>Running GIMP</h3>
<p>Now that you have it all built you just need to make sure the the build directories are the first in your PATH environment variable.  The best way to do this without affecting the rest of you desktop experience is to write a little script and use it to launch the development version.</p>
<p style="padding-left: 30px;"><span style="color: #003366;"><span style="font-family: courier new,courier;">#!/bin/bash </span></span></p>
<p style="padding-left: 30px;"><span style="color: #003366;"><span style="font-family: courier new,courier;">export PATH=/usr/local/gimpgit/bin:$PATH</span></span></p>
<p style="padding-left: 30px;"><span style="color: #003366;"><span style="font-family: courier new,courier;">gimp-2.7<br />
</span></span></p>
<p>Note that the program name is not &#8220;gimp&#8221;.  You can now run the development version of GIMP.  This version will create a new runtime directory in the users home:  .gimp-2.7.  GIMP will import its settings from your old .gimp-2.6 directory or even your .gimp-2.4 directory if you skipped 2.6 altogether.</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=babl" title="babl" >babl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=fedora" title="fedora" >fedora</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gegl" title="gegl" >gegl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gimp" title="gimp" >gimp</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gnome" title="gnome" >gnome</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gtk" title="gtk+" >gtk+</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=pdf" title="PDF" >PDF</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=34" title="New User FAQ (Mon July 09, 2007)">New User FAQ</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=245" title="Developer release: GIMP 2.7.0 (Mon August 17, 2009)">Developer release: GIMP 2.7.0</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=10" title="Tips and Tricks and Resources (Thu November 02, 2006)">Tips and Tricks and Resources</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=100" title="Looking at 2.6 (Fri January 02, 2009)">Looking at 2.6</a> (4)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=115" title="Inexpensive tablets for Linux and GIMP? (Sat January 31, 2009)">Inexpensive tablets for Linux and GIMP?</a> (3)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/_l0G3Q3Pz7k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=247</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=247</feedburner:origLink></item>
		<item>
		<title>Developer release: GIMP 2.7.0</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/0h7G_nBEPTQ/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=245#comments</comments>
		<pubDate>Mon, 17 Aug 2009 16:21:10 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[GIMP Announcements]]></category>

		<category><![CDATA[babl]]></category>

		<category><![CDATA[brushes]]></category>

		<category><![CDATA[docks]]></category>

		<category><![CDATA[gegl]]></category>

		<category><![CDATA[gnome]]></category>

		<category><![CDATA[GPLv]]></category>

		<category><![CDATA[layer modes]]></category>

		<category><![CDATA[printing]]></category>

		<category><![CDATA[text tool]]></category>

		<category><![CDATA[tool options]]></category>

		<category><![CDATA[x11]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=245</guid>
		<description><![CDATA[We are pleased to announce the release of GIMP 2.7.0 which is the first step towards GIMP 2.8, the next stable release. Even though GEGL related work has been made, the primary focus for GIMP 2.8 is to get work not related to GEGL done. This will enable us to fully focus on GEGL once [...]]]></description>
			<content:encoded><![CDATA[<p>We are pleased to announce the release of GIMP 2.7.0 which is the first step towards GIMP 2.8, the next stable release. Even though GEGL related work has been made, the primary focus for GIMP 2.8 is to get work not related to GEGL done. This will enable us to fully focus on GEGL once GIMP 2.8 has been released and finish the integration we have tentatively started.</p>
<p>You will need GEGL 0.1.0 and babl 0.1.0 found at <a href="http://www.gegl.org">http://www.gegl.org</a> and <a href="http://www.gegl.org/babl">http://www.gegl.org/babl</a> to build GIMP 2.7.0. The GIMP 2.7 release notes can be read at <a href="http://gimp.org/release-notes/gimp-2.7.html">http://gimp.org/release-notes/gimp-2.7.html</a>. A more complete but summarized list of changes is in the NEWS file found at <a href="http://git.gnome.org/cgit/gim/tree/NEWS">http://git.gnome.org/cgit/gim/tree/NEWS</a>. This file is also quoted below.</p>
<p>/ Martin</p>
<p>Changes in GIMP 2.7.0<br />
=====================</p>
<p>UI:</p>
<p>- Change the Text Tool to perform text editing on-canvas (GSoC 2008)<br />
- Add support for tagging GIMP resources such as brushes and allow filtering based on these tags (GSoC 2008)<br />
- Separate the activies of saving an image and exporting it, there is now an &#8216;File-&gt;Export&#8230;&#8217; for example<br />
- Port file plug-ins to new export API which gets rid of many annoying export dialogs<br />
- Add a simple parser to size entry widgets, images can be scaled to e.g. &#8220;50%&#8221; or &#8220;2 * 37px + 10in&#8221;<br />
- Arrange layer modes into more logical and useful groups<br />
- Added support for rotation of brushes<br />
- Make the Pointer dockable show information about selection position and size<br />
- Get rid of the Tools dockable and move toolbox configuration to Preferences<br />
- Add status bar feedback for keyboard changes to brush paramaters<br />
- Add diagonal guides to the Crop Tool<br />
- New docks are created at the pointer position<br />
- Add support for printing crop marks for images<br />
- Move &#8216;Text along path&#8217; from tool options to text context menu<br />
- Change default shortcuts for &#8220;Shrink Wrap&#8221; and &#8220;Fit in Window&#8221; to Ctrl+R and Ctrl+Shift+R respectively since the previous shortcuts are now used for the save+export feature<br />
- Make Alt+Click on layers in Layers dockable create a selection from the layer<br />
- Allow to specify written language in the Text Tool</p>
<p>Plug-ins:</p>
<p>- Map the &#8216;Linear Dodge&#8217; layer mode in PSD files to the &#8216;Addition&#8217; layer mode in GIMP<br />
- Add JPEG2000 load plug-in<br />
- Add X11 mouse cursor plug-in<br />
- Add support for loading 16bit (RGB565) raw data<br />
- Add palette exporter for CSS, PHP, Python, txt and Java, accessed through palette context menu<br />
- Add plug-in API for getting image URI, for manipulating size of text layers, for getting and setting text layer hint, and for unified export dialog appearance</p>
<p>Data:</p>
<p>- Add large variants of round brushes and remove duplicate and useless brushes<br />
- Add &#8220;FG to BG (Hardedge)&#8221; gradient</p>
<p>GEGL:</p>
<p>- Port the projection code, the code that composes a single image from a stack of layers, to GEGL<br />
- Port layer modes to GEGL<br />
- Port the floating selection code to GEGL<br />
- Refactor the layer stack code to prepare for layer groups later<br />
- Prepare better and more intuitive handling of the floating selection<br />
- Add File-&gt;Debug-&gt;Show Image Graph that show the GEGL graph of an image<br />
- Allow to benchmark projection performance with File-&gt;Debug-&gt;Benchmark Projection<br />
- When using GEGL for the projection, use CIELCH instead of HSV/HSL for color based layer modes</p>
<p>Core:</p>
<p>- Make painting strokes Catmull-Rom Spline interpolated<br />
- Add support for arbitrary affine transforms of brushes<br />
- Add support for brush dynamics to depend on tilt<br />
- Add aspect ratio to brush dynamics<br />
- Add infrastructure to soon support vector layers (GSoC 2006)<br />
- Rearrange legacy layer mode code to increase maintainability<br />
- Drop support for the obsolete GnomeVFS file-uri backend<br />
- Allow to dump keyboard shortucts ith File-&gt;Debug-&gt;Dump Keyboard Shortcuts<br />
- Prepare data structures for layer groups<br />
- Remove gimprc setting &#8220;menu-mnemonics&#8221;, &#8220;GtkSettings:gtk-enable-mnemonics&#8221; shall be used instead<br />
- Remove &#8220;transient-docks&#8221; gimprc setting, the &#8216;Utility window&#8217; hint and a sane window manager does a better job<br />
- Remove &#8220;web-browser&#8221; gimprc setting and use gtk_show_uri() instead</p>
<p>General:</p>
<p>- Changed licence to (L)GPLv3+<br />
- Use the automake 1.11 feature &#8217;silent build rules&#8217; by default<br />
- Lots of bug fixes and cleanup</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=babl" title="babl" >babl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=brushes" title="brushes" >brushes</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=docks" title="docks" >docks</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gegl" title="gegl" >gegl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gnome" title="gnome" >gnome</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gplv" title="GPLv" >GPLv</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=layer-modes" title="layer modes" >layer modes</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=printing" title="printing" >printing</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=text-tool" title="text tool" >text tool</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=tool-options" title="tool options" >tool options</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=x11" title="x11" >x11</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=247" title="Building GIMP 2.7.x from source (Wed September 02, 2009)">Building GIMP 2.7.x from source</a> (2)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=15" title="Tutorials (Wed December 06, 2006)">Tutorials</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=139" title="GIMP Paint Studio Collection (Tue February 03, 2009)">GIMP Paint Studio Collection</a> (11)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=242" title="GIMP 2.6.7 released (Sat August 15, 2009)">GIMP 2.6.7 released</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=188" title="GIMP 2.6.5 (Sun February 15, 2009)">GIMP 2.6.5</a> (4)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/0h7G_nBEPTQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=245</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=245</feedburner:origLink></item>
		<item>
		<title>GIMP 2.6.7 released</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/hgyBxznlRsg/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=242#comments</comments>
		<pubDate>Sat, 15 Aug 2009 21:28:59 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[GIMP Announcements]]></category>

		<category><![CDATA[gegl]]></category>

		<category><![CDATA[Palettes]]></category>

		<category><![CDATA[PDF]]></category>

		<category><![CDATA[png]]></category>

		<category><![CDATA[printing]]></category>

		<category><![CDATA[translation]]></category>

		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=242</guid>
		<description><![CDATA[GIMP 2.6.7 comes with lots of bug-fixes and it contains an important fix for using GIMP with the latest GEGL and babl releases. The source code can be downloaded from ftp.gimp.org or from one of the mirrors listed at http://gimp.org/downloads/#mirrors. Binary packages are already available for many platforms; please check the Downloads section at www.gimp.org.
We [...]]]></description>
			<content:encoded><![CDATA[<p>GIMP 2.6.7 comes with lots of bug-fixes and it contains an important fix for using GIMP with the latest GEGL and babl releases. The source code can be downloaded from <a href="ftp://ftp.gimp.org">ftp.gimp.org</a> or from one of the mirrors listed at <a href="http://gimp.org/downloads/#mirrors">http://gimp.org/downloads/#mirrors</a>. Binary packages are already available for many platforms; please check the Downloads section at <a href="http://www.gimp.org">www.gimp.org</a>.</p>
<p>We recommend that you also update GEGL and babl to the latest released versions, see <a href="http://gegl.org/">http://gegl.org/</a></p>
<p>Overview of Changes from GIMP 2.6.6 to GIMP 2.6.7<br />
=================================================</p>
<p>* Bugs fixed:</p>
<p>591017 – Tablet pan is not working as fast as it should<br />
577581 – Crashes when using any colors tool/function on Windows<br />
589667 – GIMP crashes when clicking GEGL Operation on Windows<br />
569833 – file-jpeg-save erroneous with small quality values<br />
590638 – Changing palettes from list to grid view loses &#8220;locked  to dock&#8221; status<br />
589674 – &#8220;Send by Email&#8221; does not update &#8220;Filename&#8221;<br />
589674 – &#8220;Send by Email&#8221; does not update &#8220;Filename&#8221;<br />
586851 – Transparent BMP files fail to load<br />
589205 – help-browser uses deprecated (and sometimes broken) webkit call<br />
582821 – &#8216;Sphere Designer&#8217; does not reset correctly&#8230;<br />
570353 – first time open of .svg file ignores the requested units<br />
555777 – Export to MNG animation fails<br />
577301 – Dithering with transparency is broken for &#8220;positioned&#8221; method<br />
493778 – metadata plug-in crashes on some images<br />
567466 – PNG comment not found if more than 1 tEXt chunks<br />
585665 – Exporting to PSD with a blank text layer creates a corrupt file<br />
586316 – Levels tool does not adjust output levels correctly if input levels are changed<br />
569661 – Import from PDF throws errors when entering resolution in pixels per millimetre<br />
567262 – Black pixels appear in &#8220;Spread&#8221; filter preview<br />
554658 – Path Dialog: Path preview pics not to see constantly<br />
167604 – gimp_gradient_get_color_at() may return out-of-bounds values<br />
567393 – Rectangle select tool size shrinks to 0 if size is larger than the image and the up or down arrow is pressed<br />
587543 – crash when invoking certain actions by keyboard shortcut<br />
563029 - Closing maximized image doesn&#8217;t restore document window size<br />
585488 – Perspective transformation on a layer with a mask causes crash<br />
586008 - GIMP crashes when right-click canceling a drawing action initiated outside layer boundaries<br />
584345 – when printing, the number of copies should be reset to 1<br />
557061 – Alpha to Logo<br />
472644 – Rotate with clipping crops the whole layer<br />
577575 – transform tool fills underlying extracted area wrongly<br />
555738 – Image display is wrong after undoing canvas size<br />
577024 – help-browser plugin crashes when used with webkit 1.1.3<br />
555025 – Action GEGL box widgets weirdness</p>
<p>* Updated and new translations:</p>
<p>Czech (cs)<br />
Danish (da)<br />
German (de)<br />
Spanish (es)<br />
Basque (eu)<br />
Finnish (fi)<br />
Hungarian (hu)<br />
Italian (it)<br />
Gujarati (gu)<br />
Japanese (ja)<br />
Kannada (kn)<br />
Marathi (mr)<br />
Norwegian bokmål (nb)<br />
Oriya (or)<br />
Portuguese (pt)<br />
Romanian (ro)<br />
Sinhala (si)<br />
Swedish (sv)<br />
Simplified Chinese (zh_CN)<br />
Traditional Chinese - Hong Kong (zh_HK)<br />
Traditional Chinese - Taiwan (zh_TW)</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=gegl" title="gegl" >gegl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=palettes" title="Palettes" >Palettes</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=pdf" title="PDF" >PDF</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=png" title="png" >png</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=printing" title="printing" >printing</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=translation" title="translation" >translation</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=transparency" title="transparency" >transparency</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=209" title="GIMP Paint Shop documentation english translation (Sat March 07, 2009)">GIMP Paint Shop documentation english translation</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=182" title="GIMP Deep Color:  patch for 16-bit support of PNG (Tue February 10, 2009)">GIMP Deep Color:  patch for 16-bit support of PNG</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=245" title="Developer release: GIMP 2.7.0 (Mon August 17, 2009)">Developer release: GIMP 2.7.0</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=247" title="Building GIMP 2.7.x from source (Wed September 02, 2009)">Building GIMP 2.7.x from source</a> (2)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=65" title="Shadow Maps (Sun July 15, 2007)">Shadow Maps</a> (0)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/hgyBxznlRsg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=242</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=242</feedburner:origLink></item>
		<item>
		<title>Gallery updates</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/XRp4XY_6UQ8/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=239#comments</comments>
		<pubDate>Sat, 18 Jul 2009 23:36:29 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[decay]]></category>

		<category><![CDATA[fire goddess]]></category>

		<category><![CDATA[gallery updates]]></category>

		<category><![CDATA[gimp]]></category>

		<category><![CDATA[linux format]]></category>

		<category><![CDATA[star fields]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=239</guid>
		<description><![CDATA[I&#8217;ve updated my Linux Format gallery with the final images from my GIMP tutorials in that magazine.  These are recent images of some slightly more advanced topics: adding decay to a cityscape photo, a fire goddess and advanced star fields.  The magazine doesn&#8217;t print the final large version of the image very often so I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated my <a href="http://www.graphics-muse.org/wp/?page_id=126">Linux Format gallery</a> with the final images from my GIMP tutorials in that magazine.  These are recent images of some slightly more advanced topics: adding decay to a cityscape photo, a fire goddess and advanced star fields.  The magazine doesn&#8217;t print the final large version of the image very often so I thought I should give readers a chance to see the full sized version.</p>
<p>I&#8217;m especially proud of <a href="http://www.graphics-muse.org/wp/wp-content/gallery/linuxformat/decay.jpg">Decay</a>.  Take a look at the <a href="http://www.graphics-muse.org/wp/wp-content/gallery/linuxformat/01-beforeandafter.jpg">before and after shot</a> to get an idea of how a simple photo can be seriously modified using GIMP.</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=decay" title="decay" >decay</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=fire-goddess" title="fire goddess" >fire goddess</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gallery-updates" title="gallery updates" >gallery updates</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gimp" title="gimp" >gimp</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=linux-format" title="linux format" >linux format</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=star-fields" title="star fields" >star fields</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=4" title="Using Drawing Tablets with the GIMP (Wed October 18, 2006)">Using Drawing Tablets with the GIMP</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide" title="The Artist&#8217;s Guide to GIMP Effects (Wed December 06, 2006)">The Artist&#8217;s Guide to GIMP Effects</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=100" title="Looking at 2.6 (Fri January 02, 2009)">Looking at 2.6</a> (4)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=8" title="Working Production Edits for Section V (Mon October 30, 2006)">Working Production Edits for Section V</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=86" title="User Manual 2.4.1- Special Release (Tue April 01, 2008)">User Manual 2.4.1- Special Release</a> (0)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/XRp4XY_6UQ8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=239</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=239</feedburner:origLink></item>
		<item>
		<title>Praise for the book</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/1L8DBBwM_PU/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=222#comments</comments>
		<pubDate>Thu, 02 Apr 2009 14:57:13 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[Commentary]]></category>

		<category><![CDATA[GIMP Reviews]]></category>

		<category><![CDATA[michael j hammel]]></category>

		<category><![CDATA[Praise]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=222</guid>
		<description><![CDATA[Patrick Horgan posted a nice review of the book to the GIMP User mailing list.  I have not asked permission to repost it here, but since it&#8217;s a public mailing list I thought it would be okay.
I mentioned some time ago that I was reading The Artist&#8217;s Guide to GIMP Effects, by michael j. hammel, [...]]]></description>
			<content:encoded><![CDATA[<p>Patrick Horgan posted a nice <a href="http://lists.xcf.berkeley.edu/lists/gimp-user/2009-April/014560.html">review of the book</a> to the GIMP User mailing list.  I have not asked permission to repost it here, but since it&#8217;s a public mailing list I thought it would be okay.</p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">I mentioned some time ago that I was reading The Artist&#8217;s Guide to GIMP Effects, by michael j. hammel, and that over time I&#8217;d report on what I thought about it.  Ok, here&#8217;s what I think about it. WOW!</span></span></span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">I still have a long way to go to absorb everything in here, but in a few weeks I&#8217;ve gone from someone who&#8217;s messed around with Gimp for a few years but still felt lost, to someone who knows the principles behind using it as a tool.</span></span></span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">Many of the questions people ask here seem obvious after reading and working with it for awhile.</span></span></span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">He does a great job of teaching you the basic principles that let you solve problems.  You start thinking about what you want, instead of looking at what Gimp can do.</span></span></span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">If you need to combine pictures, fix problems, do commercial graphics, web work, original art&#8211;this book is for you.  I&#8217;m astonished.</span></span></span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">I&#8217;ll report back some more after spending a few more weeks with it.</span></span></span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"><span style="font-size: medium;"><span style="font-family: courier new,courier;">It doesn&#8217;t cover 2.6, but it hasn&#8217;t been an issue using it with 2.6.  If you want to be a GIMP master, check it out!</span></span></span></p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=michael-j-hammel" title="michael j hammel" >michael j hammel</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=praise" title="Praise" >Praise</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/1L8DBBwM_PU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=222</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=222</feedburner:origLink></item>
		<item>
		<title>TWAIN for Linux:  is there a new scanning solution on the horizon</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/EaU0utuiPuk/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=216#comments</comments>
		<pubDate>Sun, 15 Mar 2009 01:51:21 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[Commentary]]></category>

		<category><![CDATA[fedora]]></category>

		<category><![CDATA[GPL]]></category>

		<category><![CDATA[kodak scanner]]></category>

		<category><![CDATA[license]]></category>

		<category><![CDATA[linux drivers]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[rpm]]></category>

		<category><![CDATA[twain api]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=216</guid>
		<description><![CDATA[I&#8217;ve never been overly impressed with SANE because of the complexity of configuring it.  I always thought there should be a better way.  I&#8217;m not a Windows person but I&#8217;ve heard of TWAIN drivers for scanners.  Supposedly these make it easier to use scanners with GIMP under Windows.  The scanner manufacturers develop their drivers and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never been overly impressed with SANE because of the complexity of configuring it.  I always thought there should be a better way.  I&#8217;m not a Windows person but I&#8217;ve heard of TWAIN drivers for scanners.  Supposedly these make it easier to use scanners with GIMP under Windows.  The scanner manufacturers develop their drivers and install them.  GIMP just uses the TWAIN API to get to them.  TWAIN, in fact, is actually an interface for various types of input devices.</p>
<p>So I was interested to hear that Kodak had announced a <a href="http://www.kodak.com/eknec/PageQuerier.jhtml?pq-path=2709&amp;pq-locale=en_GB&amp;gpcid=0900688a80a7fb59&amp;ignoreLocale=true">TWAIN based scanner interface for Linux</a>.  The package is called <a href="http://sourceforge.net/projects/scantwain/">ScanTWAIN</a> and appears to be a front end to TWAIN drivers for a variety of Kodak scanners. The annoucned product is actually just the front end application which is GPL and which is available in both a <a href="http://sourceforge.net/project/showfiles.php?group_id=254045&amp;package_id=310902&amp;release_id=663754">generic RPM and source</a>.  The backend drivers, which in TWAIN-speak are known as Data Sources or .ds files, are not GPL.  The backend drivers packages are available for download from each specific models web page.  For example, the <a href="http://graphics.kodak.com/docimaging/US/en/Products/Document_Scanners/Desktop/i1210_Scanner/Support/Drivers_And_Downloads/i1200_Series_Scanner_Drivers/index.htm">i210 Scanner</a> web page offers driver downloads for both Windows and Linux.  You can find links to each supported model in the <a href="http://www.kodak.com/eknec/PageQuerier.jhtml?pq-path=2709&amp;pq-locale=en_GB&amp;gpcid=0900688a80a7fb59&amp;ignoreLocale=true">Kodak press release</a>.</p>
<p>The binary RPM requires <a href="http://sourceforge.net/project/showfiles.php?group_id=180588">libtwaindsm.so</a> which is the <a href="http://sourceforge.net/project/shownotes.php?release_id=584323">library</a> applications need to link to in order to get access to the TWAIN drivers.  Apparently this library is not available yet for Fedora 10 in RPM format.  Instead, the library is installed as part of the Linux drivers package for each specific Kodak scanner model.</p>
<p>There is good write up on how <a href="http://blog.technologeek.org/2009/03/13/184">Kodak got it wrong</a> with packaging and, to some extent, adherence to the GPL principles (though I won&#8217;t go so far as to say they&#8217;ve violated any of the license - at least not as far as I can tell).   Most of the problem, in my opinion, is packaging.  For example, the OpenUSB library is included but there is no README on where a user could acquire the sources from Kodak.  Also, the package appears to install in multiple locations, including /opt, /usr/local and /usr.  At first this seems like the right thing to do:  system packages under /usr/local so they don&#8217;t interfere with similar packages installed by the distribution while the Kodak specific applications go under /opt.  But on closer inspection I found that some of the RPMs included with the driver package install some Kodak specifics under /opt while others (like the .ds files and scanner profiles) under /usr/local/lib/twain/kodak.  Why not put them all under /opt?  Hell, they even put a configuration file (.ini) under /var/kodak!</p>
<p>All in all it looks like Kodak is taking a big leap but they still have some work to do with understanding the Linux environment.  I&#8217;m not as disappointed as the other reviewer that the drivers are not open source (though I highly encourage them to reconsider) but I&#8217;m less interested in installing packages that place files in the wrong directories.</p>
<p>If you&#8217;re interested in TWAIN you can check out the main <a href="http://twain.org">TWAIN.org</a> web site.  It has all the gory details.</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=fedora" title="fedora" >fedora</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gpl" title="GPL" >GPL</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=kodak-scanner" title="kodak scanner" >kodak scanner</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=license" title="license" >license</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=linux-drivers" title="linux drivers" >linux drivers</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=open-source" title="open source" >open source</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=rpm" title="rpm" >rpm</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=twain-api" title="twain api" >twain api</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=139" title="GIMP Paint Studio Collection (Tue February 03, 2009)">GIMP Paint Studio Collection</a> (11)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=111" title="GIMP goes GPLv3 (Sat January 17, 2009)">GIMP goes GPLv3</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=10" title="Tips and Tricks and Resources (Thu November 02, 2006)">Tips and Tricks and Resources</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide" title="The Artist&#8217;s Guide to GIMP Effects (Wed December 06, 2006)">The Artist&#8217;s Guide to GIMP Effects</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=34" title="New User FAQ (Mon July 09, 2007)">New User FAQ</a> (0)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/EaU0utuiPuk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=216</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=216</feedburner:origLink></item>
		<item>
		<title>GIMP Paint Shop documentation english translation</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/DAowjRAgMSU/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=209#comments</comments>
		<pubDate>Sun, 08 Mar 2009 00:49:39 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[Community Contributions]]></category>

		<category><![CDATA[gimp]]></category>

		<category><![CDATA[GIMP Paint Shop]]></category>

		<category><![CDATA[PDF]]></category>

		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=209</guid>
		<description><![CDATA[I found a translation fo the GIMP Paint Shop PDF documentation.  See the update at the bottom of the GIMP Paint Shop announcement.
Update: I&#8217;ve also rewritten this translation back into OpenOffice and PDF formats and improved upon the format and grammer slightly.
Enjoy!

	Tags: gimp, GIMP Paint Shop, PDF, translation

	Related posts
	
	GIMP 2.6.7 released (0)
	Building GIMP 2.7.x from [...]]]></description>
			<content:encoded><![CDATA[<p>I found a translation fo the GIMP Paint Shop PDF documentation.  See the update at the bottom of the <a href="http://www.graphics-muse.org/artistsguide/?p=139">GIMP Paint Shop</a> announcement.</p>
<p>Update: I&#8217;ve also rewritten this translation back into <a href="http://www.graphics-muse.org/source/GPS.odt">OpenOffice</a> and <a href="http://www.graphics-muse.org/source/GPS.pdf">PDF</a> formats and improved upon the format and grammer slightly.</p>
<p>Enjoy!</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=gimp" title="gimp" >gimp</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gimp-paint-shop" title="GIMP Paint Shop" >GIMP Paint Shop</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=pdf" title="PDF" >PDF</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=translation" title="translation" >translation</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=242" title="GIMP 2.6.7 released (Sat August 15, 2009)">GIMP 2.6.7 released</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=247" title="Building GIMP 2.7.x from source (Wed September 02, 2009)">Building GIMP 2.7.x from source</a> (2)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=8" title="Working Production Edits for Section V (Mon October 30, 2006)">Working Production Edits for Section V</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=4" title="Using Drawing Tablets with the GIMP (Wed October 18, 2006)">Using Drawing Tablets with the GIMP</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=86" title="User Manual 2.4.1- Special Release (Tue April 01, 2008)">User Manual 2.4.1- Special Release</a> (0)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/DAowjRAgMSU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=209</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=209</feedburner:origLink></item>
		<item>
		<title>GIMP 2.6.5</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/M0YHVDg0eDo/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=188#comments</comments>
		<pubDate>Sun, 15 Feb 2009 20:35:50 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[GIMP Announcements]]></category>

		<category><![CDATA[brushes]]></category>

		<category><![CDATA[gegl]]></category>

		<category><![CDATA[image window]]></category>

		<category><![CDATA[newsprint]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=188</guid>
		<description><![CDATA[GIMP 2.6.5 is another bug-fix release in the stable GIMP 2.6 series.  The source can be downloaded from ftp.gimp.org or from one of the mirrors listed at http://gimp.org/downloads/#mirrors. Binary packages for the various supported platforms should become available soon; please check the Downloads section on www.gimp.org.
Overview of Changes from GIMP 2.6.4 to GIMP 2.6.5
=================================================
* Bugs [...]]]></description>
			<content:encoded><![CDATA[<p>GIMP 2.6.5 is another bug-fix release in the stable GIMP 2.6 series.  The source can be downloaded from <a href="ftp://ftp.gimp.org">ftp.gimp.org</a> or from one of the mirrors listed at <a href="http://gimp.org/downloads/#mirrors">http://gimp.org/downloads/#mirrors</a>. Binary packages for the various supported platforms should become available soon; please check the Downloads section on <a href="http://www.gimp.org">www.gimp.org</a>.</p>
<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">Overview of Changes from GIMP 2.6.4 to GIMP 2.6.5<br />
=================================================</p>
<p>* Bugs fixed:</p>
<p>571628 - Scaling image to 25% turn background from white to grey<br />
567840 - GIMP&#8217;s GtkScaleButton conflicts with GTK&#8217;s<br />
569043 - GEGL tool - missing Operation Settings for all sub-tools<br />
568890 - don&#8217;t rely on GtkAction implementation details<br />
568909 - wrong RGB values for color names in libgimpcolor/gimprgb-parse.c<br />
568839 - wrong hex RGB value for the color names slategrey and slategray<br />
559408 - Brushes dragged to the image window look strange<br />
563337 - Rectangle Select Tool does not allow 1:1 fixed ratio<br />
568016 - Black pullout parameter of plug-in-newsprint has no effect<br />
562818 - First image opened in GIMP offset<br />
562213 - Align Tool doesn&#8217;t work properly if it is the active tool at startup</p>
<p>* Updated translations:</p>
<p>Spanish (es)<br />
Estonian (et)<br />
Hindi (hi)<br />
Italian (it)<br />
Brazilian Portuguese (pt_BR)<br />
Romanian (ro)<br />
Russian (ru)<br />
Serbian (sr)<br />
Tamil (ta)<br />
Simplified Chinese (zh_CN)</span></span></p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=brushes" title="brushes" >brushes</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gegl" title="gegl" >gegl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=image-window" title="image window" >image window</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=newsprint" title="newsprint" >newsprint</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=245" title="Developer release: GIMP 2.7.0 (Mon August 17, 2009)">Developer release: GIMP 2.7.0</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=15" title="Tutorials (Wed December 06, 2006)">Tutorials</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?page_id=25" title="Point Cloud Images (Tue February 06, 2007)">Point Cloud Images</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=164" title="Outlining text and the value of online tutorials (Tue February 10, 2009)">Outlining text and the value of online tutorials</a> (2)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=100" title="Looking at 2.6 (Fri January 02, 2009)">Looking at 2.6</a> (4)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/M0YHVDg0eDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=188</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=188</feedburner:origLink></item>
		<item>
		<title>GIMP Deep Color:  patch for 16-bit support of PNG</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/_ySzhON6Z7g/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=182#comments</comments>
		<pubDate>Wed, 11 Feb 2009 02:22:16 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[GIMP News]]></category>

		<category><![CDATA[16 bits]]></category>

		<category><![CDATA[gegl]]></category>

		<category><![CDATA[gimp developers]]></category>

		<category><![CDATA[Gimp-developer]]></category>

		<category><![CDATA[png]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=182</guid>
		<description><![CDATA[For those who don&#8217;t read the GIMP-Developer mailing list, the long wait for 16-bit channel support may have just started to inch it&#8217;s way to a close.  Martin Nordholts posted the following back at the end of January:
I have attached a patch to Bug 74224 – Add support for 16 bits per channel that makes [...]]]></description>
			<content:encoded><![CDATA[<p>For those who don&#8217;t read the GIMP-Developer mailing list, the long wait for 16-bit channel support may have just started to inch it&#8217;s way to a close.  Martin Nordholts posted the following back at the end of January:</p>
<p style="padding-left: 30px;"><em>I have attached a patch to <a href="http://bugzilla.gnome.org/show_bug.cgi?id=74224">Bug 74224 – Add support for 16 bits per channel</a> that makes it possible to use GIMP for opening, color correcting and saving 16-bits-per-channel PNGs using the operations under the Colors menu that are ported to GEGL such as Color Balance or Levels. For a technical description of the patch, refer to the bug report.</em></p>
<p style="padding-left: 30px;"><em>&#8230;</em></p>
<p style="padding-left: 30px;"><em>Welcome to the start of the 16-bit GIMP era <img src='http://www.graphics-muse.org/artistsguide/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<p>Martin also questioned whether it was time to consider shooting for at least particla 16-bit support in 2.8.  According to his research:</p>
<p style="padding-left: 30px;"><em>[Martin doesn't] think it will be hard to add support for loading some additional 16-bit image formats, allowing creation of 16-bit images and adding 16-bit capabilities to a set of basic tools.</em></p>
<p>So the first public step toward 16-bit channels has seen the light of day.  Now it&#8217;s not clear if this patch has been accepted into the mainline (I don&#8217;t think that decision was made on the mailing list, if its been made at all - the bug report has no additional information on that) but at least a public note of work in this area has surfaced, something beyond just working on getting gegl prepared for use by GIMP developers.  Now it&#8217;s actually in use.</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=16-bits" title="16 bits" >16 bits</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gegl" title="gegl" >gegl</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gimp-developers" title="gimp developers" >gimp developers</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=gimp-developer" title="Gimp-developer" >Gimp-developer</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=png" title="png" >png</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=242" title="GIMP 2.6.7 released (Sat August 15, 2009)">GIMP 2.6.7 released</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=100" title="Looking at 2.6 (Fri January 02, 2009)">Looking at 2.6</a> (4)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=111" title="GIMP goes GPLv3 (Sat January 17, 2009)">GIMP goes GPLv3</a> (0)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=188" title="GIMP 2.6.5 (Sun February 15, 2009)">GIMP 2.6.5</a> (4)</li>
	<li><a href="http://www.graphics-muse.org/artistsguide/?p=245" title="Developer release: GIMP 2.7.0 (Mon August 17, 2009)">Developer release: GIMP 2.7.0</a> (0)</li>
</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/_ySzhON6Z7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=182</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=182</feedburner:origLink></item>
		<item>
		<title>Resources: Textures and Patterns</title>
		<link>http://feedproxy.google.com/~r/artistsguide/~3/8XFFLwnRfcg/</link>
		<comments>http://www.graphics-muse.org/artistsguide/?p=179#comments</comments>
		<pubDate>Wed, 11 Feb 2009 02:07:43 +0000</pubDate>
		<dc:creator>mjhammel</dc:creator>
		
		<category><![CDATA[Community Contributions]]></category>

		<category><![CDATA[Patterns]]></category>

		<category><![CDATA[free textures]]></category>

		<category><![CDATA[stock photography]]></category>

		<category><![CDATA[tutorials section]]></category>

		<guid isPermaLink="false">http://www.graphics-muse.org/artistsguide/?p=179</guid>
		<description><![CDATA[I saw this posted on the GIMP User mailing list.  It&#8217;s a site devoted to providing free textures.  I thought it might be of interest to a few folks: CGTextures.com The textures are essentially a large collection of stock photography.
The site also has a tutorials section that is primarily aimed at Photoshop users.  Experienced users [...]]]></description>
			<content:encoded><![CDATA[<p>I saw this posted on the GIMP User mailing list.  It&#8217;s a site devoted to providing free textures.  I thought it might be of interest to a few folks:<a href="http://www.cgtextures.com/"> CGTextures.com</a> The textures are essentially a large collection of stock photography.</p>
<p>The site also has a tutorials section that is primarily aimed at Photoshop users.  Experienced users should always consider tutorials of this type when trying to come up with techniques in GIMP.  Most of the things you can do in Photoshop you can do in GIMP, though you may have to perform them in a different way.</p>
<p>The texture downloads are limited to 15MB per day per user.  A random sample of the available images showed that most come at least 3 sizes with the largest size usually under 3MB and often under 1MB.  Larger images are available to members of the site, if you&#8217;re interested in signing up.</p>

	Tags: <a href="http://www.graphics-muse.org/artistsguide/?tag=free-textures" title="free textures" >free textures</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=stock-photography" title="stock photography" >stock photography</a>, <a href="http://www.graphics-muse.org/artistsguide/?tag=tutorials-section" title="tutorials section" >tutorials section</a><br />

	<br clear="both" /><h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<img src="http://feeds.feedburner.com/~r/artistsguide/~4/8XFFLwnRfcg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.graphics-muse.org/artistsguide/?feed=rss2&amp;p=179</wfw:commentRss>
		<feedburner:origLink>http://www.graphics-muse.org/artistsguide/?p=179</feedburner:origLink></item>
	</channel>
</rss>
