<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Liquid Rescale GIMP plugin - new forum threads</title>
		<link>http://liquidrescale.wikidot.com/forum/start</link>
		<description>Threads in forums of the site &quot;Liquid Rescale GIMP plugin&quot; - content-aware resizing for the GIMP</description>
				<copyright></copyright>
		<lastBuildDate>Mon, 13 Feb 2012 14:54:38 +0000</lastBuildDate>
		
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-422108</guid>
				<title>gimp_image_add_layer deprecated in gimp 2.7/2.8</title>
				<link>http://liquidrescale.wikidot.com/forum/t-422108/gimp-image-add-layer-deprecated-in-gimp-2-7-2-8</link>
				<description>add_layer needs to be changed to insert_layer</description>
				<pubDate>Sun, 18 Dec 2011 20:12:26 +0000</pubDate>
				<wikidot:authorName>Sven Lankes</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I've noticed that gimp 2.7 throws an ugly error-dialog stating that gimp-image-add-layer<br /> is deprecated everytime the plugin tries to add a layer. I've fixed this for the fedora<br /> package of the liquid-rescale-gimp-plugin by replacing the function calls using<br /> the following patch:</p> <div class="code"> <pre> <code>diff --git a/src/io_functions.c b/src/io_functions.c index 20917df..b159ed8 100644 --- a/src/io_functions.c +++ b/src/io_functions.c @@ -227,7 +227,7 @@ write_vmap_to_layer (LqrVMap * vmap, gpointer data) gimp_layer_new (image_ID, name, w, h, GIMP_RGBA_IMAGE, 100, GIMP_NORMAL_MODE); gimp_drawable_fill (seam_layer_ID, GIMP_TRANSPARENT_FILL); - gimp_image_add_layer (image_ID, seam_layer_ID, -1); + gimp_image_insert_layer (image_ID, seam_layer_ID, -1, -1); gimp_layer_translate (seam_layer_ID, x_off, y_off); if (seam_layer_p) { diff --git a/src/layers_combo.c b/src/layers_combo.c index 10d810e..e032eed 100644 --- a/src/layers_combo.c +++ b/src/layers_combo.c @@ -199,7 +199,7 @@ callback_new_mask_button (GtkWidget * button, gpointer data) gimp_layer_new (p_data-&gt;image_ID, nl_data-&gt;name, p_data-&gt;old_width, p_data-&gt;old_height, image_type, 50, GIMP_NORMAL_MODE); - gimp_image_add_layer (p_data-&gt;image_ID, layer_ID, -1); + gimp_image_insert_layer (p_data-&gt;image_ID, layer_ID, -1, -1); gimp_drawable_fill (layer_ID, GIMP_TRANSPARENT_FILL); gimp_layer_translate (layer_ID, p_data-&gt;x_off, p_data-&gt;y_off); gimp_image_undo_group_end (p_data-&gt;image_ID); diff --git a/src/render.c b/src/render.c index f50fc8c..b7e8c7e 100644 --- a/src/render.c +++ b/src/render.c @@ -172,7 +172,7 @@ render_init_carver (PlugInImageVals * image_vals, { g_snprintf (new_layer_name, LQR_MAX_NAME_LENGTH, &quot;%s LqR&quot;, layer_name); layer_ID = gimp_layer_copy (layer_ID); - gimp_image_add_layer (image_ID, layer_ID, -1); + gimp_image_insert_layer (image_ID, layer_ID, -1, -1); gimp_drawable_set_name (layer_ID, new_layer_name); gimp_drawable_set_visible (layer_ID, FALSE); } @@ -181,7 +181,7 @@ render_init_carver (PlugInImageVals * image_vals, image_ID = gimp_image_new (old_width, old_height, gimp_image_base_type(image_ID)); gimp_image_undo_group_start(image_ID); layer_ID = gimp_layer_new_from_drawable (layer_ID, image_ID); - gimp_image_add_layer (image_ID, layer_ID, -1); + gimp_image_insert_layer (image_ID, layer_ID, -1, -1); gimp_layer_translate(layer_ID, -x_off, -y_off); gimp_drawable_set_visible (layer_ID, TRUE); if (vals-&gt;resize_aux_layers) @@ -858,7 +858,7 @@ static gboolean copy_aux_layer_to_new_image (gint32 image_ID, gint32 * layer_ID_ if (old_layer_ID) { new_layer_ID = gimp_layer_new_from_drawable (old_layer_ID, image_ID); - gimp_image_add_layer (image_ID, new_layer_ID, -1); + gimp_image_insert_layer (image_ID, new_layer_ID, -1, -1); /* gimp_drawable_offsets (old_layer_ID, &amp;aux_x_off, &amp;aux_y_off); */ gimp_layer_translate (new_layer_ID, -x_off, -y_off); }</code> </pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-370027</guid>
				<title>Broken Link [fixed]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-370027/broken-link-fixed</link>
				<description>The link to the paper describing the Algorithm by Shai Avidan and Ariel Shamir is broken.</description>
				<pubDate>Sun, 03 Jul 2011 17:41:31 +0000</pubDate>
				<wikidot:authorName>Stefan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I apologise if this is an incorrect place to put this.</p> <p>The link to the paper by Shai Avidan and Ariel Shamir that can be found <a href="http://liquidrescale.wikidot.com/">here</a> or <a href="http://liblqr.wikidot.com/">here</a> are both broken.</p> <p>The broken link points to here:<br /> <a href="http://www.faculty.idc.ac.il/arik/imret.pdf">http://www.faculty.idc.ac.il/arik/imret.pdf</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-366950</guid>
				<title>how to change language?? [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved</link>
				<description>how to change the language from Italian into English??</description>
				<pubDate>Thu, 16 Jun 2011 10:14:44 +0000</pubDate>
				<wikidot:authorName>hanciong</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello, I have downloaded the plugin and installed it correctly. but because I bought my laptop in Italy, the plugin uses Italian language! Despite the fact that the GIMP itself uses English language. So my question is, how to change the language of the plugin into English? Thanx a lot</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-292975</guid>
				<title>problems with loading a file</title>
				<link>http://liquidrescale.wikidot.com/forum/t-292975/problems-with-loading-a-file</link>
				<description></description>
				<pubDate>Sun, 19 Dec 2010 10:29:30 +0000</pubDate>
				<wikidot:authorName>Trevor</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Having problems with loading an existing jpeg file. Message received " file-jpeg.exe has stopped working" Gimp message "Plug-in crashed: "file-jpeg.exe"<br /> (C:\Program Files\Gimp-2.0\lib\gimp\2.0\plug-ins\file-jpeg.exe)"</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-286003</guid>
				<title>Liquid Rescale Changes Image Size [INVALID]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-286003/liquid-rescale-changes-image-size-invalid</link>
				<description>When using liquid rescale on a layer.

Select a layer -&gt;Layer-&gt;Liquid rescale-&gt; Change width-&gt;Click ok

The image is now resized to be the size of the changed layer. Big pain.</description>
				<pubDate>Sat, 20 Nov 2010 21:18:39 +0000</pubDate>
				<wikidot:authorName>Ian</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>When using liquid rescale on a layer.</p> <p>Select a layer -&gt;Layer-&gt;Liquid rescale-&gt; Change width-&gt;Click ok</p> <p>The image is now resized to be the size of the changed layer. Big pain.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-253317</guid>
				<title>compile lqr plugin [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved</link>
				<description>compile at opensuse 11.2 (64bit)</description>
				<pubDate>Wed, 14 Jul 2010 11:25:21 +0000</pubDate>
				<wikidot:authorName>BigB</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello</p> <p>1. the configure</p> <p>./configure LQR_LIBS=/usr/lib/liblqr-1.so LQR_CFLAGS=/usr/include/lqr-1/lqr.h<br /> checking for a BSD-compatible install… /usr/bin/install -c<br /> checking whether build environment is sane… yes<br /> checking for gawk… gawk<br /> checking whether make sets $(MAKE)… yes<br /> checking for gcc… gcc<br /> checking whether the C compiler works… yes<br /> checking for C compiler default output file name… a.out<br /> checking for suffix of executables…<br /> checking whether we are cross compiling… no<br /> checking for suffix of object files… o<br /> checking whether we are using the GNU C compiler… yes<br /> checking whether gcc accepts -g… yes<br /> checking for gcc option to accept ISO C89… none needed<br /> checking for style of include used by make… GNU<br /> checking dependency style of gcc… gcc3<br /> checking for gcc… (cached) gcc<br /> checking whether we are using the GNU C compiler… (cached) yes<br /> checking whether gcc accepts -g… (cached) yes<br /> checking for gcc option to accept ISO C89… (cached) none needed<br /> checking dependency style of gcc… (cached) gcc3<br /> checking how to run the C preprocessor… gcc -E<br /> checking for grep that handles long lines and -e… /usr/bin/grep<br /> checking for egrep… /usr/bin/grep -E<br /> checking for ANSI C header files… yes<br /> checking whether to enable maintainer-specific portions of Makefiles… no<br /> checking for pkg-config… /usr/bin/pkg-config<br /> checking pkg-config is at least version 0.9.0… yes<br /> checking for GIMP… yes<br /> checking for LQR… yes<br /> checking whether NLS is requested… yes<br /> checking for intltool-update… /usr/bin/intltool-update<br /> checking for intltool-merge… /usr/bin/intltool-merge<br /> checking for intltool-extract… /usr/bin/intltool-extract<br /> checking for xgettext… /usr/bin/xgettext<br /> checking for msgmerge… /usr/bin/msgmerge<br /> checking for msgfmt… /usr/bin/msgfmt<br /> checking for gmsgfmt… /usr/bin/msgfmt<br /> checking for perl… /usr/bin/perl<br /> checking for perl &gt;= 5.8.1… 5.10.0<br /> checking for XML::Parser… ok<br /> checking for sys/types.h… yes<br /> checking for sys/stat.h… yes<br /> checking for stdlib.h… yes<br /> checking for string.h… yes<br /> checking for memory.h… yes<br /> checking for strings.h… yes<br /> checking for inttypes.h… yes<br /> checking for stdint.h… yes<br /> checking for unistd.h… yes<br /> checking locale.h usability… yes<br /> checking locale.h presence… yes<br /> checking for locale.h… yes<br /> checking for LC_MESSAGES… yes<br /> checking libintl.h usability… yes<br /> checking libintl.h presence… yes<br /> checking for libintl.h… yes<br /> checking for ngettext in libc… yes<br /> checking for dgettext in libc… yes<br /> checking for bind_textdomain_codeset… yes<br /> checking for msgfmt… (cached) /usr/bin/msgfmt<br /> checking for dcgettext… yes<br /> checking if msgfmt accepts -c… yes<br /> checking for gmsgfmt… (cached) /usr/bin/msgfmt<br /> checking for xgettext… (cached) /usr/bin/xgettext<br /> checking for catalogs to be installed… it fr ru pt_BR de eu_ES zh_CN es_AR hu ro_RO sr es_ES nb_NO zh_TW<br /> checking for bind_textdomain_codeset… (cached) yes<br /> checking if GTK+ is version 2.12.0 or newer… yes<br /> checking if GIMP is version 2.4.0 or newer… yes<br /> checking if we are on Win32… no<br /> configure: creating ./config.status<br /> config.status: creating Makefile<br /> config.status: creating src/Makefile<br /> config.status: creating gap/Makefile<br /> config.status: creating batch/Makefile<br /> config.status: creating po/Makefile.in<br /> config.status: creating help/Makefile<br /> config.status: creating help/en/Makefile<br /> config.status: creating help/en/images/Makefile<br /> config.status: creating help/it/Makefile<br /> config.status: creating help/it/images/Makefile<br /> config.status: creating help/ru/Makefile<br /> config.status: creating help/ru/images/Makefile<br /> config.status: creating help/css/Makefile<br /> config.status: creating config.h<br /> config.status: config.h is unchanged<br /> config.status: executing depfiles commands<br /> config.status: executing default-1 commands<br /> config.status: executing po/stamp-it commands</p> <p>2. make</p> <p>make<br /> make all-recursive<br /> make[1]: Entering directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1’<br /> Making all in po<br /> make[2]: Entering directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/po’<br /> make[2]: Für das Ziel »all« ist nichts zu tun.<br /> make[2]: Leaving directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/po’<br /> Making all in src<br /> make[2]: Entering directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/src’<br /> if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\""/usr/local/share/locale"\" -DPLUGIN_DATADIR=\""/usr/local/share/gimp-lqr-plugin"\" -I.. -I/usr/include/gimp-2.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 /usr/include/lqr-1/lqr.h -I/usr/local/include -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -g -O2 -Wall -MT main.o -MD -MP -MF ".deps/main.Tpo" -c -o main.o main.c; then mv -f ".deps/main.Tpo" ".deps/main.Po"; else rm -f ".deps/main.Tpo"; exit 1; fi<br /> gcc:-o can not be specified by -c or -S with multiple files<br /> make[2]: <strong>* [main.o] Error 1<br /> make[2]: Leaving directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/src’<br /> make[1]: *</strong> [all-recursive] Error 1<br /> make[1]: Leaving directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1’<br /> make: *** [all] Error 2</p> <p>any idea ?</p> <p>thx<br /> regards BigB</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-249172</guid>
				<title>New package available for v0.7.1: Slackware 13.1 i686</title>
				<link>http://liquidrescale.wikidot.com/forum/t-249172/new-package-available-for-v0-7-1:slackware-13-1-i686</link>
				<description></description>
				<pubDate>Mon, 21 Jun 2010 16:12:35 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>An updated package for v0.7.1 of the plugin is now available for Slackware 13.1 i686 in the <a href="http://liquidrescale.wikidot.com/en:download-page-linux">Linux download page</a>.<br /> A Slackware package for the latest version of the liblqr library is also available, <a href="http://liblqr.wikidot.com/en:download-page" >here</a>.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-247410</guid>
				<title>Palette switching back to black when creating a preservation layer</title>
				<link>http://liquidrescale.wikidot.com/forum/t-247410/palette-switching-back-to-black-when-creating-a-preservation</link>
				<description></description>
				<pubDate>Fri, 11 Jun 2010 08:50:08 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Running lqr 0.7.1 on GIMP 2.6.8 on windows XP.<br /> When I create a new preservation layer, the palette goes green then switches back to black. Unaware users may then paint the layer black instead of green.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-246227</guid>
				<title>New release 0.7.1 fixes a bug under Windows</title>
				<link>http://liquidrescale.wikidot.com/forum/t-246227/new-release-0-7-1-fixes-a-bug-under-windows</link>
				<description>no need to update for Linux/OS X users</description>
				<pubDate>Sun, 06 Jun 2010 00:37:23 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new release of the plugin is available. It fixes a bug which caused a crash at GIMP startup on Windows. The new Windows installers are also available, <a href="http://liquidrescale.wikidot.com/en:download-page-windows">here</a>.</p> <p>There's no reason to update for non-Windows users at this time.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719</guid>
				<title>&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 07:46:20 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm moving this report here:</p> <blockquote> <p>Hello Carlos, I downloaded and installed your latest Windows release of this amazing plugin. I have GIMP 2.6.8 on Windows XP. The installation went well and gimp-lqr-plugin.exe is in the proper place in the plugins folder. But when I start GIMP, and it's "querying new plugins", a Microsoft Error Reporting dialogue pops up saying that "gimp-lqr-plugin.exe has encountered a problem and needs to close." I never send the error report because the computer I use is not connected to the internet, so after clicking "Don't Send", the dialoque closes and GIMP resumes a normal startup, but without Liquid Rescale showing in the Layers Menu. Do you have any ideas what could be causing this error condition? Thanks for your help and ideas!</p> </blockquote> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856</guid>
				<title>LqR 0.7 won&#039;t install on XP with GIMP 2.6 [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 08:37:08 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It seems the installer can't find the GIMP directory. I get this error when launching it :<br /> "GIMP installation was not found. Please install GIMP before running this installer".</p> <p>GIMP 2.6 directory is C:\Program Files\GIMP-2.0</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243632</guid>
				<title>New video tutorials</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243632/new-video-tutorials</link>
				<description>learn how to use the version 0.7 of the plugin</description>
				<pubDate>Tue, 25 May 2010 01:32:40 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The <a href="http://liquidrescale.wikidot.com/en:tutorial">tutorial</a> section was updated with some videos recored using the latest version of the plugin.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243478</guid>
				<title>Windows version for release 0.7.0 available</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243478/windows-version-for-release-0-7-0-available</link>
				<description>Now with working translations and a true installer!</description>
				<pubDate>Mon, 24 May 2010 13:11:57 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The latest version of the plugin is now available for Windows.</p> <p>As previously announced, this time the translations and the help files should be working correctly (so you have no more excuses for not <a href="http://liquidrescale.wikidot.com/en:translations">helping with the translations</a>!)</p> <p>Furthermore, the files you download are now true Windows installers, which makes installation (and uninstallation) safer and easier.</p> <p>As always, there are versions for both standard GIMP and for GIMPPortable.</p> <p>You'll find it in the <a href="http://liquidrescale.wikidot.com/en:download-page-windows">Windows download page</a> (<a href="http://liquidrescale.wikidot.com/it:download-page-windows">Italian version here</a>).</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243438</guid>
				<title>Version 0.7.0 released</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243438/version-0-7-0-released</link>
				<description>Usability improvements and more</description>
				<pubDate>Mon, 24 May 2010 03:47:00 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>After a long time, a new version of the plugin is finally out.<br /> Mainly, it has improvements in the user interface which help the workflow, plus a couple of additional features and some (minor) bugfixes.<br /> Furthermore, the long-standing issue of the localization under Windows should now be finally solved (and a Windows installer will be available very soon).</p> <p>By the way, many <span style="text-decoration: underline;"><strong>translations</strong></span> are now very outdated and <span style="text-decoration: underline;"><strong>need to be updated</strong></span>! Please, consider <a href="http://liquidrescale.wikidot.com/en:translations">helping with this</a> if you can, thanks.</p> <p>Here is the full list of new features:</p> <ul> <li>Added new option: output on new image</li> <li>Added new energy functions based on luma instead of brightness</li> <li>New edit masks mode: <ul> <li>Added edit buttons for aux layers</li> <li>Switch to smaller, always-on-top interface while creating/editing aux layers</li> </ul> </li> <li>Added info icons for aux layers</li> <li>Added text to some buttons</li> <li>No longer use extra layers to create the image thumbnail (this means no more "flashing" in the layers toolbox when staring the plugin or creating a new aux layer)</li> <li>Modified behaviour to make it more consistent: <ul> <li>After creating/editing aux layers the focus goes back to the layer which is to be rescaled</li> <li>If an aux layer is deleted during or between sessions, it is not substitued by another one, and the corresponding setting is made inactive</li> <li>Pressing "Back" in the interactive dialog saves the plugin values for later recalls</li> </ul> </li> <li>Bugfix: finally fixed Windows localization</li> <li>Bugfix: fixed some minor issues arising when working on a new layer and going back and forth through interactive/non-interactive modes</li> </ul> <p>It now requires GIMP 2.6 and the latest version (0.4.1) of the <tt>liblqr</tt> library, which you can find <a href="http://liblqr.wikidot.com" >here</a>.</p> <p>Go get it from the <a href="http://liquidrescale.wikidot.com/en:download-page">Download page</a>!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-236034</guid>
				<title>Content aware fill</title>
				<link>http://liquidrescale.wikidot.com/forum/t-236034/content-aware-fill</link>
				<description>In Photoshop Cs5 there is a new feature called content aware fill. This is also aviable in Gimp called resynthesize. But it doesnt work well on edges. I have an idea for a script...</description>
				<pubDate>Tue, 20 Apr 2010 19:35:32 +0000</pubDate>
				<wikidot:authorName>Heho</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>This script should do the following things<br /> 1. Find areas. This is my big problem. I want to find different areas based on there uhm whatever. For example a beach picture. After this first part the sky, the sand and the sea should be 3 different areas, but maybe also more sub divided(dark sand, light sand, deep sea you got it)<br /> 2. Find Area edges (which will be easy then)<br /> 3. Analyse edges where they touch the selected area(in which angle they touch them and which edges belong together)<br /> 4. create new areas(Based on the angle of the edges bezier curve shall be inserted. Which will create the new areas. This will be very complicated for mountains and so on)<br /> 5. look for similar areas and use them as patches for the first time resynthesize which will be done for every new area seperatly<br /> 6. Show the user the bezier curves and the areas from where the textures are taken. They should have the possibility to edit them<br /> 7. Resyntesize again and jump back to 6.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-226335</guid>
				<title>Standard photo print size support</title>
				<link>http://liquidrescale.wikidot.com/forum/t-226335/standard-photo-print-size-support</link>
				<description>GIMP crop does not support simple selection of standard print sizes, this liquid rescale tool could do this by resizing to standard print sizes.</description>
				<pubDate>Fri, 12 Mar 2010 11:29:23 +0000</pubDate>
				<wikidot:authorName>rob</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>GIMP crop does not support simple selection of standard print sizes, this liquid rescale tool could do the same by liquid expand or shrink to the correct sizes selectable from radio buttons (e.g. 6x4, 7x5, 10x8 etc.) These would need to be in the select new width and height area of plugin dialog - in reality it is controlling the aspect ratio but users can understand the output sizes easier. "Expand to" and "Shrink to" would have to be an option to and possibly the dpi?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-210624</guid>
				<title>Incorrect path for locale data on non-Unix systems</title>
				<link>http://liquidrescale.wikidot.com/forum/t-210624/incorrect-path-for-locale-data-on-non-unix-systems</link>
				<description>The plug-in fails to properly locate its locale data on non-Unix systems like Windows due to the LOCALEDIR being hardcoded into the plug-in at compile-time.</description>
				<pubDate>Tue, 12 Jan 2010 11:57:36 +0000</pubDate>
				<wikidot:authorName>Torsten Neuer</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>The plug-in uses hardcoded values for locating the locale data on the installation system, which only works properly on Unix'ish systems.<br /> When run in a Windows environment, there is a big chance of the hardcoded value pointing to the wrong or even a missing directory.<br /> To fix this, any hardcoded path should be replaced with a call to of one of the gimpenv functions.</p> <p>In case of the LOCALEDIR, instead calling "gimp_locale_directory ()" is sufficient.</p> <p>If other data directories are also used by the plug-in (e.g. for registering the help file), these may need to be constructed, e.g. through:<br /> gchar *path, *uri;<br /> path = g_build_filename (gimp_data_directory (), "help", PLUGIN_NAME, NULL);<br /> uri = g_filename_to_uri (path, NULL, NULL);<br /> g_free (path);<br /> gimp_plugin_help_register (plugin_name, uri);<br /> g_free (uri);</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-210312</guid>
				<title>Windows Installer should allow directory choice</title>
				<link>http://liquidrescale.wikidot.com/forum/t-210312/windows-installer-should-allow-directory-choice</link>
				<description>Installation defaults to GIMP-2.0, should give option to install elsewhere.</description>
				<pubDate>Sun, 10 Jan 2010 22:36:43 +0000</pubDate>
				<wikidot:authorName>Geoff Markley</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I was playing with GIMP 2.7 so have GIMP installed in several different, non-default, directories. The installer doesn't allow choice of where to install to so after install, I had to copy files from the GIMP-2.0 default directory to where the current version of GIMP was installed.</p> <p>Minor problem but should be simple to fix..</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-202409</guid>
				<title>creating liquid distortions</title>
				<link>http://liquidrescale.wikidot.com/forum/t-202409/creating-liquid-distortions</link>
				<description>From these images, how did I do this?</description>
				<pubDate>Sun, 06 Dec 2009 22:40:44 +0000</pubDate>
				<wikidot:authorName>Nels Henry</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I wish I knew how I did this?<br /> A newbie, I was experimenting with Liquid Rescale, trying to create a wallet-size.<br /> Somehow, in my klutz-ing around, I managed to create <a href="http://i297.photobucket.com/albums/mm224/nelsh/how%20d%20i%20do%20this/wallet1.jpg" >this liquid rescale</a> from <a href="http://i297.photobucket.com/albums/mm224/nelsh/how%20d%20i%20do%20this/5153.jpg" >this original</a>.<br /> At least I had the presence of mind to save the image. But, Jimminy Cricket, I sure wish I could recreate what I did, so that I could do it again. But, after hours of punching around, I have yet to come close. I have been unable to recreate anything minimally elastic.<br /> I thought I'd ask if any of you experts have an idea how to recreate effects like this?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-193672</guid>
				<title>strange script-fu behaviour and rescaling huge images and some script-fu weirdness</title>
				<link>http://liquidrescale.wikidot.com/forum/t-193672/strange-script-fu-behaviour-and-rescaling-huge-images-and-so</link>
				<description></description>
				<pubDate>Tue, 03 Nov 2009 14:46:34 +0000</pubDate>
				<wikidot:authorName>vilem novak</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>first - thanks for this great plugin! it's very usefull and great.</p> <p>correct me if I am wrong, since I have ubuntu 8.10 and I currently try to compile the newer version.<br /> First thing I am not able to add correct layer as 'discard features', I am trying to add the layer with (gimp-image-add-layer theImage theWLayer 0) where I put 0 also to the appropriate prop of the script-fu function, but even with setting the value to 4000 it doesn't work at all. I am running this from the commandline without interface.</p> <p>I would also love to know if it is possible to extend the algorithm to rescale really big images, in doing rescaling per tile or hierarchically. since I end up with my 2gb ram on about 6000x6000(original size being scaled down) images. This is nice but for my current project I would love to do even much bigger images…</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-182090</guid>
				<title>PortableGimp: and again no entry under &quot;Layer&quot; [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-182090/portablegimp:and-again-no-entry-under-layer-solved</link>
				<description>Installation in German Version of PortableGimp 2.6.7 Rev 3 not sucssessfull</description>
				<pubDate>Sun, 13 Sep 2009 07:00:16 +0000</pubDate>
				<wikidot:authorName>Piefke</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi over there,<br /> I tried to install your portable Version of the plugin the easy way. My computer is a Samsung Netbook with Windows XP home SP 3 and Gimp is the Portable Version 2.6.7 Rev 3 from PortableApps copied in a special path on my data-partition (D:\Weichware-Portabel\MyApps\Bilder\GIMPPortable\) and german localisation.<br /> After the installation I cant find the new menu-entry under "Layer" … in german this must be "Ebene".<br /> Then I searched in your "Get help" and tried to move the files within the pathes as described in the diffrent threads but there is no visible effect.<br /> Can somebody help me to start from scratch?<br /> Thanks</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-169129</guid>
				<title>No  &quot;Mode&quot; box [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-169129/no-mode-box-solved</link>
				<description>Hello!
I have Win XP, Gimp 2.6.6 (reloaded today), Liquid Rescale downloaded from here (also today) and I don&#039;t have  &quot;Mode&quot; box at all ?! Why?
I need it especially for Quick element removal and so far I can&#039;t do it.
Thanks in advance,
Magdalena</description>
				<pubDate>Tue, 14 Jul 2009 19:23:11 +0000</pubDate>
				<wikidot:authorName>Magdalena</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <img src="http://images47.fotosik.pl/163/26ad7a885e798617med.jpg" alt="26ad7a885e798617med.jpg" class="image" />
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-167755</guid>
				<title>Grayed out</title>
				<link>http://liquidrescale.wikidot.com/forum/t-167755/grayed-out</link>
				<description>Installed Liquid Rescale on latest version of Gimp. When I tried to rescale an image, all the items on the Feature masks tab were grayed out.</description>
				<pubDate>Wed, 08 Jul 2009 15:37:47 +0000</pubDate>
				<wikidot:authorName>Gnosos</wikidot:authorName>				<wikidot:authorUserId>349170</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I just installed Liquid Rescale on latest version of Gimp on a computer running Windows XP Pro (x64 edition). When I tried to rescale an image, all the items on the Feature masks tab were grayed out. What causes this behavior?</p> <p>Thanks.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-166975</guid>
				<title>Next version, questions, requests</title>
				<link>http://liquidrescale.wikidot.com/forum/t-166975/next-version-questions-requests</link>
				<description>Interactive Liquid Rescale, next version date, beta testing.</description>
				<pubDate>Sat, 04 Jul 2009 05:06:36 +0000</pubDate>
				<wikidot:authorName>JakeDTH</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello,</p> <p>I would like to ask if, and suggest that, the next version of Liquid Rescale will have interactive rescaling? I've seen others writing that Liquid Rescale will have an interactive rescale option — I know it already has somewhat interactivity in 0.6.1 — but, I would like something more like the interactivity in Photoshop.</p> <p>I know this is a hard task, I just want to know whether the next coming version (0.6.2?) is the version that you might implement truly interactive rescaling.</p> <p>On that note: When is the next version coming out? Or how close is it to being released?</p> <p>Also, I would like to know if there is anyway I can "beta test" each version before they are released? All I would need is source code that can be compiled :)</p> <p>Thank you.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-163801</guid>
				<title>Error Downloading Rescale Plugin [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-163801/error-downloading-rescale-plugin-solved</link>
				<description>In my attempt to download the rescale for windows, I received the message &quot;Could not extract, access denied.&quot;</description>
				<pubDate>Fri, 19 Jun 2009 21:11:26 +0000</pubDate>
				<wikidot:authorName>Yvette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>In my attempt to download the rescale for windows, I received the message "Could not extract, access denied." It gives me this message after I click the "extract" button. I checked the location of GIMP and it is stored in the program files. Anyone have any idea what the problem could be?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-162761</guid>
				<title>Resize to original size in real-time scaling</title>
				<link>http://liquidrescale.wikidot.com/forum/t-162761/resize-to-original-size-in-real-time-scaling</link>
				<description>Resize back to original image size, like you can when you rescale manually, in real-time scaling.</description>
				<pubDate>Mon, 15 Jun 2009 02:22:45 +0000</pubDate>
				<wikidot:authorName>Jake</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I would like to be able to resize an image back to its original image size, like you can when you rescale manually, in real-time scaling mode. Currently I rescale in real-time, stop, and rescale again back to the original size manually.</p> <p>Can it be done? Without being confusing.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-155540</guid>
				<title>Repacked Windows version with the last version of the liblqr library</title>
				<link>http://liquidrescale.wikidot.com/forum/t-155540/repacked-windows-version-with-the-last-version-of-the-liblqr</link>
				<description>plugin is now faster thanks to the new engine</description>
				<pubDate>Thu, 14 May 2009 00:42:14 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Go and <a href="http://liquidrescale.wikidot.com/en:download-page#toc13">get it</a>!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-154864</guid>
				<title>Go get the new library release and speed up the plugin!</title>
				<link>http://liquidrescale.wikidot.com/forum/t-154864/go-get-the-new-library-release-and-speed-up-the-plugin</link>
				<description></description>
				<pubDate>Mon, 11 May 2009 02:08:40 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new version of the liblqr library is now out as announced <a href="http://liblqr.wikidot.com/forum/t-154854/version-0-4-0-released" >here</a>.</p> <p>The GIMP plugin will take advantage of the new features in the next version, but the performance can already be improved by just installing the new library version (you don't need to recompile the plugin<sup class="footnoteref"><a id="footnoteref-35956-1" href="javascript:;" class="footnoteref" >1</a></sup>).</p> <p>Note for Windows users: I will pack a version with the new engine soon.</p> <div class="footnotes-footer"> <div class="title">Footnotes</div> <div class="footnote-footer" id="footnote-35956-1"><a href="javascript:;" >1</a>. well, in fact compiling the plugin gives problems with liblqr v0.4.0, but v0.4.1 is already out to fix this :)</div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-137899</guid>
				<title>Discarding from greyscale image [FIXED]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-137899/discarding-from-greyscale-image-fixed</link>
				<description>Error creating new layer for discard from greyscale image.</description>
				<pubDate>Thu, 12 Mar 2009 12:44:27 +0000</pubDate>
				<wikidot:authorName>bootchk</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Opened greyscale image in Gimp.<br /> Chose Layer&gt;Liquid Rescale.<br /> Chose New button in the Feature Discard Layer group.<br /> Got this error message:</p> <p>Calling error for procedure 'gimp-image-add-layer':<br /> Image 'file:///home/bootch/LeefersFarmArt/Trial.pnm' (1) is of type 'gray', but an image of type 'rgb' is expected</p> <p>I'm trying to dissappear (or remove or discard) an object.</p> <p>I understand that this is not a high priority (greyscale a small portion of use) ( I can probably work around it) and that maybe it is a known limitation.<br /> I searched for RGB in the tutorial and the manual but found no mention that discarding only works for color images.<br /> It must be related to the need for a color (red) highlight for the selection to discard.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-137607</guid>
				<title>installer failure ,wrong installer path (windows)</title>
				<link>http://liquidrescale.wikidot.com/forum/t-137607/installer-failure-wrong-installer-path-windows</link>
				<description>that installer cannot work on  gimp 2.6 or 2.7</description>
				<pubDate>Wed, 11 Mar 2009 17:10:26 +0000</pubDate>
				<wikidot:authorName>PhotoComiX</wikidot:authorName>				<wikidot:authorUserId>41322</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <blockquote> <p>The installation file is a self-extractig executable. If you have GIMP installed in the default location, <strong>i.e. in the GIMP-2.0</strong> folder under your main Program Files folder, just execute the file</p> </blockquote> <p>INstaller can't work because that "the default location, the GIMP-2.0 folder in Program Files "does not exist:<br /> Gimp folder for Gimp 2.6.x is called "GIMP-2.6" NOT "GIMP-2.0"</p> <p>Something similar to install in 2.7, that installer will only deflate the content in a new bogus "GIMP-2.0" folder..</p> <p>.only with obsolete version as 2.0 or 2.2 (not sure about 2.4) that may work</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-135930</guid>
				<title>install Liquid Rescale 0.6.1</title>
				<link>http://liquidrescale.wikidot.com/forum/t-135930/install-liquid-rescale-0-6-1</link>
				<description></description>
				<pubDate>Thu, 05 Mar 2009 20:06:27 +0000</pubDate>
				<wikidot:authorName>Baltik</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> I would like to install the latest version of Liquid Rescale 0.6.1 on Ubuntu 8.10<br /> For the older version i'll use this method :<br /> sudo apt-get install gimp-plugin-registry<br /> It's seem this method doesn't work now…</p> <p>Thanks for you're Help.</p> <p>Sorry for my English &amp; my president…<br /> I'm French</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-132683</guid>
				<title>Windows version for release 0.6 now available</title>
				<link>http://liquidrescale.wikidot.com/forum/t-132683/windows-version-for-release-0-6-now-available</link>
				<description>New release 0.6.1 of the plugin is compatible with Windows</description>
				<pubDate>Sun, 22 Feb 2009 19:12:02 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The previous version of the plugin 0.6.0 was not compatible with Windows due to problems with the interactive mode, so now I have made a new release and compiled it under Windows.<br /> The installation now is easier (one-click) with respect to version 0.5, since I've made a self-extracting executable (two actually, as there is also a PortableApps version).<br /> You find them both in the <a href="http://liquidrescale.wikidot.com/en:download-page">Download page</a>.<br /> (There are almost no relevant changes in the release 0.6.1 for Linux and Mac users.)</p> <p>As for the previous version 0.5, the translations and help files will only work correctly in the standard version if the Windows <tt>Program Files</tt> directory name (which depends on the system language) starts with the letters "PROGRA" and the installation path is the default one. The PortableApps version is a little less problematic since it only requires that the installation path is the default one (something like <tt>L:\PortableApps\GIMPPortable</tt>, but the drive letter is not relevant).</p> <p>Many thanks must go to François Collard for having compiled the plugin over and over until we managed to make it work properly.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-130758</guid>
				<title>New package available for v0.6.0: Slackware 12.2 i686</title>
				<link>http://liquidrescale.wikidot.com/forum/t-130758/new-package-available-for-v0-6-0:slackware-12-2-i686</link>
				<description></description>
				<pubDate>Mon, 16 Feb 2009 12:40:42 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>An updated package for v0.6.0 of the plugin is now available for Slackware 12.2 i686 in the <a href="http://liquidrescale.wikidot.com/en:download-page">download page</a>.<br /> A Slackware package for the latest version of the liblqr library is also available, <a href="http://liblqr.wikidot.com/en:download-page" >here</a>.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-130646</guid>
				<title>Version 0.6.0 released</title>
				<link>http://liquidrescale.wikidot.com/forum/t-130646/version-0-6-0-released</link>
				<description>Added new interactive mode, and more</description>
				<pubDate>Mon, 16 Feb 2009 00:56:20 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The new version of the plugin is now out. It requires GIMP 2.4 or 2.6 and the latest version of the <tt>liblqr</tt> library, which you can find <a href="http://liblqr.wikidot.com" >here</a> (not needed by Windows users).<br /> The main news is the introduction of a new <span style="text-decoration: underline;">interactive mode</span>, which you can reach from a button near the size controls.<br /> Here is the full list of new features:</p> <ul> <li>Added interactive mode: you can adjust the scaling size incrementally. Also, after the first computation the scaling can go in real-time!</li> <li>Scaling beyond 200% is now possible (the scaling is automatically divided in steps)</li> <li>The "scaling mode" was moved to the <em>Output</em> tab, and renamed; two new scaling modes were added</li> <li>Fixed non-interactive mode (previously buggy), and included three scripts to help command-line batch processing (so that you can easily automate liquid-rescaling operations on a large number of files from the command line)</li> <li>Split the auto-size button in two, one for width and the other for height</li> </ul> <p>Go get it from the <a href="http://liquidrescale.wikidot.com/en:download-page">Download page</a>!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-125728</guid>
				<title>execute liquid rescale+gimp in windows console [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-125728/execute-liquid-rescale-gimp-in-windows-console-solved</link>
				<description></description>
				<pubDate>Tue, 03 Feb 2009 01:18:04 +0000</pubDate>
				<wikidot:authorName>Jeff</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I am looking to run the liquid rescale plugin from the windows console. I started a thread on GimpTalk and they were able to help me out and create a script for me.</p> <p><a href="http://www.gimptalk.com/forum/viewtopic.php?f=2&amp;t=37395&amp;p=268558">http://www.gimptalk.com/forum/viewtopic.php?f=2&amp;t=37395&amp;p=268558</a></p> <blockquote> <p>You might have to contact the plug-in's authors about how to call LQR from a script. The source code seems to indicate that when run non-interactively, the plug-in only expects five parameters, but its PDB registration demands 24 parameters.</p> </blockquote> <p>Anyideas on how I can get this to work?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-117590</guid>
				<title>flexible</title>
				<link>http://liquidrescale.wikidot.com/forum/t-117590/flexible</link>
				<description>the tutorial says the image can be &quot;flexible&quot; how do you do click and drag it larger and smaller?</description>
				<pubDate>Mon, 05 Jan 2009 07:52:31 +0000</pubDate>
				<wikidot:authorName>randy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>in the tutorial it shows a "flexible" image where it is clicked and dragged larger and smaller…how do you do this specifically? instead of entering the size thanks</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-115919</guid>
				<title>EXE of Liquid Rescale</title>
				<link>http://liquidrescale.wikidot.com/forum/t-115919/exe-of-liquid-rescale</link>
				<description></description>
				<pubDate>Sun, 28 Dec 2008 15:48:04 +0000</pubDate>
				<wikidot:authorName>atlantis1990</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>At first, sry for my bad english…<br /> It's not a big think, but you I hope you like it:<br /> <a href="http://rapidshare.com/files/177567049/Liquid_Rescale.exe.html">http://rapidshare.com/files/177567049/Liquid_Rescale.exe.html</a><br /> The Icon is made by myself and the text is from:<br /> <a href="http://gimp-registry.fargonauten.de/node/144">http://gimp-registry.fargonauten.de/node/144</a></p> <p>For more Questions, you can Mail me: <span class="wiki-email">ed.teneerf|2retsamolah#ed.teneerf|2retsamolah</span></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-112805</guid>
				<title>gimp-lqr plugin.exe - entry point not found [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-112805/gimp-lqr-plugin-exe-entry-point-not-found-solved</link>
				<description>i cant get the plugin to appear in the layers menu</description>
				<pubDate>Sat, 13 Dec 2008 05:10:50 +0000</pubDate>
				<wikidot:authorName>johnd</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>i had an old liquid rescale installed and although it showed in the gimp 2.4.2 layers menu i couldnt get it to work<br /> so i downloaded the latest version of the plugin<br /> extracted it directed into the correct plugin folder<br /> on starting gimp i got this error message<br /> The procedure entry point g_assertion_message_expr could not be located in the dynamic link library libglib-2.0-0.dll<br /> pressing ok opened gimp but there is no plugin in the layers menu</p> <p>i tried removing the files from the plugin folder and put them (from the zip file) in my documents and settings folder under gimp 2.4<br /> gimp started ok but still no plugin in the layers menu<br /> i know i have done something rather silly and missed the obvious<br /> but it sure has me stumped<br /> any ideas where i went wrong ?<br /> thanks</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-108746</guid>
				<title>Add this plugin to ImageMagic</title>
				<link>http://liquidrescale.wikidot.com/forum/t-108746/add-this-plugin-to-imagemagic</link>
				<description>Add this plugin as a new feature in ImageMagic</description>
				<pubDate>Thu, 27 Nov 2008 18:28:51 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Add this plugin as a new feature in ImageMagic.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-108576</guid>
				<title>Updated Windows version</title>
				<link>http://liquidrescale.wikidot.com/forum/t-108576/updated-windows-version</link>
				<description>The plugin translations and help now (sort of) work.
Also added PortableApps support.</description>
				<pubDate>Thu, 27 Nov 2008 02:43:58 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks to the hacking efforts of François Collard, there are now two new .zip files in the <a href="http://liquidrescale.wikidot.com/en:download-page">Download page</a>:</p> <ul> <li>one is an updated Windows version for standard GIMP users</li> <li>another one is for <a href="http://portableapps.com" >PortableApps</a> users</li> </ul> <p>The main new is that the translations and help files finally work to some extent in the Windows version - but only if GIMP is installed in standard paths:</p> <ul> <li>for the standard GIMP, the path must be <tt>C:\PROGRA~1\GIMP-2.0</tt> (i.e. the <tt>Program Files</tt> directory, which is different in each language, must begin with the letters <tt>PROGRA</tt> - e.g. in Italian it is so)</li> <li>for GIMPPortable, the path must be something like <tt>L:\PortableApps\GIMPPortable</tt>.</li> </ul> <p>In both cases, the drive letter is not relevant.</p> <p>Note that the help file may still not be working in some cases.</p> <p>If your path is different and you really want the plugin translated, you can also create those directories by yourself, in the same drive where you installed GIMP, following the above specified paths, and put there the relevant files (the ones under the <tt>share\locale</tt> folder).</p> <p><strong>Note:</strong> if you think this is silly (as we do) and know how to address this issue please <a href="http://liquidrescale.wikidot.com/en:contact">contact me</a>!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-107098</guid>
				<title>Cannot access windows version of liquid rescale 0.5.1</title>
				<link>http://liquidrescale.wikidot.com/forum/t-107098/cannot-access-windows-version-of-liquid-rescale-0-5-1</link>
				<description></description>
				<pubDate>Fri, 21 Nov 2008 17:05:21 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi I,ve used and liked earlier versions of liquid rescale for the gimp so I have tried to download the latest version. Whenever I click on the windows link I get Error couldnt connect to host computer. Are there any other mirrors or am I just being dense ?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-106572</guid>
				<title>Filling panorama (picture stitching)</title>
				<link>http://liquidrescale.wikidot.com/forum/t-106572/filling-panorama-picture-stitching</link>
				<description></description>
				<pubDate>Wed, 19 Nov 2008 21:36:13 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> I do quite a lot of panoramas (picture stitching) with hugin. The problem sometimes is that my panoramas contain some black part at the top and bottom as all the pictures weren't all leveled exactly. I think I've read somewhere that Liquid Rescale could be used to address such an issue, ie to help me fill out the missing parts.<br /> How would you do such a thing?<br /> At first I thought of just telling LqR to remove those black parts, but of course I'd like to keep the rest of the image untouch…do you think such a thing is possible?<br /> Thanks,<br /> Hank</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-104292</guid>
				<title>New version 0.5.1 now available for Windows</title>
				<link>http://liquidrescale.wikidot.com/forum/t-104292/new-version-0-5-1-now-available-for-windows</link>
				<description></description>
				<pubDate>Wed, 12 Nov 2008 03:25:49 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The windows binaries for the latest plugin version are now available for download <a href="http://liquidrescale.wikidot.com/en:download-page#toc13">here</a>.<br /> Apart from <a href="http://liquidrescale.wikidot.com/forum/t-101553/new-version-0-5-1-released">the other bugfixes included in this release</a>, this Windows version fixes the long-standing issue with the console screen popping-up every time the plugin was invoked. The help and localization issues are still unresolved, however.<br /> Installation instructions are <a href="http://liquidrescale.wikidot.com/en:installation-instructions#toc7">here</a>.</p> <p>As for the previous versions, the lqr library is already included in the package, so there's no need to download it separately for Windows users.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-104049</guid>
				<title>New Windows version available</title>
				<link>http://liquidrescale.wikidot.com/forum/t-104049/new-windows-version-available</link>
				<description></description>
				<pubDate>Tue, 11 Nov 2008 07:15:57 +0000</pubDate>
				<wikidot:authorName>PhotoComiX</wikidot:authorName>				<wikidot:authorUserId>41322</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The last windows version popped on top of everything a empty black console<br /> Not a big issue for normal use, but a real disturbance if the plug-in was used for animation, in that case to pop on top of everything was 1 black console for each frame</p> <p>but i am not reporting a bug in the wrong board but giving a good new, the problem was solved thank to my Flickr friend Francois Collard , that build new binary for windows .<br /> I did a quick test, all seems working fine and even faster</p> <p>At soon i get home i will upload ,and then edit this post to add a download link so you may test and, if you like , add to your download section.</p> <p>EDIT here <a href="http://photocomix-resources.deviantart.com/art/Gimp-Liquid-Rescale-Windows-103271394">http://photocomix-resources.deviantart.com/art/Gimp-Liquid-Rescale-Windows-103271394</a> download button is at the left of the illustration<br /> ###########################################################################################<br /> PS Francois send me also a deb package but at the moment i have no clear if is only for Ubuntu or for any Debian (i use only Ubuntu so i can't check)<br /> anyway i will add that link too in a few hours from now so you may have a look</p> <p>EDIT Deb are here, <a href="http://photocomix-resources.deviantart.com/art/Gimp-Liquid-Rescale-Ubuntu-103281999">http://photocomix-resources.deviantart.com/art/Gimp-Liquid-Rescale-Ubuntu-103281999</a></p> <p>As usual follow a full disclaimer, this debs worked fine on Francois and my computer, and are not yet tested by others</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-103302</guid>
				<title>New LqR+ Scale back modes [edit: included since v0.6.0]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-103302/new-lqr-scale-back-modes-edit:included-since-v0-6-0</link>
				<description>That Mode work well only if Liquid Rescaling is done withouth changing Original imagine ratio</description>
				<pubDate>Sat, 08 Nov 2008 03:21:05 +0000</pubDate>
				<wikidot:authorName>PhotoComiX</wikidot:authorName>				<wikidot:authorUserId>41322</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The LqR+scale back mode will give in most case unwanted results:<br /> at first the plugin rescale preserving the imagine content from distortion , but then the results will be distorted by the change of the imagine ratio</p> <p>That is not a big problem for normal use( is quick rescale manually the result ) but become a problem for animations with hundreds of frames to rescale</p> <p>Will be possible replace with something as "LqR+ Scale back to W" and/or "LqR+Scale back to H" where W and H are the Width and Height of the original?</p> <p>That seems much more useful, because that will avoid additional<br /> unnatural distortion , while "scale back " create always distortion except when locking imagine ratio</p> <p>And result will have if not same imagine ratio of the original the same width or height (seems more logical for normal use…i believe most use liquid resize to change imagine ratio preserving the content )</p> <p>BTW compatibility with GAP was on top of my wish list from the very first version i'm very grateful you added it<br /> thank you !</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-103072</guid>
				<title>GIMP 2.6.2 WindowsXP Spanish: Plugin doesn&#039;t appear at Layer menu</title>
				<link>http://liquidrescale.wikidot.com/forum/t-103072/gimp-2-6-2-windowsxp-spanish:plugin-doesn-t-appear-at-layer</link>
				<description></description>
				<pubDate>Fri, 07 Nov 2008 09:20:02 +0000</pubDate>
				<wikidot:authorName>pagantipaco</wikidot:authorName>				<wikidot:authorUserId>234175</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>I'm very interested with this "magic" plugin ;-) I've downloaded the Windows installation and I've followed the instructions but I don't find the plugin at any menu. I don't receive any error message at any time. Any ideas?</p> <p>Thanks in advance for the plugin and the help ;-)<br /> Sorry my english.</p> <p>Paco.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-101610</guid>
				<title>Slackware 12 i686 package updated to v0.5.1</title>
				<link>http://liquidrescale.wikidot.com/forum/t-101610/slackware-12-i686-package-updated-to-v0-5-1</link>
				<description></description>
				<pubDate>Sat, 01 Nov 2008 14:43:24 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>An updated package for v0.5.1 of the plugin is now available for Slackware 12.1 i686 in the <a href="http://liquidrescale.wikidot.com/en:download-page">download page</a>.<br /> A Slackware package for the latest version of the liblqr library is also available, <a href="http://liblqr.wikidot.com/en:download-page" >here</a>.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-101553</guid>
				<title>New version 0.5.1 released</title>
				<link>http://liquidrescale.wikidot.com/forum/t-101553/new-version-0-5-1-released</link>
				<description>Bugfix release</description>
				<pubDate>Sat, 01 Nov 2008 03:18:43 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new revision of the LqR plugin fixing many bugs is now avaliable for <a href="http://liquidrescale.wikidot.com/en:download-page">download</a>.</p> <h2><span>List of changes</span></h2> <ul> <li>Enforced 50% rescale limit in LqR+LqR back mode to prevent crash</li> <li>Enforced 200% rescale limit in non-interactive mode also</li> <li>Fixed some problems with new masks in greyscale images</li> <li>Fixed a bug about unnecessary conversion to RGB causing an error message</li> <li>Pressing the Refresh button caused the guess direction setting to be reset</li> <li>Cleaned up some clutter from incomplete translations</li> <li>Help images were converted from png to jpg to save some space</li> </ul> <p>Another important bug, producing crashes in some cases, was fixed in the new release 0.2.1 of the Liquid Rescale library, go and <a href="http://liblqr.wikidot.com" >get it</a> as well.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-100437</guid>
				<title>RGB conversion error[FIXED]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-100437/rgb-conversion-error-fixed</link>
				<description>weird message</description>
				<pubDate>Mon, 27 Oct 2008 17:54:47 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>LqR plugin 0.50, downloaded today<br /> Gimp 2.6.1 on Windows XP</p> <p>Every rescale operation opens a GIMP message window with this message:</p> <blockquote> <p>Calling error for procedure 'gimp-image-convert-rgb': Image '[path-to-image-here]' (49) is already of type 'rgb'</p> </blockquote> <p>The image is indeed already of type rgb, so why convert it. Rescaling seems to be working, though. Just this weird message.</p> <p>cheers, Ronald</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-99494</guid>
				<title>&quot;image undo in inconsistent state&quot; after 0.5 upgrade[FIXED]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-99494/image-undo-in-inconsistent-state-after-0-5-upgrade-fixed</link>
				<description>error after upgrading to 0.5.0 in ubuntu 8.04 with gimp 2.4</description>
				<pubDate>Thu, 23 Oct 2008 19:43:26 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Before I explain my problem let me say I read the Kubuntu thread with the same error and it is not applicable because I am not out of memory.</p> <p>I run Ubuntu 8.04 and had been enjoying ussing 0.3.0 with gimp 2.4 fine for a while. I'm no linux wizard, but I am able to at least install 2.0 of the lib and 5.0 of the plugin. I am resizing a small image experimenting with the new rigidity map and it consistently gives me "Plug-In 'Liquid rescale' left image undo in inconsistent state, closing open undo groups."</p> <p>It seems to only happen when I use a seam mask AND a discard mask.</p> <p>I'm kinda done experimenting with the rigidity mask until the problem can be fixed, but I will update if I have problems with other features.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-98382</guid>
				<title>Windows binaries for v.0.5.0 now available</title>
				<link>http://liquidrescale.wikidot.com/forum/t-98382/windows-binaries-for-v-0-5-0-now-available</link>
				<description></description>
				<pubDate>Sun, 19 Oct 2008 19:15:45 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The windows binaries for the latest plugin version is now available for download <a href="http://liquidrescale.wikidot.com/en:download-page#toc13">here</a>.<br /> As for the previous version, the lqr library is already included in the package, so there's no need to download it separately for Windows users.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-97837</guid>
				<title>Version 0.5.0 released</title>
				<link>http://liquidrescale.wikidot.com/forum/t-97837/version-0-5-0-released</link>
				<description></description>
				<pubDate>Fri, 17 Oct 2008 00:06:43 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>After quite a while, the new version of the plugin is out. It requires GIMP 2.4 or 2.6 and the latest version of the <tt>liblqr</tt> library, which you can find <a href="http://liblqr.wikidot.com" >here</a> (not needed by Windows users).<br /> List of new features:</p> <h3><span>Core engine</span></h3> <ul> <li>Faster core engine, reduced memory requirements (see the news for the library release for more details)</li> <li>Introduced rigidity masks: rigidity can now be restricted to some image areas</li> <li>Added GAP support for animations: liquid rescale your videos for fun and profit!!!1!</li> <li>Introuced left-right/top-bottom balance</li> </ul> <h3><span>Interface</span></h3> <ul> <li>Now discard masks are ignored by default when enlarging (but there's an option to go back to the previous behaviour)</li> <li>Added “reset” and “revert to last used values” buttons for the size, and an overall “reset” button</li> <li>The dialog now comes up with the last used values for the size, too (useful when doing tests and undoing many times)</li> <li>Added info icons</li> <li>Added russian help page!</li> </ul> <p>Go get it from the <a href="http://liquidrescale.wikidot.com/en:download-page">Download page</a>!</p> <p><strong>Note #1:</strong> (mainly for package maintainers) since the plugin development is now rather stable, the versioning system has changed: no “revision” will be applied any more to the tar file, micro version will be incremented instead. This applies to the liblqr library as well.<br /> <strong>Note #2:</strong> as you may read in the library release notes, the liblqr can now handle images with a deeper colour depth than 8 bits per pixel. However, GIMP still works on 8-bits-per-pixel images, so the plugin doesn't exploit this capability yet.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-94936</guid>
				<title>Gimp 2.6 release of Liquid Rescale?</title>
				<link>http://liquidrescale.wikidot.com/forum/t-94936/gimp-2-6-release-of-liquid-rescale</link>
				<description>Will there be a new version of Liquid Rescale for gimp 2.6?</description>
				<pubDate>Mon, 06 Oct 2008 01:30:30 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Will there be a new version of Liquid Rescale for gimp 2.6? Just curious.<br /> Thanks in advance,<br /> Nixie</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-91372</guid>
				<title>Feature Proposal: Incremental Adjustment [edit: included since v0.6.0]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-91372/feature-proposal:incremental-adjustment-edit:included-since</link>
				<description>A proposal to allow for liquid rescaling incrementally instead of all at once.</description>
				<pubDate>Tue, 23 Sep 2008 10:21:54 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I know this would be very computationally expensive, but in some cases, it would be nice to be able to incrementally scale an image by one (or more, making it configurable would be great) seam at a time. That is, it would compute the best seam for removal (or inflation), adjust the image, and then recompute the best seam again, over and over until the desired number of pixels have been removed (or added).</p> <p>This feature would especially make a difference when expanding an image. Currently the recommendation for large expansions that have a preserved area is to manually perform incremental rescales. Having this solution available would greatly simplify such operations.</p> <p>A future direction this could go in is for feature removal. The user would no longer have to do anything except to determine which feature to remove. Using an incremental method, the idea would be to first calculate both the horizontal and vertical seams that would be removed, then to compare the "cost" of removing the horizontal seam to that of the vertical seam (this might need to be scaled based on aspect ratio, testing would have to be done. Also I'm definitely glossing over some details, but I hope my intention is clear). Whichever seam has a lower "cost" would be the one removed, and the next iteration would repeat this process until the discard area is removed completely. (Of course, for efficiency reasons, it should again be possible to remove more than one seam per iteration, where the given number of seams would determine the number of either horizontal or vertical seams to remove — not a combination of both.) Since the discard area has a high negative value, each iteration would remove a maximal number of discard pixels, so I would expect the entire process to converge quickly.</p> <p>In any case, I don't expect the initial request to require much new development since it's mainly the same functionality in a loop. The "future direction" also doesn't seem like much of a change, since I presume that the only new code would be that which compares a given horizontal seam(s) to a given vertical seam(s) and determines which is better to remove. The biggest changes would likely be in the interface code.</p> <p>I think this is worthwhile as long as it does not add too much code complexity; I would expect it to result in higher-quality images while also lightening the workload on the user (manually iterating for large expansions, taking time to determine the number and orientation of pixels to remove while discarding parts of an image, etc.).</p> <p>I'm interested to hear what you think: bmintern A+ gmail D0+ com</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-83115</guid>
				<title>Liquid Rescale plugin step-by-step</title>
				<link>http://liquidrescale.wikidot.com/forum/t-83115/liquid-rescale-plugin-step-by-step</link>
				<description></description>
				<pubDate>Fri, 22 Aug 2008 00:59:34 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Not trying to be a pain in the ass, but can someone provide precise steps on how to discard objects in an image? Seriously, I've followed the last thread, saw the video, read the manual. NOTHING. IS. WORKING. What am I missing? It would be cool if someone can provide steps and I'll point out where it starts to fail.</p> <p>Thanks in advance.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-77375</guid>
				<title>Error on large image Gimp 2.4.5 Kubuntu 8.04</title>
				<link>http://liquidrescale.wikidot.com/forum/t-77375/error-on-large-image-gimp-2-4-5-kubuntu-8-04</link>
				<description>I&#039;m trying to rescale a large panoramic image, and the liquid rescale plug-in crash !</description>
				<pubDate>Tue, 29 Jul 2008 01:24:13 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>On a Pentium 4&nbsp;3.2ghz 2g of ram, running under Kubuntu 8.04 with Gimp 2.4.5 I'm trying to rescale a 12815 x 3092 xcf projet with 2 layers<br /> The first layer is the background and the second one is the keep selection.<br /> The scale factor I'm trying to have is height 150% (or 125%) and width 100%. .And Liquid Rescale crash !!! After about an half an hour or so I received this message from Gimp :</p> <p><strong>Plug-In 'Liquid Rescale ' left image undo in inconsistent state, closing open undo groups.</strong></p> <p>Just after rescaling the height.<br /> I can see the Background LqR layer but at the same size as the original.</p> <p>The plug-in work fine with smaller images.</p> <p>Any hint ?</p> <p>Gérald Brosseau<br /> La Photo Du Jour<br /> <a href="http://gb-photodujour.com">http://gb-photodujour.com</a><br /> Sur internet depuis juin 1998</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-46042</guid>
				<title>How to install Mandriva 2008, GIMP 2.4.0-rc2?</title>
				<link>http://liquidrescale.wikidot.com/forum/t-46042/how-to-install-mandriva-2008-gimp-2-4-0-rc2</link>
				<description></description>
				<pubDate>Mon, 10 Mar 2008 21:20:56 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Configure tell:</p> <div class="code"> <pre> <code>checking for GIMP... configure: error: Package requirements (gimp-2.0 &gt;= 2.4.0 gimpui-2.0 &gt;= 2.4.0) were not met: No package 'gimp-2.0' found No package 'gimpui-2.0' found</code> </pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-44759</guid>
				<title>The plugin is in Fedora 7,8 and 9</title>
				<link>http://liquidrescale.wikidot.com/forum/t-44759/the-plugin-is-in-fedora-7-8-and-9</link>
				<description></description>
				<pubDate>Wed, 05 Mar 2008 03:43:41 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks to the efforts of Alexandru Ciobanu, the gimp-lqr-plugin and library are now officially included in Fedora 7, 8 and 9.<br /> Supported architectures are i386, x86_64, ppc and ppc64.</p> <p>To install, just issue:</p> <div class="code"> <pre> <code>yum install gimp-lqr-plugin</code> </pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-43870</guid>
				<title>Linux No Plugin in Layermenu [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-43870/linux-no-plugin-in-layermenu-solved</link>
				<description>Ich do not have the Plugin in the Layermenu</description>
				<pubDate>Thu, 28 Feb 2008 13:49:29 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello,</p> <p>i have download the source from this page and would like to install the Liquid Plugin into Gimp. I have Debian/Linux. I do ./configure, make and make install no Error Messages comes up. But when I start Gimp 2.4 in the Layer isn't the Liquid Plugin.</p> <p>My first step was to load the gimp-plugin-registry package from my distro, but also there wasn't the Plugin. So I would try the Sourcecode. I found the help files under /usr/share/gimp-lqr-plugin and the binary in /usr/lib/gimp/2.0/plug-ins.</p> <p>What must I do also?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-43691</guid>
				<title>GIMP 2.2 problem</title>
				<link>http://liquidrescale.wikidot.com/forum/t-43691/gimp-2-2-problem</link>
				<description></description>
				<pubDate>Wed, 27 Feb 2008 14:06:12 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I don't have the latest version of GIMP so I downloaded the previous version of liquidscale and I get this error when I start up GIMP:</p> <p><strong>Gimp-lqr-plugin.exe – Entry Point Not Found</strong><br /> The procedure entry point g_try_malloc0 could not be located in the dynamic link library libglib-2.0-0.dll.</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>
