[gimp] Bug 726761 - Alias PIX image encoding broken
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 726761 - Alias PIX image encoding broken
- Date: Fri, 11 Apr 2014 13:13:04 +0000 (UTC)
commit b9d587c7d2534ad8ef4cc57518627f98fd0353c1
Author: Michael Natterer <mitch gimp org>
Date: Fri Apr 11 15:08:49 2014 +0200
Bug 726761 - Alias PIX image encoding broken
save_image(): use the chosen export format's bpp, not the drawable's.
Fixed exporting of > 8 bit images.
Also make the plug-in export indexed images directly (without
requiring export conversion).
plug-ins/common/file-pix.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/common/file-pix.c b/plug-ins/common/file-pix.c
index f6ff62a..e5a60bc 100644
--- a/plug-ins/common/file-pix.c
+++ b/plug-ins/common/file-pix.c
@@ -157,7 +157,7 @@ query (void)
"Michael Taylor",
"1997",
N_("Alias Pix image"),
- "RGB*, GRAY*",
+ "RGB*, GRAY*, INDEXED*",
GIMP_PLUGIN,
G_N_ELEMENTS (save_args), 0,
save_args, NULL);
@@ -236,8 +236,9 @@ run (const gchar *name,
gimp_ui_init (PLUG_IN_BINARY, FALSE);
export = gimp_export_image (&image_ID, &drawable_ID, "PIX",
- GIMP_EXPORT_CAN_HANDLE_RGB |
- GIMP_EXPORT_CAN_HANDLE_GRAY);
+ GIMP_EXPORT_CAN_HANDLE_RGB |
+ GIMP_EXPORT_CAN_HANDLE_GRAY |
+ GIMP_EXPORT_CAN_HANDLE_INDEXED);
if (export == GIMP_EXPORT_CANCEL)
{
@@ -548,14 +549,14 @@ save_image (GFile *file,
width = gegl_buffer_get_width (buffer);
height = gegl_buffer_get_height (buffer);
- savingColor = gimp_drawable_is_rgb (drawable_ID);
+ savingColor = ! gimp_drawable_is_gray (drawable_ID);
if (savingColor)
format = babl_format ("R'G'B' u8");
else
format = babl_format ("Y' u8");
- depth = gimp_drawable_bpp (drawable_ID);
+ depth = babl_format_get_bytes_per_pixel (format);
/* Write the image header */
PIX_DEBUG_PRINT ("Width %hu\n", width);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]