
All babl formats now have a space equivalent to a color profile, determining the format's primaries and TRCs. This commit makes GIMP aware of this. libgimp: - enum GimpPrecision: rename GAMMA values to NON_LINEAR and keep GAMMA as deprecated aliases, add PERCEPTUAL values so we now have LINEAR, NON_LINEAR and PERCPTUAL for each encoding, matching the babl encoding variants RGB, R'G'B' and R~G~B~. - gimp_color_transform_can_gegl_copy() now returns TRUE if both profiles can return a babl space, increasing the amount of fast babl color conversions significantly. - TODO: no solution yet for getting libgimp drawable proxy buffers in the right format with space. plug-ins: - follow the GimpPrecision change. - TODO: everything else unchanged and partly broken or sub-optimal, like setting a new image's color profile too late. app: - add enum GimpTRCType { LINEAR, NON_LINEAR, PERCEPTUAL } as replacement for all "linear" booleans. - change gimp-babl functions to take babl spaces and GimpTRCType parameters and support all sorts of new perceptual ~ formats. - a lot of places changed in the early days of goat invasion didn't take advantage of gimp-babl utility functions and constructed formats manually. They all needed revisiting and many now use much simpler code calling gimp-babl API. - change gimp_babl_format_get_color_profile() to really extract a newly allocated color profile from the format, and add gimp_babl_get_builtin_color_profile() which does the same as gimp_babl_format_get_color_profile() did before. Visited all callers to decide whether they are looking for the format's actual profile, or for one of the builtin profiles, simplifying code that only needs builtin profiles. - drawables have a new get_space_api(), get_linear() is now get_trc(). - images now have a "layer space" and an API to get it, gimp_image_get_layer_format() returns formats in that space. - an image's layer space is created from the image's color profile, change gimpimage-color-profile to deal with that correctly - change many babl_format() calls to babl_format_with_space() and take the space from passed formats or drawables - add function gimp_layer_fix_format_space() which replaces the layer's buffer with one that has the image's layer format, but doesn't change pixel values - use gimp_layer_fix_format_space() to make sure layers loaded from XCF and created by plug-ins have the right space when added to the image, because it's impossible to always assign the right space upon layer creation - "assign color profile" and "discard color profile" now require use of gimp_layer_fix_format_space() too because the profile is now embedded in all formats via the space. Add gimp_image_assign_color_profile() which does all that and call it instead of a simple gimp_image_set_color_profile(), also from the PDB set-color-profile functions, which are essentially "assign" and "discard" calls. - generally, make sure a new image's color profile is set before adding layers to it, gimp_image_set_color_profile() is more than before considered know-what-you-are-doing API. - take special precaution in all places that call gimp_drawable_convert_type(), we now must pass a new_profile from all callers that convert layers within the same image (such as image_convert_type, image_convert_precision), because the layer's new space can't be determined from the image's layer format during the call. - change all "linear" properties to "trc", in all config objects like for levels and curves, in the histogram, in the widgets. This results in some GUI that now has three choices instead of two. TODO: we might want to reduce that back to two later. - keep "linear" boolean properties around as compat if needed for file pasring, but always convert the parsed parsed boolean to GimpTRCType. - TODO: the image's "enable color management" switch is currently broken, will fix that in another commit.
481 lines
13 KiB
C
481 lines
13 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
*
|
|
* gimpdrawable.c
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#define GIMP_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
#include "gimp.h"
|
|
|
|
#include "gimptilebackendplugin.h"
|
|
|
|
|
|
#define TILE_WIDTH gimp_tile_width()
|
|
#define TILE_HEIGHT gimp_tile_height()
|
|
|
|
|
|
/**
|
|
* gimp_drawable_get:
|
|
* @drawable_ID: the ID of the drawable
|
|
*
|
|
* This function creates a #GimpDrawable structure for the core
|
|
* drawable identified by @drawable_ID. The returned structure
|
|
* contains some basic information about the drawable and can also
|
|
* hold tile data for transfer to and from the core.
|
|
*
|
|
* Note that the name of this function is somewhat misleading, because
|
|
* it suggests that it simply returns a handle. This is not the case:
|
|
* if the function is called multiple times, it creates separate tile
|
|
* lists each time, which will usually produce undesired results.
|
|
*
|
|
* When a plug-in has finished working with a drawable, before exiting
|
|
* it should call gimp_drawable_detach() to make sure that all tile data is
|
|
* transferred back to the core.
|
|
*
|
|
* Return value: a new #GimpDrawable wrapper
|
|
**/
|
|
GimpDrawable *
|
|
gimp_drawable_get (gint32 drawable_ID)
|
|
{
|
|
GimpDrawable *drawable;
|
|
gint width;
|
|
gint height;
|
|
gint bpp;
|
|
|
|
width = gimp_drawable_width (drawable_ID);
|
|
height = gimp_drawable_height (drawable_ID);
|
|
bpp = gimp_drawable_bpp (drawable_ID);
|
|
|
|
g_return_val_if_fail (width > 0 && height > 0 && bpp > 0, NULL);
|
|
|
|
drawable = g_slice_new0 (GimpDrawable);
|
|
|
|
drawable->drawable_id = drawable_ID;
|
|
drawable->width = width;
|
|
drawable->height = height;
|
|
drawable->bpp = bpp;
|
|
drawable->ntile_rows = (height + TILE_HEIGHT - 1) / TILE_HEIGHT;
|
|
drawable->ntile_cols = (width + TILE_WIDTH - 1) / TILE_WIDTH;
|
|
|
|
return drawable;
|
|
}
|
|
|
|
/**
|
|
* gimp_drawable_detach:
|
|
* @drawable: The #GimpDrawable to detach from the core
|
|
*
|
|
* This function is called when a plug-in is finished working
|
|
* with a drawable. It forces all tile data held in the tile
|
|
* list of the #GimpDrawable to be transferred to the core, and
|
|
* then frees all associated memory. You must not access the
|
|
* @drawable after having called gimp_drawable_detach().
|
|
**/
|
|
void
|
|
gimp_drawable_detach (GimpDrawable *drawable)
|
|
{
|
|
g_return_if_fail (drawable != NULL);
|
|
|
|
gimp_drawable_flush (drawable);
|
|
|
|
if (drawable->tiles)
|
|
g_free (drawable->tiles);
|
|
|
|
if (drawable->shadow_tiles)
|
|
g_free (drawable->shadow_tiles);
|
|
|
|
g_slice_free (GimpDrawable, drawable);
|
|
}
|
|
|
|
/**
|
|
* gimp_drawable_flush:
|
|
* @drawable: The #GimpDrawable whose tile data is to be transferred
|
|
* to the core.
|
|
*
|
|
* This function causes all tile data in the tile list of @drawable to be
|
|
* transferred to the core. It is usually called in situations where a
|
|
* plug-in acts on a drawable, and then needs to read the results of its
|
|
* actions. Data transferred back from the core will not generally be valid
|
|
* unless gimp_drawable_flush() has been called beforehand.
|
|
**/
|
|
void
|
|
gimp_drawable_flush (GimpDrawable *drawable)
|
|
{
|
|
GimpTile *tiles;
|
|
gint n_tiles;
|
|
gint i;
|
|
|
|
g_return_if_fail (drawable != NULL);
|
|
|
|
if (drawable->tiles)
|
|
{
|
|
tiles = drawable->tiles;
|
|
n_tiles = drawable->ntile_rows * drawable->ntile_cols;
|
|
|
|
for (i = 0; i < n_tiles; i++)
|
|
if ((tiles[i].ref_count > 0) && tiles[i].dirty)
|
|
gimp_tile_flush (&tiles[i]);
|
|
}
|
|
|
|
if (drawable->shadow_tiles)
|
|
{
|
|
tiles = drawable->shadow_tiles;
|
|
n_tiles = drawable->ntile_rows * drawable->ntile_cols;
|
|
|
|
for (i = 0; i < n_tiles; i++)
|
|
if ((tiles[i].ref_count > 0) && tiles[i].dirty)
|
|
gimp_tile_flush (&tiles[i]);
|
|
}
|
|
|
|
/* nuke all references to this drawable from the cache */
|
|
_gimp_tile_cache_flush_drawable (drawable);
|
|
}
|
|
|
|
GimpTile *
|
|
gimp_drawable_get_tile (GimpDrawable *drawable,
|
|
gboolean shadow,
|
|
gint row,
|
|
gint col)
|
|
{
|
|
GimpTile *tiles;
|
|
guint right_tile;
|
|
guint bottom_tile;
|
|
gint n_tiles;
|
|
gint tile_num;
|
|
gint i, j, k;
|
|
|
|
g_return_val_if_fail (drawable != NULL, NULL);
|
|
|
|
if (shadow)
|
|
tiles = drawable->shadow_tiles;
|
|
else
|
|
tiles = drawable->tiles;
|
|
|
|
if (! tiles)
|
|
{
|
|
n_tiles = drawable->ntile_rows * drawable->ntile_cols;
|
|
tiles = g_new (GimpTile, n_tiles);
|
|
|
|
right_tile = (drawable->width -
|
|
((drawable->ntile_cols - 1) * TILE_WIDTH));
|
|
bottom_tile = (drawable->height -
|
|
((drawable->ntile_rows - 1) * TILE_HEIGHT));
|
|
|
|
for (i = 0, k = 0; i < drawable->ntile_rows; i++)
|
|
{
|
|
for (j = 0; j < drawable->ntile_cols; j++, k++)
|
|
{
|
|
tiles[k].bpp = drawable->bpp;
|
|
tiles[k].tile_num = k;
|
|
tiles[k].ref_count = 0;
|
|
tiles[k].dirty = FALSE;
|
|
tiles[k].shadow = shadow;
|
|
tiles[k].data = NULL;
|
|
tiles[k].drawable = drawable;
|
|
|
|
if (j == (drawable->ntile_cols - 1))
|
|
tiles[k].ewidth = right_tile;
|
|
else
|
|
tiles[k].ewidth = TILE_WIDTH;
|
|
|
|
if (i == (drawable->ntile_rows - 1))
|
|
tiles[k].eheight = bottom_tile;
|
|
else
|
|
tiles[k].eheight = TILE_HEIGHT;
|
|
}
|
|
}
|
|
|
|
if (shadow)
|
|
drawable->shadow_tiles = tiles;
|
|
else
|
|
drawable->tiles = tiles;
|
|
}
|
|
|
|
tile_num = row * drawable->ntile_cols + col;
|
|
|
|
return &tiles[tile_num];
|
|
}
|
|
|
|
GimpTile *
|
|
gimp_drawable_get_tile2 (GimpDrawable *drawable,
|
|
gboolean shadow,
|
|
gint x,
|
|
gint y)
|
|
{
|
|
gint row;
|
|
gint col;
|
|
|
|
g_return_val_if_fail (drawable != NULL, NULL);
|
|
|
|
col = x / TILE_WIDTH;
|
|
row = y / TILE_HEIGHT;
|
|
|
|
return gimp_drawable_get_tile (drawable, shadow, row, col);
|
|
}
|
|
|
|
void
|
|
gimp_drawable_get_color_uchar (gint32 drawable_ID,
|
|
const GimpRGB *color,
|
|
guchar *color_uchar)
|
|
{
|
|
g_return_if_fail (color != NULL);
|
|
g_return_if_fail (color_uchar != NULL);
|
|
|
|
switch (gimp_drawable_type (drawable_ID))
|
|
{
|
|
case GIMP_RGB_IMAGE:
|
|
gimp_rgb_get_uchar (color,
|
|
&color_uchar[0], &color_uchar[1], &color_uchar[2]);
|
|
color_uchar[3] = 255;
|
|
break;
|
|
|
|
case GIMP_RGBA_IMAGE:
|
|
gimp_rgba_get_uchar (color,
|
|
&color_uchar[0], &color_uchar[1], &color_uchar[2],
|
|
&color_uchar[3]);
|
|
break;
|
|
|
|
case GIMP_GRAY_IMAGE:
|
|
color_uchar[0] = gimp_rgb_luminance_uchar (color);
|
|
color_uchar[1] = 255;
|
|
break;
|
|
|
|
case GIMP_GRAYA_IMAGE:
|
|
color_uchar[0] = gimp_rgb_luminance_uchar (color);
|
|
gimp_rgba_get_uchar (color, NULL, NULL, NULL, &color_uchar[1]);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
guchar *
|
|
gimp_drawable_get_thumbnail_data (gint32 drawable_ID,
|
|
gint *width,
|
|
gint *height,
|
|
gint *bpp)
|
|
{
|
|
gint ret_width;
|
|
gint ret_height;
|
|
guchar *image_data;
|
|
gint data_size;
|
|
|
|
_gimp_drawable_thumbnail (drawable_ID,
|
|
*width,
|
|
*height,
|
|
&ret_width,
|
|
&ret_height,
|
|
bpp,
|
|
&data_size,
|
|
&image_data);
|
|
|
|
*width = ret_width;
|
|
*height = ret_height;
|
|
|
|
return image_data;
|
|
}
|
|
|
|
guchar *
|
|
gimp_drawable_get_sub_thumbnail_data (gint32 drawable_ID,
|
|
gint src_x,
|
|
gint src_y,
|
|
gint src_width,
|
|
gint src_height,
|
|
gint *dest_width,
|
|
gint *dest_height,
|
|
gint *bpp)
|
|
{
|
|
gint ret_width;
|
|
gint ret_height;
|
|
guchar *image_data;
|
|
gint data_size;
|
|
|
|
_gimp_drawable_sub_thumbnail (drawable_ID,
|
|
src_x, src_y,
|
|
src_width, src_height,
|
|
*dest_width,
|
|
*dest_height,
|
|
&ret_width,
|
|
&ret_height,
|
|
bpp,
|
|
&data_size,
|
|
&image_data);
|
|
|
|
*dest_width = ret_width;
|
|
*dest_height = ret_height;
|
|
|
|
return image_data;
|
|
}
|
|
|
|
/**
|
|
* gimp_drawable_get_buffer:
|
|
* @drawable_ID: the ID of the #GimpDrawable to get the buffer for.
|
|
*
|
|
* Returns a #GeglBuffer of a specified drawable. The buffer can be used
|
|
* like any other GEGL buffer. Its data will we synced back with the core
|
|
* drawable when the buffer gets destroyed, or when gegl_buffer_flush()
|
|
* is called.
|
|
*
|
|
* Return value: The #GeglBuffer.
|
|
*
|
|
* See Also: gimp_drawable_get_shadow_buffer()
|
|
*
|
|
* Since: 2.10
|
|
*/
|
|
GeglBuffer *
|
|
gimp_drawable_get_buffer (gint32 drawable_ID)
|
|
{
|
|
gimp_plugin_enable_precision ();
|
|
|
|
if (gimp_item_is_valid (drawable_ID))
|
|
{
|
|
GimpDrawable *drawable;
|
|
|
|
drawable = gimp_drawable_get (drawable_ID);
|
|
|
|
if (drawable)
|
|
{
|
|
GeglTileBackend *backend;
|
|
GeglBuffer *buffer;
|
|
|
|
backend = _gimp_tile_backend_plugin_new (drawable, FALSE);
|
|
buffer = gegl_buffer_new_for_backend (NULL, backend);
|
|
g_object_unref (backend);
|
|
|
|
return buffer;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* gimp_drawable_get_shadow_buffer:
|
|
* @drawable_ID: the ID of the #GimpDrawable to get the buffer for.
|
|
*
|
|
* Returns a #GeglBuffer of a specified drawable's shadow tiles. The
|
|
* buffer can be used like any other GEGL buffer. Its data will we
|
|
* synced back with the core drawable's shadow tiles when the buffer
|
|
* gets destroyed, or when gegl_buffer_flush() is called.
|
|
*
|
|
* Return value: The #GeglBuffer.
|
|
*
|
|
* See Also: gimp_drawable_get_shadow_buffer()
|
|
*
|
|
* Since: 2.10
|
|
*/
|
|
GeglBuffer *
|
|
gimp_drawable_get_shadow_buffer (gint32 drawable_ID)
|
|
{
|
|
GimpDrawable *drawable;
|
|
|
|
gimp_plugin_enable_precision ();
|
|
|
|
drawable = gimp_drawable_get (drawable_ID);
|
|
|
|
if (drawable)
|
|
{
|
|
GeglTileBackend *backend;
|
|
GeglBuffer *buffer;
|
|
|
|
backend = _gimp_tile_backend_plugin_new (drawable, TRUE);
|
|
buffer = gegl_buffer_new_for_backend (NULL, backend);
|
|
g_object_unref (backend);
|
|
|
|
return buffer;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* gimp_drawable_get_format:
|
|
* @drawable_ID: the ID of the #GimpDrawable to get the format for.
|
|
*
|
|
* Returns the #Babl format of the drawable.
|
|
*
|
|
* Return value: The #Babl format.
|
|
*
|
|
* Since: 2.10
|
|
*/
|
|
const Babl *
|
|
gimp_drawable_get_format (gint32 drawable_ID)
|
|
{
|
|
static GHashTable *palette_formats = NULL;
|
|
const Babl *format = NULL;
|
|
gchar *format_str = _gimp_drawable_get_format (drawable_ID);
|
|
|
|
/* EEK SPACE _gimp_drawable_get_format() only returns the encoding,
|
|
* needs to create the actual space from the image's profile
|
|
*/
|
|
|
|
if (format_str)
|
|
{
|
|
if (gimp_drawable_is_indexed (drawable_ID))
|
|
{
|
|
gint32 image_ID = gimp_item_get_image (drawable_ID);
|
|
guchar *colormap;
|
|
gint n_colors;
|
|
|
|
colormap = gimp_image_get_colormap (image_ID, &n_colors);
|
|
|
|
if (!palette_formats)
|
|
palette_formats = g_hash_table_new (g_str_hash, g_str_equal);
|
|
|
|
format = g_hash_table_lookup (palette_formats, format_str);
|
|
|
|
if (!format)
|
|
{
|
|
const Babl *palette;
|
|
const Babl *palette_alpha;
|
|
|
|
babl_new_palette (format_str, &palette, &palette_alpha);
|
|
g_hash_table_insert (palette_formats,
|
|
(gpointer) babl_get_name (palette),
|
|
(gpointer) palette);
|
|
g_hash_table_insert (palette_formats,
|
|
(gpointer) babl_get_name (palette_alpha),
|
|
(gpointer) palette_alpha);
|
|
|
|
if (gimp_drawable_has_alpha (drawable_ID))
|
|
format = palette_alpha;
|
|
else
|
|
format = palette;
|
|
}
|
|
|
|
if (colormap)
|
|
{
|
|
babl_palette_set_palette (format,
|
|
babl_format ("R'G'B' u8"),
|
|
colormap, n_colors);
|
|
g_free (colormap);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
format = babl_format (format_str);
|
|
}
|
|
|
|
g_free (format_str);
|
|
}
|
|
|
|
return format;
|
|
}
|