Pick a software title..to downgrade to the version you love!
The GIMP 2.6.5 Change Log
571628 – Scaling image to 25% turn background from white to grey
567840 – GIMP's GtkScaleButton conflicts with GTK's
569043 – GEGL tool - missing Operation Settings for all sub-tools
568890 – don't rely on GtkAction implementation details
568909 – wrong RGB values for color names in libgimpcolor/gimprgb-parse.c
568839 – wrong hex RGB value for the color names slategrey and slategray
559408 - Brushes dragged to the image window look strange
563337 – Rectangle Select Tool does not allow 1:1 fixed ratio
568016 – Black pullout parameter of plug-in-newsprint has no effect
562818 – First image opened in GIMP offset
562213 – Align Tool doesn't work properly if it is the active tool
at startup
* Updated translations:
Spanish (es)
Estonian (et)
Hindi (hi)
Italian (it)
Brazilian Portuguese (pt_BR)
Romanian (ro)
Russian (ru)
Serbian (sr)
Tamil (ta)
Simplified Chinese (zh_CN)
The GIMP is the GNU Image Manipulation Program. It is a freely distributed piece of software suitable for such tasks as photo retouching, image composition and image authoring. GIMP is released under GPLv3+license and is available for Linux, macOS, and Microsoft Windows.
The GIMP 2.6.5 Screenshots
The GIMP 2 Builds
The GIMP Comments
The main GIMP building instructions are at Hacking:Building. This page is for Windows-specific additions to that page.
Note: the instructions are not always kept up to date. The primary development platform is the Debian Testing GNU/Linux distribution, so the very latest code from Git might not always build on other platforms.
- 1Building GIMP natively under Windows using MSYS2
- 1.2Install the dependencies
- 3Cross-Compiling GIMP under Linux using MinGW-w64
- 3.6Build any optional dependency
- 3.9Troubleshooting
- 4Troubleshooting
Building GIMP natively under Windows using MSYS2
Msys2 is a POSIX environment with basically everything you would find on a Linux system (shell, package manager, GCC…). It allows to use POSIX tools to build Windows softwares.
Setting up the environment
First, follow the installation instructions for msys2 available at msys2.github.io.
To open a terminal, you need to execute msys2.exe
or mingw64.exe
Update the system :
If the shell tells you to close the terminal, close MSYS2 and run it again. That is a normal procedure.
Install the dependencies
If you want to build gimp 2.10
If you have Windows 64bits:
If you have Windows 32 bit:
If you want to build gimp master
If you have Windows 64bits:
If you have Windows 32bits:
Simply hit enter at the prompts for which packages to install (default=all). This step will download a ton of packages, and may take a while.
Building the software
You can now just follow the instruction on the main page Hacking:Building. Just be careful of the following changes :
- If you are on Windows 64bits, you need to add mingw64 on 32bits mingw32
You can add all the environment variable on C:msys64_or_msys32home{USERNAME}.bash_profile then run
- Disable docs for Babl :
-Dwith-docs=false
while calling Meson.
- Disable docs for Gegl :
-Ddocs=false
while calling Meson.
You may want to disable the docs while building Gimp :
- Meson build :
-Dgtk-doc=false -Dgtk-doc-app=false
- Autotools build :
--disable-docs
Cross-Compiling GIMP under UNIX using crossroad
A tool named crossroad has been developed to cross-build for Windows under Linux (it was even originally started to crossbuild GIMP specifically).
See the tutorial explaining how to build GIMP with it.
Condensed, here is the process:
Check out the full tutorial for more details.
Note: this is basically the same thing as the Mingw64 cross build, simply crossroad wraps all the complicated parts!
Cross-Compiling GIMP under Linux using MinGW-w64
Experience shows that working with the MinGW environment on a Linux machine provides a much faster compilation, and you are still able to compile for any Windows target (32 and 64 bits).
NOTE: the following procedure should be distribution-independent and does not rely on your package management system, even though it uses some OpenSuse packages. It would probably work on OSX or any other UNIX as well (add a note on the list below if you know this procedure works on another OS).
Has been known to work on at least: Linux Mint 15, Ubuntu 12.04LST and Mageia 2 distributions.
Source of the original procedure from an email by Victor Oliveira.
Install mingw-w64
This procedure relies on the newer MinGW-w64 project.
If your distribution provides the mingw-w64
tools, you may install them with your package manager.
Otherwise, download directly the last release on Sourceforge.
The archive contains a prefix tree, that you can consider as read-only (just like your linux system).
Install GIMP Dependencies
The default environment provided by MinGW does not have the huge list of dependencies that GIMP requires.
Fortunately the email linked above has bash script named grab-stuff.sh (which calls itself a python3 script named 'download-mingw-rpm.py', so you have to download both and have python3), which downloads pre-compiled version of all needed dependencies for cross-compiling (it uses OpenSuse repositories as source, but it does not mean at all you need rpm support).
From the root of your cross-compiling prefix ($HOME/w64) run:
You will notice in particular a new usr/ folder, and inside i686-w64-mingw32/ and x86_64-w64-mingw32/ sub-folders.
TODO : Make a proper dependency list.
Set your cross-compiling environment
Define the environment variables as described in Hacking:Building. You may also need to reset pkg-config:
Build BABL
Build GEGL
Build any optional dependency
This step is not necessary if you compile GIMP with the minimum set of dependency as indicated at the next section.
Compression support
Nevertheless if for instance, you needed compression support (hence be able to load and save your images in various compressed format), you would need zlib,libbzip2 and liblzma installed. In particular the cross-compilation environment described on this page has no pre-compiled liblzma. You would need to cross-compile it first yourself.
In my case xz-5.0.4 worked well.
Finally obviously in the GIMP configure step, remove the --without-liblzma option on the autogen.sh command line before compiling GIMP.
You should be able to do similar things for other optional features that you would want on your cross-compiled GIMP.
Alternatively there exists a patch to get compression support working in 32 bit builds.
Multi-Language support
Multi-Language support is installed with the grab-stuff.sh script. Due to a bug in the package mingw32-iso-codes-devel the pkgconfig program can't find the iso-codes package.In this case you will notice, that GIMPs autogen.sh reports
Language selection: no
and the finished GIMP build has no language selector listbox in Edit/Preferences/Interface.To solve this, copy $HOME/w64/usr/$HOST/sys-root/mingw/share/pkgconfig/iso-codes.pc to $HOME/w64/usr/$HOST/sys-root/mingw/lib/pkgconfig before executing autogen.sh or configure for GIMP.Note you have to do this for every value of $HOST you want to build (e.g. i686 and x86_64 architecture).Also merge the MinGW and GIMP build folders when installing it on Windows (see the Troubleshooting section).
Build GIMP
Install On Windows
To test your compiled installation, I found nothing better than moving the whole tree (in my case $HOME/w64) into Windows, because libraries are dynamically linked, then run $HOME/w64/bin/gimp-2.9.exe under Windows.
If you really want to build a self contained GIMP, you should compile everything as static libraries.GIMP will probably still rely on some external files though, for instance what you find under $HOME/w64/share/gimp/2.0/. Maybe other things. But this will have to be tested if needed.
Troubleshooting
Running gimp-2.x.exe on Windows fails. Error messages about a missing entry point in libglib-2.0-0.dll or a missing bzip2.dll are shown.
Cause:
The missing dll files are in the MinGW binary folder, which is separate from the GIMP folders.
Solution:
To export the GIMP build to Windows properly, use the following steps:
1. On Windows create a folder for the GIMP build, like GIMP-Master.
2. Copy all files from $HOME/w64/$HOST/sys-root/mingw to the newly created folder.
3. Copy all files from your $PREFIX folder to the newly created folder. There are duplicate subfolders, for instance bin, share etc., in both directories. If your filemanager asks you to overwrite them, then confirm.
It's important to keep this order to ensure you overwrite older BABL and GEGL from the grab-stuff.sh script by the newer ones from your build.
At the end you have merged your MinGW installation and the GIMP build to a running GIMP on Windows build.(It also contains the unnecessary MinGW binaries, which are not needed anymore to run GIMP. But for testing purposes you have a running GIMP installation.)
Some fonts, like Sans, are shown improperly
See also the Bugzilla report.
Cause:
The fontconfig package installation writes absolute paths of the building system to fonts.conf and conf.d/*.conf. When GIMP is installed on the Windows target system, these absolute paths become invalid.
Solution:
The bug should be reported to the Fontconfig developers. Meanwhile do on the Windows target system:
1. Close GIMP.
2. Edit the file etcfontsfonts.conf:
Replace the line $a_directory/conf.d
by ..sharefontconfigconf.avail
3. Restart GIMP.
Troubleshooting
Running gimp-2.x.exe on Windows fails. Error messages about a missing entry point in libglib-2.0-0.dll or a missing bzip2.dll are shown.
Cause:
The missing dll files are in the MinGW binary folder, which is separate from the GIMP folders.
Solution:
To export the GIMP build to Windows properly, use the following steps:
1. On Windows create a folder for the GIMP build, like GIMP-Master.
2. Copy all files from $HOME/w64/$HOST/sys-root/mingw to the newly created folder.
3. Copy all files from your $PREFIX folder to the newly created folder. There are duplicate subfolders, for instance bin, share etc., in both directories. If your filemanager asks you to overwrite them, then confirm.
It's important to keep this order to ensure you overwrite older BABL and GEGL from the grab-stuff.sh script by the newer ones from your build.
At the end you have merged your MinGW installation and the GIMP build to a running GIMP on Windows build.(It also contains the unnecessary MinGW binaries, which are not needed anymore to run GIMP. But for testing purposes you have a running GIMP installation.)
Some fonts, like Sans, are shown improperly
See also the Bugzilla report.
Xbox live helpline uk. Cause:
The Gimp Download For Windows
The fontconfig package installation writes absolute paths of the building system to fonts.conf and conf.d/*.conf. When GIMP is installed on the Windows target system, these absolute paths become invalid.
Solution:
The bug should be reported to the Fontconfig developers. Meanwhile do on the Windows target system:
1. Close GIMP.
2. Edit the file etcfontsfonts.conf:
Replace the line $a_directory/conf.d
by ..sharefontconfigconf.avail
3. Restart GIMP.
Building GIMP using Microsoft tools
Microsoft Visual Studio comes with its own C compiler.Most of GIMP development is done with the GCC and its MinGW Windows port.
Unfortunately both are not fully compatible, so integrating GCC into the Visual Studio build chain has its flaws, even while it might work in some points.
Because of this you are recommended to use MinGW for building GIMP on Windows.
Building GIMP plug-ins using Microsoft tools
How to build a GIMP plug-in with Visual Studio (archive.org link salvaged, original link, now broken, was: http://registry.gimp.org/node/24883)
Packaging third-party GIMP plug-ins for Windows
Gimp 2.8 Download Windows 10
Users on the Windows and Mac OSX platforms expect software to be packaged in a self-installing file (an installer). Even though GIMP plugins (whether scripts in Python or Scheme, or executables in the C language) are relatively easy to install, you might want to package them using an installer such as Inno Setup.