<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alex Sleat &#187; gimp</title>
	<atom:link href="http://alexsleat.co.uk/tag/gimp/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexsleat.co.uk</link>
	<description>/home/alex</description>
	<lastBuildDate>Mon, 21 May 2012 22:17:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>gimp: error while loading shared libraries: libgegl-0.0.so.0: cannot open shared object file: No such file or directory</title>
		<link>http://alexsleat.co.uk/2012/05/02/gimp-error-while-loading-shared-libraries-libgegl-0-0-so-0-cannot-open-shared-object-file-no-such-file-or-directory/</link>
		<comments>http://alexsleat.co.uk/2012/05/02/gimp-error-while-loading-shared-libraries-libgegl-0-0-so-0-cannot-open-shared-object-file-no-such-file-or-directory/#comments</comments>
		<pubDate>Wed, 02 May 2012 09:08:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[11.04]]></category>
		<category><![CDATA[11.10]]></category>
		<category><![CDATA[12.04]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[cannot open shared object file]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[libgegl]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[oneiric]]></category>
		<category><![CDATA[precise]]></category>
		<category><![CDATA[shared libraries]]></category>
		<category><![CDATA[sources.list]]></category>
		<category><![CDATA[symbolic link]]></category>
		<category><![CDATA[ubuntu 12.04]]></category>

		<guid isPermaLink="false">http://alexsleat.co.uk/?p=30417</guid>
		<description><![CDATA[<br/><p>After upgrading from Ubuntu 11.10 to 12.04 I found gimp couldn&#8217;t access the shared libraries it needed, most likely an error with symbolic links as described by lovelyindia in this post. </p> Fix 1: <p>He managed to fix the issue by removing gimp and purging the offending libraries and then letting apt deal with [...]]]></description>
			<content:encoded><![CDATA[<br/><p>After upgrading from Ubuntu 11.10 to 12.04 I found gimp couldn&#8217;t access the shared libraries it needed, most likely an error with symbolic links as described by lovelyindia in <a href="http://bentwithlove.blogspot.co.uk/2011/05/gimperror-while-loading-shared.html">this post</a>. </p>
<h3>Fix 1:</h3>
<p>He managed to fix the issue by removing gimp and purging the offending libraries and then letting apt deal with the libraries when he re-installed gimp, as per the below commands:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">sudo</span> apt-get update <br />
<span class="kw2">sudo</span> apt-get purge <span class="kw2">gimp</span> libgegl* libbabl* <br />
<span class="kw2">sudo</span> apt-get <span class="kw2">install</span> <span class="kw2">gimp</span> <br />
<span class="kw2">sudo</span> apt-get clean</div>
<p>While this is likely to work for most people encountering this issue, it didn&#8217;t for me.</p>
<h3>Fix 2:</h3>
<p>Then I remembered I had used the repogen <a href="http://repogen.simplylinux.ch/">source list generator</a>, in which I chose to include the gimp svn build. While you may not have gone about it the same way, you may also have a different repository in your sources.list file which is causing this issue, if the previous method did not resolve the issue.</p>
<p>In order to fix this, I had to open the sources.list file and comment out the offending repo.</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">sudo</span> gedit /etc/apt/sources.list</div>
<p>Now search for any reference to gimp, in my case this was the lines I changed:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="re3">#### Gimp SVN &#8211; https://launchpad.net/~matthaeus123/+archive/mrw-gimp-svn</span><br />
<span class="re3">## Run this <span class="kw3">command</span>: <span class="kw2">sudo</span> apt-key adv &#8211;recv-keys &#8211;keyserver keyserver.ubuntu.com 405A15CB</span><br />
deb http://ppa.launchpad.net/matthaeus123/mrw-gimp-svn/ubuntu precise main</div>
<p>I commented out the line linking to the repo by adding a &#8216;#&#8217; to the front, as below:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="re3">#### Gimp SVN &#8211; https://launchpad.net/~matthaeus123/+archive/mrw-gimp-svn</span><br />
<span class="re3">## Run this <span class="kw3">command</span>: <span class="kw2">sudo</span> apt-key adv &#8211;recv-keys &#8211;keyserver keyserver.ubuntu.com 405A15CB</span><br />
<span class="re3"># deb http://ppa.launchpad.net/matthaeus123/mrw-gimp-svn/ubuntu precise main</span></div>
<p>I then uninstalled gimp, once I knew it may have been the newly added repository that I had added:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">sudo</span> apt-get purge <span class="kw2">gimp</span></div>
<p>Then I saved and exited the file and updated apt:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">sudo</span> apt-get update</div>
<p>I then re-installed gimp:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">sudo</span> apt-get <span class="kw2">install</span> <span class="kw2">gimp</span></div>
<p>This solved the issue for me, I hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsleat.co.uk/2012/05/02/gimp-error-while-loading-shared-libraries-libgegl-0-0-so-0-cannot-open-shared-object-file-no-such-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIMP (2.6.8) Crashing On Some Toolbox Icons &#8211; Lucid</title>
		<link>http://alexsleat.co.uk/2010/07/04/gimp-2-6-8-crashing-on-some-toolbox-icons-lucid/</link>
		<comments>http://alexsleat.co.uk/2010/07/04/gimp-2-6-8-crashing-on-some-toolbox-icons-lucid/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 13:46:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[blog1]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[appmenu-gtk]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[DBusConnection]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fatal]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[GObject]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[LibGimpBase]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[script-fu]]></category>
		<category><![CDATA[synaptic]]></category>

		<guid isPermaLink="false">http://alexsleat.co.uk/?p=241</guid>
		<description><![CDATA[<br/><p>:~$ gimp gimp: fatal error: Failed to register GObject with DBusConnection</p> <p>(script-fu:3100): LibGimpBase-WARNING **: script-fu: gimp_wire_read(): error</p> <p>I fixed this error by removing opening Synaptic Package Manager and searching for appmenu-gtk, right click and mark for removal, once this has been done it should begin to work again.</p> ]]></description>
			<content:encoded><![CDATA[<br/><p><code>:~$ gimp<br />
gimp: fatal error: Failed to register GObject with DBusConnection</p>
<p>(script-fu:3100): LibGimpBase-WARNING **: script-fu: gimp_wire_read(): error</code></p>
<p>I fixed this error by removing opening Synaptic Package Manager and searching for <strong>appmenu-gtk</strong>, right click and mark for removal, once this has been done it should begin to work again.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexsleat.co.uk/2010/07/04/gimp-2-6-8-crashing-on-some-toolbox-icons-lucid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Install &amp; Use Resynthesizer for GIMP</title>
		<link>http://alexsleat.co.uk/2010/06/28/howto-install-use-resynthesizer-for-gimp/</link>
		<comments>http://alexsleat.co.uk/2010/06/28/howto-install-use-resynthesizer-for-gimp/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 15:28:54 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[blog1]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[content aware fill]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://alexsleat.co.uk/?p=220</guid>
		<description><![CDATA[<br/><p>Remember this Photoshop CS5 sneak peak showing off it&#8217;s latest and greatest feature Content-Aware Fill a couple months ago, well it turns out a reasonably old plug-in for GIMP (GNU Image Manipulation Program) named Resynthesizer seems to work just as great and because it is what it is, it&#8217;s free and open-source.</p> <p>Installing on Ubuntu 9.10/10.04 install:</p> sudo apt-get [...]]]></description>
			<content:encoded><![CDATA[<br/><p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/beforeafter.png"><img class="alignright size-medium wp-image-234" title="Before and After" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/beforeafter-225x300.png" alt="" width="225" height="300" /></a>Remember <a href="http://blogs.adobe.com/jnack/2010/03/caf_in_ps.html" target="_blank">this</a> Photoshop CS5 sneak peak showing off it&#8217;s latest and greatest feature Content-Aware Fill a couple months ago, well it turns out a reasonably old plug-in for GIMP (GNU Image Manipulation Program) named <a href="http://www.logarithmic.net/pfh/resynthesizer" target="_self">Resynthesizer</a> seems to work just as great and because it is what it is, it&#8217;s free and open-source.</p>
<p>Installing on Ubuntu 9.10/10.04 install:</p>
<div class="dean_ch" style="white-space: wrap;">sudo apt-get install gimp-resynthesizer</div>
<p>or for the Source/Windows/Fedora Core 4 versions see the <a href="http://www.logarithmic.net/pfh/resynthesizer">download</a> section.</p>
<p>Once you have it installed, it&#8217;s simple to use really just select something on your image that shouldn&#8217;t be there and right click on the selection Filters -&gt; Map -&gt; Resynthesize.. and up should pop an options box, these settings are pretty standard and will get rid of most things given that they aren&#8217;t too big. It&#8217;s best if you&#8217;re not getting the results you want to play around with the settings yourself to get to know them better.</p>
<p>Click after the break for an example with step by step guide.<span id="more-220"></span></p>
<p>Example:</p>
<p>Let&#8217;s see, we start out with this nice photo of a house but wait.. what are those smelly students doing there? Well, let&#8217;s sort that out..</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-1.png"><img class="aligncenter size-large wp-image-223" title="Screenshot-1" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-1-1024x640.png" alt="" width="640" height="400" /></a>First thing you&#8217;ll want to do is grab your best selection tool and cut around the edge of those waste of time students..</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-3.png"><img class="aligncenter size-large wp-image-225" title="Screenshot-3" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-3-1024x640.png" alt="" width="640" height="400" /></a>Now all you have to do is right click Filters -&gt; Map -&gt; Resynthesize..</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-4.png"><img class="aligncenter size-large wp-image-227" title="Screenshot-4" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-4-1024x640.png" alt="" width="640" height="400" /></a>Next here, you can just hit the Ok button and watch as they magically disappear (probably back to their germ infested student flat).</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-6.png"><img class="aligncenter size-large wp-image-228" title="Screenshot-6" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-6-1024x640.png" alt="" width="640" height="400" /></a>Now you can just do that for anything, however while doing the edges some strange things happen with the default settings:</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-9.png"><img class="aligncenter size-large wp-image-229" title="Screenshot-9" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-9-1024x640.png" alt="" width="640" height="400" /></a>To counteract this, I found unchecking &#8220;Make vertically tileable&#8221; seemed to fix this and I would assume (without trying) that if you are doing a vertical edge you might want to take off the horizontally tileable option.</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-7.png"><img class="aligncenter size-large wp-image-230" title="Screenshot-7" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-7-1024x640.png" alt="" width="640" height="400" /></a>This brings the end result to a pretty reasonable (student free) image only after a couple of minutes, much better than could be expected from using the clone tool and whatever other means you would go through.</p>
<p><a href="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-10.png"><img class="aligncenter size-large wp-image-231" title="Screenshot-10" src="http://alexsleat.co.uk/wp-content/uploads/2010/06/Screenshot-10-1024x640.png" alt="" width="640" height="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://alexsleat.co.uk/2010/06/28/howto-install-use-resynthesizer-for-gimp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

