2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-07-05 08:34:26 -07:00
|
|
|
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
|
2003-10-11 07:30:18 -07:00
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-07-05 08:34:26 -07:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-07-05 08:34:26 -07:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2001-07-05 08:34:26 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2015-06-17 00:55:08 -07:00
|
|
|
#include <cairo.h>
|
2013-10-14 16:58:39 -07:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2008-10-09 13:24:04 -07:00
|
|
|
#include <gegl.h>
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2010-02-08 05:47:45 -08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2015-06-17 00:55:08 -07:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2005-01-25 11:11:26 -08:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2005-01-25 11:11:26 -08:00
|
|
|
#include "core-types.h"
|
2002-11-18 12:50:31 -08:00
|
|
|
|
2007-07-16 06:49:17 -07:00
|
|
|
#include "config/gimpcoreconfig.h"
|
|
|
|
|
|
2012-04-21 14:55:40 -07:00
|
|
|
#include "gegl/gimp-babl.h"
|
2012-04-06 17:43:18 -07:00
|
|
|
|
2001-07-05 08:34:26 -07:00
|
|
|
#include "gimp.h"
|
2010-02-08 06:19:03 -08:00
|
|
|
#include "gimpbuffer.h"
|
2010-02-08 05:47:45 -08:00
|
|
|
#include "gimpchannel.h"
|
2010-06-05 13:42:00 -07:00
|
|
|
#include "gimpcontext.h"
|
2016-03-07 16:38:05 -08:00
|
|
|
#include "gimpdrawable-fill.h"
|
2001-07-05 08:34:26 -07:00
|
|
|
#include "gimpimage.h"
|
2015-08-02 13:18:43 -07:00
|
|
|
#include "gimpimage-color-profile.h"
|
2010-02-08 05:47:45 -08:00
|
|
|
#include "gimpimage-colormap.h"
|
2001-07-05 08:34:26 -07:00
|
|
|
#include "gimpimage-new.h"
|
2010-02-08 05:47:45 -08:00
|
|
|
#include "gimpimage-undo.h"
|
|
|
|
|
#include "gimplayer.h"
|
2015-06-17 04:21:01 -07:00
|
|
|
#include "gimplayer-new.h"
|
2003-04-03 09:50:56 -08:00
|
|
|
#include "gimptemplate.h"
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2003-03-25 08:38:19 -08:00
|
|
|
#include "gimp-intl.h"
|
2001-07-05 08:34:26 -07:00
|
|
|
|
|
|
|
|
|
2003-04-03 09:50:56 -08:00
|
|
|
GimpTemplate *
|
2003-04-04 07:11:30 -08:00
|
|
|
gimp_image_new_get_last_template (Gimp *gimp,
|
2006-03-28 09:08:36 -08:00
|
|
|
GimpImage *image)
|
2001-07-05 08:34:26 -07:00
|
|
|
{
|
2003-04-03 09:50:56 -08:00
|
|
|
GimpTemplate *template;
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2003-04-03 09:50:56 -08:00
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
2006-03-28 09:08:36 -08:00
|
|
|
g_return_val_if_fail (image == NULL || GIMP_IS_IMAGE (image), NULL);
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2003-04-03 09:50:56 -08:00
|
|
|
template = gimp_template_new ("image new values");
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2006-03-28 09:08:36 -08:00
|
|
|
if (image)
|
2007-07-16 06:49:17 -07:00
|
|
|
{
|
|
|
|
|
gimp_config_sync (G_OBJECT (gimp->config->default_image),
|
|
|
|
|
G_OBJECT (template), 0);
|
|
|
|
|
gimp_template_set_from_image (template, image);
|
|
|
|
|
}
|
2001-07-05 08:34:26 -07:00
|
|
|
else
|
2007-07-16 06:49:17 -07:00
|
|
|
{
|
|
|
|
|
gimp_config_sync (G_OBJECT (gimp->image_new_last_template),
|
|
|
|
|
G_OBJECT (template), 0);
|
|
|
|
|
}
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2003-04-03 09:50:56 -08:00
|
|
|
return template;
|
2001-07-05 08:34:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-04-03 09:50:56 -08:00
|
|
|
gimp_image_new_set_last_template (Gimp *gimp,
|
|
|
|
|
GimpTemplate *template)
|
2001-07-05 08:34:26 -07:00
|
|
|
{
|
2003-04-03 09:50:56 -08:00
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
|
g_return_if_fail (GIMP_IS_TEMPLATE (template));
|
2001-07-05 08:34:26 -07:00
|
|
|
|
2005-04-07 03:05:54 -07:00
|
|
|
gimp_config_sync (G_OBJECT (template),
|
|
|
|
|
G_OBJECT (gimp->image_new_last_template), 0);
|
2001-07-05 08:34:26 -07:00
|
|
|
}
|
2010-02-08 05:47:45 -08:00
|
|
|
|
2010-06-05 13:42:00 -07:00
|
|
|
GimpImage *
|
|
|
|
|
gimp_image_new_from_template (Gimp *gimp,
|
|
|
|
|
GimpTemplate *template,
|
|
|
|
|
GimpContext *context)
|
|
|
|
|
{
|
2016-05-08 14:20:26 -07:00
|
|
|
GimpImage *image;
|
|
|
|
|
GimpLayer *layer;
|
|
|
|
|
GimpColorProfile *profile;
|
|
|
|
|
gint width, height;
|
|
|
|
|
gboolean has_alpha;
|
|
|
|
|
const gchar *comment;
|
2010-06-05 13:42:00 -07:00
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_TEMPLATE (template), NULL);
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
|
|
|
|
|
|
|
|
|
image = gimp_create_image (gimp,
|
2011-03-02 01:16:43 -08:00
|
|
|
gimp_template_get_width (template),
|
|
|
|
|
gimp_template_get_height (template),
|
2012-04-22 08:35:47 -07:00
|
|
|
gimp_template_get_base_type (template),
|
2012-04-22 08:42:39 -07:00
|
|
|
gimp_template_get_precision (template),
|
2010-06-05 13:42:00 -07:00
|
|
|
FALSE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_disable (image);
|
|
|
|
|
|
2011-03-02 01:16:43 -08:00
|
|
|
comment = gimp_template_get_comment (template);
|
|
|
|
|
|
|
|
|
|
if (comment)
|
2010-06-05 13:42:00 -07:00
|
|
|
{
|
|
|
|
|
GimpParasite *parasite;
|
|
|
|
|
|
|
|
|
|
parasite = gimp_parasite_new ("gimp-comment",
|
|
|
|
|
GIMP_PARASITE_PERSISTENT,
|
2011-03-02 01:16:43 -08:00
|
|
|
strlen (comment) + 1,
|
|
|
|
|
comment);
|
2010-06-05 13:42:00 -07:00
|
|
|
gimp_image_parasite_attach (image, parasite);
|
|
|
|
|
gimp_parasite_free (parasite);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gimp_image_set_resolution (image,
|
2011-03-02 01:16:43 -08:00
|
|
|
gimp_template_get_resolution_x (template),
|
|
|
|
|
gimp_template_get_resolution_y (template));
|
|
|
|
|
gimp_image_set_unit (image, gimp_template_get_resolution_unit (template));
|
2010-06-05 13:42:00 -07:00
|
|
|
|
2016-05-08 14:20:26 -07:00
|
|
|
gimp_image_set_is_color_managed (image,
|
|
|
|
|
gimp_template_get_color_managed (template),
|
|
|
|
|
FALSE);
|
|
|
|
|
profile = gimp_template_get_color_profile (template);
|
|
|
|
|
gimp_image_set_color_profile (image, profile, NULL);
|
|
|
|
|
if (profile)
|
|
|
|
|
g_object_unref (profile);
|
|
|
|
|
|
2010-06-05 13:42:00 -07:00
|
|
|
width = gimp_image_get_width (image);
|
|
|
|
|
height = gimp_image_get_height (image);
|
|
|
|
|
|
2014-06-02 16:11:32 -07:00
|
|
|
if (gimp_template_get_fill_type (template) == GIMP_FILL_TRANSPARENT)
|
2012-04-07 05:22:45 -07:00
|
|
|
has_alpha = TRUE;
|
|
|
|
|
else
|
|
|
|
|
has_alpha = FALSE;
|
2010-06-05 13:42:00 -07:00
|
|
|
|
2012-03-21 12:21:11 -07:00
|
|
|
layer = gimp_layer_new (image, width, height,
|
2012-04-07 05:22:45 -07:00
|
|
|
gimp_image_get_layer_format (image, has_alpha),
|
2010-06-05 13:42:00 -07:00
|
|
|
_("Background"),
|
2017-01-08 14:00:19 -08:00
|
|
|
GIMP_OPACITY_OPAQUE,
|
2017-08-21 11:04:25 -07:00
|
|
|
gimp_image_get_default_new_layer_mode (image));
|
2010-06-05 13:42:00 -07:00
|
|
|
|
2014-06-03 05:11:59 -07:00
|
|
|
gimp_drawable_fill (GIMP_DRAWABLE (layer),
|
|
|
|
|
context, gimp_template_get_fill_type (template));
|
2010-06-05 13:42:00 -07:00
|
|
|
|
|
|
|
|
gimp_image_add_layer (image, layer, NULL, 0, FALSE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_enable (image);
|
|
|
|
|
gimp_image_clean_all (image);
|
|
|
|
|
|
|
|
|
|
return image;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 05:47:45 -08:00
|
|
|
GimpImage *
|
|
|
|
|
gimp_image_new_from_drawable (Gimp *gimp,
|
|
|
|
|
GimpDrawable *drawable)
|
|
|
|
|
{
|
|
|
|
|
GimpItem *item;
|
|
|
|
|
GimpImage *image;
|
|
|
|
|
GimpImage *new_image;
|
|
|
|
|
GimpLayer *new_layer;
|
|
|
|
|
GType new_type;
|
|
|
|
|
gint off_x, off_y;
|
|
|
|
|
GimpImageBaseType type;
|
|
|
|
|
gdouble xres;
|
|
|
|
|
gdouble yres;
|
2016-05-03 03:51:52 -07:00
|
|
|
GimpColorProfile *profile;
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
|
|
|
|
|
|
|
|
|
item = GIMP_ITEM (drawable);
|
|
|
|
|
image = gimp_item_get_image (item);
|
|
|
|
|
|
2012-04-06 16:51:08 -07:00
|
|
|
type = gimp_drawable_get_base_type (drawable);
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
new_image = gimp_create_image (gimp,
|
|
|
|
|
gimp_item_get_width (item),
|
|
|
|
|
gimp_item_get_height (item),
|
2012-04-22 08:31:32 -07:00
|
|
|
type,
|
|
|
|
|
gimp_drawable_get_precision (drawable),
|
|
|
|
|
TRUE);
|
2010-02-08 05:47:45 -08:00
|
|
|
gimp_image_undo_disable (new_image);
|
|
|
|
|
|
|
|
|
|
if (type == GIMP_INDEXED)
|
|
|
|
|
gimp_image_set_colormap (new_image,
|
|
|
|
|
gimp_image_get_colormap (image),
|
|
|
|
|
gimp_image_get_colormap_size (image),
|
|
|
|
|
FALSE);
|
|
|
|
|
|
|
|
|
|
gimp_image_get_resolution (image, &xres, &yres);
|
|
|
|
|
gimp_image_set_resolution (new_image, xres, yres);
|
|
|
|
|
gimp_image_set_unit (new_image, gimp_image_get_unit (image));
|
|
|
|
|
|
2016-05-08 10:46:35 -07:00
|
|
|
gimp_image_set_is_color_managed (new_image,
|
|
|
|
|
gimp_image_get_is_color_managed (image),
|
|
|
|
|
FALSE);
|
2016-05-03 03:51:52 -07:00
|
|
|
profile = gimp_color_managed_get_color_profile (GIMP_COLOR_MANAGED (drawable));
|
|
|
|
|
gimp_image_set_color_profile (new_image, profile, NULL);
|
2015-06-17 00:55:08 -07:00
|
|
|
|
2016-05-03 03:51:52 -07:00
|
|
|
if (GIMP_IS_LAYER (drawable))
|
|
|
|
|
new_type = G_TYPE_FROM_INSTANCE (drawable);
|
2010-02-08 05:47:45 -08:00
|
|
|
else
|
2016-05-03 03:51:52 -07:00
|
|
|
new_type = GIMP_TYPE_LAYER;
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
new_layer = GIMP_LAYER (gimp_item_convert (GIMP_ITEM (drawable),
|
|
|
|
|
new_image, new_type));
|
|
|
|
|
|
|
|
|
|
gimp_object_set_name (GIMP_OBJECT (new_layer),
|
|
|
|
|
gimp_object_get_name (drawable));
|
|
|
|
|
|
|
|
|
|
gimp_item_get_offset (GIMP_ITEM (new_layer), &off_x, &off_y);
|
|
|
|
|
gimp_item_translate (GIMP_ITEM (new_layer), -off_x, -off_y, FALSE);
|
|
|
|
|
gimp_item_set_visible (GIMP_ITEM (new_layer), TRUE, FALSE);
|
|
|
|
|
gimp_item_set_linked (GIMP_ITEM (new_layer), FALSE, FALSE);
|
2017-08-20 04:45:42 -07:00
|
|
|
gimp_layer_set_mode (new_layer,
|
2017-08-21 11:04:25 -07:00
|
|
|
gimp_image_get_default_new_layer_mode (new_image),
|
2017-08-20 04:45:42 -07:00
|
|
|
FALSE);
|
2010-02-08 05:47:45 -08:00
|
|
|
gimp_layer_set_opacity (new_layer, GIMP_OPACITY_OPAQUE, FALSE);
|
2016-09-17 10:19:30 -07:00
|
|
|
if (gimp_layer_can_lock_alpha (new_layer))
|
|
|
|
|
gimp_layer_set_lock_alpha (new_layer, FALSE, FALSE);
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
gimp_image_add_layer (new_image, new_layer, NULL, 0, TRUE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_enable (new_image);
|
|
|
|
|
|
|
|
|
|
return new_image;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GimpImage *
|
|
|
|
|
gimp_image_new_from_component (Gimp *gimp,
|
|
|
|
|
GimpImage *image,
|
|
|
|
|
GimpChannelType component)
|
|
|
|
|
{
|
|
|
|
|
GimpImage *new_image;
|
|
|
|
|
GimpChannel *channel;
|
|
|
|
|
GimpLayer *layer;
|
|
|
|
|
const gchar *desc;
|
|
|
|
|
gdouble xres;
|
|
|
|
|
gdouble yres;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
|
|
|
|
|
|
|
|
|
new_image = gimp_create_image (gimp,
|
|
|
|
|
gimp_image_get_width (image),
|
|
|
|
|
gimp_image_get_height (image),
|
2012-04-22 08:31:32 -07:00
|
|
|
GIMP_GRAY,
|
|
|
|
|
gimp_image_get_precision (image),
|
|
|
|
|
TRUE);
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
gimp_image_undo_disable (new_image);
|
|
|
|
|
|
|
|
|
|
gimp_image_get_resolution (image, &xres, &yres);
|
|
|
|
|
gimp_image_set_resolution (new_image, xres, yres);
|
|
|
|
|
gimp_image_set_unit (new_image, gimp_image_get_unit (image));
|
|
|
|
|
|
|
|
|
|
channel = gimp_channel_new_from_component (image, component, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
layer = GIMP_LAYER (gimp_item_convert (GIMP_ITEM (channel),
|
|
|
|
|
new_image, GIMP_TYPE_LAYER));
|
|
|
|
|
g_object_unref (channel);
|
|
|
|
|
|
|
|
|
|
gimp_enum_get_value (GIMP_TYPE_CHANNEL_TYPE, component,
|
|
|
|
|
NULL, NULL, &desc, NULL);
|
|
|
|
|
gimp_object_take_name (GIMP_OBJECT (layer),
|
|
|
|
|
g_strdup_printf (_("%s Channel Copy"), desc));
|
|
|
|
|
|
|
|
|
|
gimp_image_add_layer (new_image, layer, NULL, 0, TRUE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_enable (new_image);
|
|
|
|
|
|
|
|
|
|
return new_image;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 06:19:03 -08:00
|
|
|
GimpImage *
|
|
|
|
|
gimp_image_new_from_buffer (Gimp *gimp,
|
2017-05-01 09:36:33 -07:00
|
|
|
GimpBuffer *buffer)
|
2010-02-08 06:19:03 -08:00
|
|
|
{
|
2015-08-16 04:14:56 -07:00
|
|
|
GimpImage *image;
|
|
|
|
|
GimpLayer *layer;
|
|
|
|
|
const Babl *format;
|
|
|
|
|
gboolean has_alpha;
|
2017-05-01 09:36:33 -07:00
|
|
|
gdouble res_x;
|
|
|
|
|
gdouble res_y;
|
2015-08-16 04:14:56 -07:00
|
|
|
GimpColorProfile *profile;
|
2010-02-08 06:19:03 -08:00
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
2017-05-01 09:36:33 -07:00
|
|
|
g_return_val_if_fail (GIMP_IS_BUFFER (buffer), NULL);
|
2010-02-08 06:19:03 -08:00
|
|
|
|
2017-05-01 09:36:33 -07:00
|
|
|
format = gimp_buffer_get_format (buffer);
|
2012-04-06 17:43:18 -07:00
|
|
|
has_alpha = babl_format_has_alpha (format);
|
2010-02-08 06:19:03 -08:00
|
|
|
|
|
|
|
|
image = gimp_create_image (gimp,
|
2017-05-01 09:36:33 -07:00
|
|
|
gimp_buffer_get_width (buffer),
|
|
|
|
|
gimp_buffer_get_height (buffer),
|
2012-04-06 17:43:18 -07:00
|
|
|
gimp_babl_format_get_base_type (format),
|
2012-04-22 08:31:32 -07:00
|
|
|
gimp_babl_format_get_precision (format),
|
2010-02-08 06:19:03 -08:00
|
|
|
TRUE);
|
|
|
|
|
gimp_image_undo_disable (image);
|
|
|
|
|
|
2017-05-01 09:36:33 -07:00
|
|
|
if (gimp_buffer_get_resolution (buffer, &res_x, &res_y))
|
2010-02-08 06:19:03 -08:00
|
|
|
{
|
2017-05-01 09:36:33 -07:00
|
|
|
gimp_image_set_resolution (image, res_x, res_y);
|
|
|
|
|
gimp_image_set_unit (image, gimp_buffer_get_unit (buffer));
|
2010-02-08 06:19:03 -08:00
|
|
|
}
|
|
|
|
|
|
2017-05-01 09:36:33 -07:00
|
|
|
profile = gimp_buffer_get_color_profile (buffer);
|
2016-05-03 03:51:52 -07:00
|
|
|
gimp_image_set_color_profile (image, profile, NULL);
|
2015-06-17 00:55:08 -07:00
|
|
|
|
2017-05-01 09:36:33 -07:00
|
|
|
layer = gimp_layer_new_from_buffer (buffer, image,
|
2012-04-06 17:43:18 -07:00
|
|
|
gimp_image_get_layer_format (image,
|
|
|
|
|
has_alpha),
|
2012-03-14 15:09:36 -07:00
|
|
|
_("Pasted Layer"),
|
2017-01-08 14:00:19 -08:00
|
|
|
GIMP_OPACITY_OPAQUE,
|
2017-08-21 11:04:25 -07:00
|
|
|
gimp_image_get_default_new_layer_mode (image));
|
2010-02-08 06:19:03 -08:00
|
|
|
|
|
|
|
|
gimp_image_add_layer (image, layer, NULL, 0, TRUE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_enable (image);
|
|
|
|
|
|
|
|
|
|
return image;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 05:47:45 -08:00
|
|
|
GimpImage *
|
|
|
|
|
gimp_image_new_from_pixbuf (Gimp *gimp,
|
|
|
|
|
GdkPixbuf *pixbuf,
|
|
|
|
|
const gchar *layer_name)
|
|
|
|
|
{
|
2012-04-06 16:51:08 -07:00
|
|
|
GimpImage *new_image;
|
|
|
|
|
GimpLayer *layer;
|
|
|
|
|
GimpImageBaseType base_type;
|
2016-02-12 13:48:59 -08:00
|
|
|
gboolean has_alpha = FALSE;
|
2015-06-17 00:55:08 -07:00
|
|
|
guint8 *icc_data;
|
|
|
|
|
gsize icc_len;
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), NULL);
|
|
|
|
|
|
|
|
|
|
switch (gdk_pixbuf_get_n_channels (pixbuf))
|
|
|
|
|
{
|
2012-04-06 16:51:08 -07:00
|
|
|
case 2: has_alpha = TRUE;
|
|
|
|
|
case 1: base_type = GIMP_GRAY;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 4: has_alpha = TRUE;
|
|
|
|
|
case 3: base_type = GIMP_RGB;
|
2010-02-08 05:47:45 -08:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
g_return_val_if_reached (NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new_image = gimp_create_image (gimp,
|
|
|
|
|
gdk_pixbuf_get_width (pixbuf),
|
|
|
|
|
gdk_pixbuf_get_height (pixbuf),
|
2012-04-06 16:51:08 -07:00
|
|
|
base_type,
|
2013-06-23 07:51:24 -07:00
|
|
|
GIMP_PRECISION_U8_GAMMA,
|
2010-02-08 05:47:45 -08:00
|
|
|
FALSE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_disable (new_image);
|
|
|
|
|
|
2015-06-17 00:55:08 -07:00
|
|
|
icc_data = gimp_pixbuf_get_icc_profile (pixbuf, &icc_len);
|
|
|
|
|
if (icc_data)
|
|
|
|
|
{
|
|
|
|
|
gimp_image_set_icc_profile (new_image, icc_data, icc_len, NULL);
|
|
|
|
|
g_free (icc_data);
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-21 12:21:11 -07:00
|
|
|
layer = gimp_layer_new_from_pixbuf (pixbuf, new_image,
|
2012-04-06 16:51:08 -07:00
|
|
|
gimp_image_get_layer_format (new_image,
|
|
|
|
|
has_alpha),
|
2010-02-08 05:47:45 -08:00
|
|
|
layer_name,
|
2017-01-08 14:00:19 -08:00
|
|
|
GIMP_OPACITY_OPAQUE,
|
2017-08-21 11:04:25 -07:00
|
|
|
gimp_image_get_default_new_layer_mode (new_image));
|
2010-02-08 05:47:45 -08:00
|
|
|
|
|
|
|
|
gimp_image_add_layer (new_image, layer, NULL, 0, TRUE);
|
|
|
|
|
|
|
|
|
|
gimp_image_undo_enable (new_image);
|
|
|
|
|
|
|
|
|
|
return new_image;
|
|
|
|
|
}
|