I dont know how to install Resynthesizer in gimp.I want Resynthesizer for editing my images.Anyone please help
5 Answers
For GIMP <= 2.8 the "Resynthesizer" plugin together with other scripts and tools (including the brilliant tool "Heal Selection") can easily be installed with the package gimp-plugin-registry
From the shell:
sudo apt-get install gimp-plugin-registry
For Gimp >= 2.10 the plugin-registry and with it the resynthesizer and heal-selection plugins may not (yet) be available. Until we have access to these tools again we need to put the plugins
- resynthesizer
- resynthesizer_gui
- plugin-heal-selection.py
to any of the defined plugin folders. I recommend ~/.config/GIMP/2.10/plug-ins
in our HOME.
We can get these either from compiling the source from the project's home page or from downloading an Ubuntu DEB file a release of the plugin-registry for GIMP 2.8 matching our architecture to extract above files. I tested these to still work on GIMP 2.10.6.

- 142,284
In case anyone used flatpak to install the lateset GIMP (2.10.20 as of this writing), I ran the command flatpak search org.gimp.GIMP
and noticed the following package available:
org.gimp.GIMP.Plugin.Resynthesizer
Seeing that, I ran flatpak install org.gimp.GIMP.Plugin.Resynthesizer
, opened up GIMP, and the new filters were available and worked as expected.
you can also search for all plugins avalible to install using flatpak:
flatpak search org.gimp.GIMP.plugin

- 105

- 71
-
2
-
-
That plugin got integrated only when i installed the latter option of the available packatge runtimes i.e. version
x86_64/2-40
– xquilt Jan 15 '22 at 16:52 -
That worked for me on Ubuntu 22.04: I had Gimp installed with Snap so I uninstalled it and reinstalled it with Flatpak, did exactly what you suggested, thanks! – Guillaume Bihet Dec 08 '22 at 14:07
On Ubuntu 20.04 and later, with GIMP 2.10.18 (latest as of today), the Resynthesizer plugin is again included in the gimp-plugin-registry
package. Install it with:
sudo apt install gimp-plugin-registry
However, probably due to the fact that Resynthesizer 2.x still relies on Python 2.x and this is no longer supported on Ubuntu, only the core plugin "Resynthesizer" is included and not the eight more specialized plugins like "Heal Selection", because these eight are implemented as Python scripts. Resynthesizer 3.0 for GIMP 3, once released, will use Python 3.x (source), and then we can expect its Python scripts to again come as part of this package.
How to cope without the Python-based plugins
In practice, only having the Resynthesizer core plugin available does not limit our options, it just complicates how to achieve what we want:
[Filter >] Map > Resynthesize...
[…] The hardest to understand, but the most powerful. […] But you must know specific steps to get one of the many effects. That's what the other plugins do automatically, they "know" the steps. The other plugins can all be replicated by specific steps using the control panel plugin.
(source)
For example, here are the steps to remove an object with Resynthesizer:
Open the image to work on. If possible, work on a cropped version of a very large image, as the plugin may otherwise crash.
In the image to work on, select the area to overwrite. All pixels in the selection will be replaced with best-fitting pixels given the surrounding texture, and there will be no seams at the edge of the selection.
Open another image to provide the input texture. This should be a copy of the image you work on.
In the texture input image, select all pixels that should be used to calculate the texture for replacing the pixels you don't want in the image you work on. Typically that would be the full picture except the pixels you want replaced. Means, typically this and your other selection would not have any pixels in common, and together select the whole image.
Open "Filter → Map → Resynthesizer" from the image you work on. Select the texture input image in the form, and execute the Resynthesizer, leaving all other options at their default values.

- 6,303
- 1
- 39
- 49
Here is a link: https://web.archive.org/web/20180225174428/http://registry.gimp.org/node/27986
Basically you download the file and extract it, after that you copy it into your gimp plug-ins folder.
Folder location: Go to your home folder, press Ctrl+h, search for .gimp2.x
folder (x is number of your gimp version) then search for plug-ins folder.

- 19,615
- 55
- 79
- 83

- 91
- 5
-
-
1link is dead. Please see the git repo. There are instructions on how to get things working. – ivan92 Oct 04 '18 at 09:08
-
"The registry is dead!" Please update your answer. Don't simply add a comment. You're allowed to edit your own answers. Also, the git instructions don't work either. – Cerin Jan 22 '20 at 19:13
For me this worked - flatpak install flathub org.gimp.GIMP.Plugin.Resynthesizer

- 101
- 1
-
did not work for me till i added the flathub - not sure why; so how is this a duplicate? – vkt Oct 04 '21 at 10:59
~/.gimp-2.8/plug-ins
directory overrides the package's. Once I deleted my local plug-ins folder, then the package plugins worked. – Cerin Jan 23 '20 at 03:53