GIMP 2.10.12 Released

The team has released a new GIMP (only a few months since the last release)!

Windows and macOS builds are coming (probably tomorrow?).

From the post on the GIMP website:


GIMP 2.10.12 is mostly a bug fix release as some annoying bugs were
discovered, which is to be expected after a 2.10.10 with so many
changes!

Still, some very cool improvements are also available:

  • Improved Curves tool
  • Layers support for TIFF exporting
  • Support for user-installed fonts on Windows
  • Faster painting
  • Improved symmetry painting support
  • Incremental mode in the Dodge/Burn tool
  • Free Select tool now creates a preliminary selection
  • New Offset tool

Improvements and features

Improving curves editing and Curves tool

Generic curves interaction

The interaction with curves in general has been greatly enhanced, which
is an improvement both to the Curves tool and all other places where
curves need tweaking (currently paint dynamics and input device settings):

Relative motion when dragging points

When dragging an existing curve point, it won’t “jump” anymore to the
cursor position upon pressing the button. Instead it will move
relatively to its current position as the cursor moves. This allows
selecting a point with a quick click without moving it, and adjusting
a point position more easily.

Additionally, when the cursor hovers above a point, or when dragging a
point, the coordinate indicator now show the point’s position, rather
than the cursor’s.

Snap to curve when holding Ctrl

When holding down Ctrl while adding or dragging a point, the
Y-coordinate will snap to the original curve. This is particularly
useful for adding points along the curve.

Likewise, the coordinate indicator shows the snapped coordinates.

Curves tool specific interaction

Additionally, some improvements are specific to the Curves tool:

Numeric input of Curves tool points

Two new spin-buttons labelled “Input” and “Output” are now available
in the Curves tool interface. They allow setting the selected point’s
coordinates numerically and accurately if needed.

Add smooth or corner curve-point types

Control points can now be either smooth or corner points.
Smooth points produce a smooth curve, while corner points result in
sharp angles (previously, all points were smooth and this is still the
default).

Corner points are displayed using a diamond shape, instead of a circle
and the type can be changed in the Curves tool.

TIFF now has layer support!

Thanks to Tobias Ellinghaus, well known as a darktable
developer, TIFF can now export images without merging layers.

Support of user-installed fonts on Windows

Though not fully tested, we now have a temporary support of a new
Windows 10 feature. Windows 10 users indeed now have the ability to
install fonts without admin
permissions

since a recent update.

Therefore we added this non-admin font folder to our search path when
running GIMP. It should be only a temporary workaround since eventually
this should be
supported

by fontconfig, the upstream library used to manage fonts.

Note also that it is not fully tested because of our lack of Windows
developers. Therefore we are mostly hoping it will work as expected, and
this is a good time to make a call again:

Are you a Windows developer? Do you love GIMP? Please contribute!

Seriously, none of our current developers use Windows and bugs are
piling up in our bug tracker for this platform (same can be said on
macOS by the way), whereas GIMP is so enjoyably stable on GNU/Linux. We
are happy to do the occasional good deeds, but there are limits to what
we can do for a platform we don’t use. On the other hands, we happily
welcome patches and new contributors
!

Faster painting

GIMP now doesn’t replace the paint buffer on every dab if the paint
color/pixmap hasn’t changed. This results in faster painting on specific
cases.

As a by-product of the change, the color-from-gradient dynamics is now
fixed when the image has a color profile.

Incremental mode in the Dodge/Burn tool

The Dodge/Burn tool got a new “Incremental” option which,
similarly to the Paintbrush, Pencil, and Eraser tools, applies the
effect incrementally as the pointer moves.

Free Select tool creates preliminary selection

One of GIMP 2.10.0 changes which annoyed many people was that the Free
Select
tool was not creating a selection immediately when the region
was closed. One was forced to perform an additional confirmation step
(Enter or double-click).

This was done on purpose because we wanted to leave ability to tweak the
polygonal selection that is built into the Free Select tool. Yet it could
obviously be better, proof being the Rectangle Select tool which still
allowed to edit the rectangle even though a selection was pre-created.

The Free Select tool now works the same way: even though a preliminary
selection exists (allowing to directly copy or delete a contents without
additional step), you will still be able to edit this free selection as
long as you don’t start another selection nor change tools.

New Offset tool

New Offset tool shifts pixels and optionally wraps them around the edges
so that you could create repeatable patterns.

There’s a simple on-canvas interaction available: just drag on the canvas
to shift the layer.

You can activate the new filter either via Layer > Transform > Offset menu,
or via Shift+Ctrl+O shortcut.

Moving an intersecting pair of guides

The Move tool can now move together an intersecting pair of guides. by
dragging the guides at their point of intersection. This is useful when
the guides are used to mark a point, rather than a pair of lines (e.g.,
as is the case for the mandala symmetry guides, which mark the
symmetry’s point of origin).

Bug fixing

Many bugs were fixed, some more severe than others (in particular a
few crashes), as well as some code cleaning, factorization, and so on.
The usual deal!

More than the new features, we actually thought these issues were enough
to warrant this new release.

Among most pesky bugs fixed:

  • crashes for various reasons, with more crashes to fix yet;
  • various color management related bugs;
  • unwanted change of foreground and background colors in tools’ presets;
  • brush transformation improved and fixed in various places in symmetry
    painting mode;
  • a few localization bugs, and most importantly broken translation
    display for several supported languages (so far, we believe it to be a
    bug in the Pango dependency);
  • some brush format bugs;
  • …

And more. GIMP 2.10.12 is the result of about 200 commits in 2 months!
We will focus below on two specific bug fixing which deserve mentioning.

Improved symmetry painting support

The symmetry painting backend got some improvements, which resulted in a
few fixes, in particular some artifacts could occur with big brushes or
in the Clone/Heal tool when the brush was cropped to the bounds of a
drawable. These are now fixed.

In the Ink tool as well, the brush shape was not properly transformed.
This has been fixed as well.

Just open the Symmetry Painting dockable dialog, choose a type of
symmetry and paint away!

Color space mixup on exporting images

Several people noticed that exporting some images ended up in washed-up
colors sometimes. This was because in some cases, we were exporting by
error sRGB colors with a linear profile (especially visible in GIMP
2.10.10 since we were exporting profiles by default even when using a
default GIMP profile). We fixed this and took the opportunity to improve
GIMP’s export logics.

Now we are always exporting an explicitly set profile as-is, and pixel
colors are stored according to this profile expectation. If you manually
assigned a profile, GIMP should indeed always follow your request.

On the other hand, if no explicit profile was set, we implemented
various strategies depending on the format:

  • If the export format is able to store high-bit depth colors (e.g. PNG
    up to 16-bit and TIFF up to 64-bit), we follow the work format.
  • If the export format is 8-bit only (such as JPEG), we transform the
    data to sRGB in order to avoid posterization and shadow artifacts
    (except if your work format is 8-bit linear, then we leave it as
    8-bit linear for minimal loss).

Note that there are still edge cases which we may not find optimal yet
regarding how profiles are handled. These should all be greatly improved
when we will merge the “Space Invasion” code (an ongoing mid-term
project, as we were already talking about it when releasing GIMP
2.10.8
).
This code merge should hopefully happen soon enough!

Around GIMP

GEGL and babl

During this development span, GEGL 0.4.16 got released (91 commits), as
well as babl 0.1.64 (31 commits) and 0.1.66 (7 commits).

The biggest user-visible change is probably the cubic sampler
coefficient change, which used to produce smooth interpolation, suitable
for some cases, but not as sharp as people would expect in most other
cases. Now in all places where there is choice of interpolation (all
transformation tools, Warp Transform tool, etc.), the result with cubic
has changed and produces sharper results.

Another notable improvement in GEGL is an updated memory management, by
conditionally freeing memory from the heap (thanks to manual calls of
malloc_trim()), hence forcing the underlying libc to release memory
more often. This behavior is especially suitable for long-running
applications whose memory need can greatly vary, such as GIMP.
In practice, it means that GIMP process’ memory size will now shrink
much faster when you will close big images on supporting systems.

What’s next

Though it gets less visibility, work on upcoming GIMP 3 continues and
is going well. We will give more news soon enough. For the time being,
don’t forget you can donate to the project and personally fund several
GIMP developers
, as a way to give back
and to accelerate GIMP development.

8 Likes

The AppImage packages for the 2.10.12 GIMP release are available for download from here (GIMP only) and here (version with several bundled plug-ins).

3 Likes

You mentioned various color management related bugs, but still, my nikon photos always recognized as AdobeRGB, no matter that I converted them to Gimp built-in sRGB in opening. Every next time I open the same photo, it is again AdobeRGB.

The best thing is to write here a bug report:

I did, but this bug (or similar) is already reported ten years ago:

I tried the new app image, it seemed to work, but i am unable to export anything as a JPG… :frowning:

Do you mean the appimage by @Carmelo_DrRaw?

Yup that’s the one

I’m using it on Ubuntu 18.04 without issues.

Screenshot%20from%202019-06-23%2020-00-35

running on POP_os, so basically Disco Django

Could you please post the full terminal output that you get when you run the AppImage? There might be some hint of what goes wrong on your system. I am also unable to reproduce the problem. Meanwhile I will try to test the AppImage on a system similar to yours…

blupace@popbox:~/AppImage$ ./GIMP_AppImage-release-2.10.12-withplugins-x86_64.AppImage
DIR: /tmp/.mount_GIMP_AsPz7qB
AILIBDIR=/tmp/tmp.ewSDoj4n9f
deleting /tmp/tmp.ewSDoj4n9f/libxcb-dri3.so*
System stdc++ library: "/lib/x86_64-linux-gnu/libstdc++.so.6"
System stdc++ library version: "3.4.26"
Bundled stdc++ library version: "3.4.22"
Newest stdc++ library version: "3.4.26"
Using system stdc++ library
atomiclib: /lib/x86_64-linux-gnu/libatomic.so.1
Checking versions of library "libfontconfig"
  system library: "/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0" (libfontconfig.so.1.12.0)
  system library version: 1.12.0
  ailib: "/tmp/.mount_GIMP_AsPz7qB/usr/lib/libfontconfig.so.1.11.1"
  bundled library: "/tmp/.mount_GIMP_AsPz7qB/usr/lib/libfontconfig.so.1.11.1" (libfontconfig.so.1.11.1)
  bundled library version: 1.11.1
  newest library version: "1.12.0"
Removing bundled "libfontconfig"
removed '/tmp/tmp.ewSDoj4n9f/libfontconfig.so.1'
removed '/tmp/tmp.ewSDoj4n9f/libfontconfig.so.1.11.1'
Checking versions of library "libfreetype"
  system library: "/lib/x86_64-linux-gnu/libfreetype.so.6.16.1" (libfreetype.so.6.16.1)
  system library version: 6.16.1
  ailib: "/tmp/.mount_GIMP_AsPz7qB/usr/lib/libfreetype.so.6.16.1"
  bundled library: "/tmp/.mount_GIMP_AsPz7qB/usr/lib/libfreetype.so.6.16.1" (libfreetype.so.6.16.1)
  bundled library version: 6.16.1
  newest library version: "6.16.1"
Removing bundled "libfreetype"
removed '/tmp/tmp.ewSDoj4n9f/libfreetype.so.6'
removed '/tmp/tmp.ewSDoj4n9f/libfreetype.so.6.16.1'
APPDIRS: /tmp/tmp.ewSDoj4n9f:/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins:/home/blupace/.config/GIMP-AppImage/2.10/plug-ins:/tmp/.mount_GIMP_AsPz7qB:
GTK_PATH=/tmp/.mount_GIMP_AsPz7qB/usr/lib/gtk-2.0
GTK_IM_MODULE_FILE=/tmp/.mount_GIMP_AsPz7qB/usr/lib/gtk-2.0:/tmp/.mount_GIMP_AsPz7qB/usr/lib/gtk-2.0
PANGO_LIBDIR=/tmp/.mount_GIMP_AsPz7qB/usr/lib
BABL_PATH /tmp/.mount_GIMP_AsPz7qB/usr/lib/babl-0.1
GEGL_PATH /tmp/.mount_GIMP_AsPz7qB/usr/lib/gegl-0.4
python=/tmp/.mount_GIMP_AsPz7qB/usr/bin/python2
python2=/tmp/.mount_GIMP_AsPz7qB/usr/bin/python2
/tmp/.mount_GIMP_AsPz7qB/usr/bin/python=/tmp/.mount_GIMP_AsPz7qB/usr/bin/python2
:Python:E::py::python2:
GIMP2_PLUGINDIR: /tmp/tmp.ewSDoj4n9f/gimp/2.0
/tmp/.mount_GIMP_AsPz7qB/apprun-helper.sh: line 179: /tmp/.mount_GIMP_AsPz7qB/startup_scripts/*.sh: No such file or directory
load_external_plugins: linking plug-ins under /tmp/.mount_GIMP_AsPz7qB/plug-ins/gmic_qt
ln -f -s "/tmp/.mount_GIMP_AsPz7qB/plug-ins/gmic_qt" "/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins"
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/gmic_qt/scripts/set_exists.sh
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/gmic_qt/scripts/startup.sh
load_external_plugins: linking plug-ins under /tmp/.mount_GIMP_AsPz7qB/plug-ins/LiquidRescale
ln -f -s "/tmp/.mount_GIMP_AsPz7qB/plug-ins/LiquidRescale" "/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins"
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/LiquidRescale/scripts/set_exists.sh
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/LiquidRescale/scripts/startup.sh
load_external_plugins: linking plug-ins under /tmp/.mount_GIMP_AsPz7qB/plug-ins/NUFraw
ln -f -s "/tmp/.mount_GIMP_AsPz7qB/plug-ins/NUFraw" "/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins"
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/NUFraw/scripts/set_exists.sh
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/NUFraw/scripts/startup.sh
load_external_plugins: linking plug-ins under /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp
ln -f -s "/tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp" "/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins"
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp/scripts/set_exists.sh
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp/scripts/startup.sh
load_external_plugins: linking plug-ins under /tmp/.mount_GIMP_AsPz7qB/plug-ins/ResynthesizerPlugin
ln -f -s "/tmp/.mount_GIMP_AsPz7qB/plug-ins/ResynthesizerPlugin" "/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins"
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/ResynthesizerPlugin/scripts/set_exists.sh
load_external_plugins: sourcing /tmp/.mount_GIMP_AsPz7qB/plug-ins/ResynthesizerPlugin/scripts/startup.sh
LD_LIBRARY_PATH: /tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/ResynthesizerPlugin/usr/lib:/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/PhFGimp/usr/lib:/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/NUFraw/usr/lib:/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/LiquidRescale/usr/lib:/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/gmic_qt/usr/lib:/tmp/tmp.ewSDoj4n9f:/usr/lib::/tmp/.mount_GIMP_AsPz7qB/usr/lib/gdk-pixbuf-2.0/loaders
QT_PLUGIN_PATH: /tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/gmic_qt/usr/lib/qt5/plugins:
Input parameters: ""

Input File: 
	linux-vdso.so.1 (0x00007ffd302d7000)
	libgimpwidgets-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpwidgets-2.0.so.0 (0x00007fd2b1666000)
	libgtk-x11-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgtk-x11-2.0.so.0 (0x00007fd2b0fe4000)
	libgdk-x11-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgdk-x11-2.0.so.0 (0x00007fd2b0d23000)
	libatk-1.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libatk-1.0.so.0 (0x00007fd2b0afd000)
	libgimpconfig-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpconfig-2.0.so.0 (0x00007fd2b08e5000)
	libgimpmath-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpmath-2.0.so.0 (0x00007fd2b06df000)
	libgimpthumb-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpthumb-2.0.so.0 (0x00007fd2b04d5000)
	libgimpcolor-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpcolor-2.0.so.0 (0x00007fd2b02bd000)
	libgimpmodule-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpmodule-2.0.so.0 (0x00007fd2b00b7000)
	libgimpbase-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgimpbase-2.0.so.0 (0x00007fd2afe88000)
	libgdk_pixbuf-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgdk_pixbuf-2.0.so.0 (0x00007fd2afc60000)
	libpangocairo-1.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpangocairo-1.0.so.0 (0x00007fd2afa50000)
	libpangoft2-1.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpangoft2-1.0.so.0 (0x00007fd2af83a000)
	libpango-1.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpango-1.0.so.0 (0x00007fd2af5f4000)
	libcairo.so.2 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libcairo.so.2 (0x00007fd2af2dd000)
	libpixman-1.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpixman-1.so.0 (0x00007fd2af034000)
	libfontconfig.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libfontconfig.so.1 (0x00007fd2aedf3000)
	libexpat.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libexpat.so.1 (0x00007fd2aebc7000)
	libuuid.so.1 => /lib/x86_64-linux-gnu/libuuid.so.1 (0x00007fd2aeba3000)
	libfreetype.so.6 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libfreetype.so.6 (0x00007fd2ae8fb000)
	libbz2.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libbz2.so.1 (0x00007fd2ae6eb000)
	libharfbuzz.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libharfbuzz.so.0 (0x00007fd2ae44e000)
	libpng16.so.16 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpng16.so.16 (0x00007fd2ae21c000)
	libxcb-shm.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libxcb-shm.so.0 (0x00007fd2ae016000)
	libxcb.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libxcb.so.1 (0x00007fd2addee000)
	libxcb-render.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libxcb-render.so.0 (0x00007fd2adbe0000)
	libXrender.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXrender.so.1 (0x00007fd2ad9d5000)
	libX11.so.6 => /lib/x86_64-linux-gnu/libX11.so.6 (0x00007fd2ad89b000)
	libXext.so.6 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXext.so.6 (0x00007fd2ad689000)
	librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007fd2ad67c000)
	libgegl-npd-0.4.so => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgegl-npd-0.4.so (0x00007fd2ad474000)
	libgegl-0.4.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgegl-0.4.so.0 (0x00007fd2ad19f000)
	libgthread-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgthread-2.0.so.0 (0x00007fd2acf9d000)
	libgmodule-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgmodule-2.0.so.0 (0x00007fd2acd99000)
	libjson-glib-1.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libjson-glib-1.0.so.0 (0x00007fd2acb72000)
	libbabl-0.1.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libbabl-0.1.so.0 (0x00007fd2ac88f000)
	libgio-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgio-2.0.so.0 (0x00007fd2ac4f0000)
	liblcms2.so.2 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/liblcms2.so.2 (0x00007fd2ac296000)
	libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fd2ac275000)
	libgexiv2.so.2 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgexiv2.so.2 (0x00007fd2ac054000)
	libexiv2.so.26 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libexiv2.so.26 (0x00007fd2aba5c000)
	libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fd2aba3e000)
	libmypaint-1.3.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libmypaint-1.3.so.0 (0x00007fd2ab82c000)
	libjson-c.so.2 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libjson-c.so.2 (0x00007fd2ab621000)
	libgobject-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgobject-2.0.so.0 (0x00007fd2ab3d1000)
	libglib-2.0.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libglib-2.0.so.0 (0x00007fd2ab0bb000)
	libunwind.so.8 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libunwind.so.8 (0x00007fd2aaea1000)
	libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fd2aad51000)
	libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fd2aad4b000)
	libjpeg.so.62 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libjpeg.so.62 (0x00007fd2aaaf6000)
	libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fd2aa90b000)
	libXfixes.so.3 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXfixes.so.3 (0x00007fd2aa705000)
	libXinerama.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXinerama.so.1 (0x00007fd2aa500000)
	libXi.so.6 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXi.so.6 (0x00007fd2aa2f0000)
	libXrandr.so.2 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXrandr.so.2 (0x00007fd2aa0e5000)
	libXcursor.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXcursor.so.1 (0x00007fd2a9eda000)
	libXcomposite.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXcomposite.so.1 (0x00007fd2a9cd7000)
	libXdamage.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXdamage.so.1 (0x00007fd2a9ad4000)
	libpng15.so.15 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpng15.so.15 (0x00007fd2a98a7000)
	libthai.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libthai.so.0 (0x00007fd2a969b000)
	libfribidi.so.0 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libfribidi.so.0 (0x00007fd2a947f000)
	/lib64/ld-linux-x86-64.so.2 (0x00007fd2b18fe000)
	libgraphite2.so.3 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libgraphite2.so.3 (0x00007fd2a924f000)
	libXau.so.6 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libXau.so.6 (0x00007fd2a904b000)
	libpcre.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libpcre.so.1 (0x00007fd2a8de9000)
	libffi.so.6 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libffi.so.6 (0x00007fd2a8be1000)
	libselinux.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libselinux.so.1 (0x00007fd2a89b8000)
	libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 (0x00007fd2a899d000)
	libmount.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libmount.so.1 (0x00007fd2a875a000)
	libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fd2a8740000)
	libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fd2a855e000)
	libblkid.so.1 => /tmp/.mount_GIMP_AsPz7qB/usr/bin/../lib/libblkid.so.1 (0x00007fd2a831c000)

/tmp/.mount_GIMP_AsPz7qB/usr/bin/gimp.bin --pdb-compat-mode=on ""
/tmp/.mount_GIMP_AsPz7qB/usr/bin/python
DIRNAME: /tmp/.mount_GIMP_AsPz7qB/usr/bin
DESKTOPFILE_NAME: gimp.desktop
APP_FULL: GNU Image Manipulation Program
APP: GNUImageManipulationProgram
APP_FULL: GNU Image Manipulation Program
APP: GNUImageManipulationProgram
BIN: /tmp/.mount_GIMP_AsPz7qB/usr/bin/gimp.bin
DESKTOPINTEGRATION: 
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/bin/gimp-2.10
Gtk-Message: 22:01:51.603: Failed to load module "gail"
Gtk-Message: 22:01:51.604: Failed to load module "atk-bridge"

(gimp.bin:23088): Gtk-WARNING **: 22:01:51.611: Unable to locate theme engine in module_path: "adwaita",

(gimp.bin:23088): Gtk-WARNING **: 22:01:51.614: Unable to locate theme engine in module_path: "murrine",

(gimp.bin:23088): Gtk-WARNING **: 22:01:51.615: Unable to locate theme engine in module_path: "adwaita",
Gtk-Message: 22:01:51.617: Failed to load module "canberra-gtk-module"
/tmp/.mount_GIMP_AsPz7qB/usr/bin/gimp.bin: Gimp-Widgets-WARNING: parse_iso_codes: error parsing '/tmp/.mount_GIMP_AsPz7qB/usr/share/xml/iso-codes/iso_639.xml': No such file or directory

Skipping duplicate plug-in: '/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/plugin-heal-selection.py'
Skipping duplicate plug-in: '/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/plugin-heal-transparency.py'
Skipping duplicate plug-in: '/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/resynthesizer'
Skipping duplicate plug-in: '/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/resynthesizer_gui'
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp/plug-ins/phf_gimp
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp/plug-ins/file-photoflow
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/file-rawtherapee/file-rawtherapee
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/file-darktable/file-darktable
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp/plug-ins/phf_gimp
phf_gimp::query() called, exec_path=photoflow
phf_gimp::init(): failed to run photoflow (photoflow)
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/plug-ins/PhFGimp/plug-ins/file-photoflow
file-photoflow::init() called, exec_path=photoflow
file-photoflow::init(): failed to run photoflow (photoflow)
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/file-rawtherapee/file-rawtherapee
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/file-darktable/file-darktable
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/script-fu/script-fu
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/file-png/file-png
Gtk-Message: 22:02:22.540: Failed to load module "gail"
Gtk-Message: 22:02:22.541: Failed to load module "atk-bridge"

(file-png:23171): Gtk-WARNING **: 22:02:22.544: Unable to locate theme engine in module_path: "adwaita",

(file-png:23171): Gtk-WARNING **: 22:02:22.546: Unable to locate theme engine in module_path: "murrine",

(file-png:23171): Gtk-WARNING **: 22:02:22.547: Unable to locate theme engine in module_path: "adwaita",
Gtk-Message: 22:02:22.547: Failed to load module "canberra-gtk-module"
is_external_process: bundled process found: /tmp/.mount_GIMP_AsPz7qB/usr/lib/gimp/2.0/plug-ins/file-jpeg/file-jpeg
Gtk-Message: 22:02:49.748: Failed to load module "gail"
Gtk-Message: 22:02:49.749: Failed to load module "atk-bridge"

(file-jpeg:23196): Gtk-WARNING **: 22:02:49.752: Unable to locate theme engine in module_path: "adwaita",

(file-jpeg:23196): Gtk-WARNING **: 22:02:49.754: Unable to locate theme engine in module_path: "murrine",

(file-jpeg:23196): Gtk-WARNING **: 22:02:49.754: Unable to locate theme engine in module_path: "adwaita",
Gtk-Message: 22:02:49.755: Failed to load module "canberra-gtk-module"
Requested feature was omitted at compile time
Requested feature was omitted at compile time
Requested feature was omitted at compile time
Requested feature was omitted at compile time
Requested feature was omitted at compile time
Requested feature was omitted at compile time
^C/tmp/tmp.ewSDoj4n9f/gimp/2.0/plug-ins/script-fu/script-fu terminated: Interrupt
/tmp/.mount_GIMP_AsPz7qB/usr/bin/gimp.bin: terminated: Interrupt

Hope this helps

Could you show me the exact options you have used in the Jpeg export dialog? A screenshot would be enough…

I noticed that the size option for the jpg dosn’t show here either, that was my first clue that something wasn’t working right :-S

May I suggest that Gradient tool have color drop selection?

So, in Gradient tool one can color drop colors from screen.

So i decide to install Debian 10, and the problem has gone away… must just be an issue with either ubuntu or pop

1 Like