/* PIKA - Photo and Image Kooker Application * a rebranding of The GNU Image Manipulation Program (created with heckimp) * A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio * * Original copyright, applying to most contents (license remains unchanged): * Copyright (C) 1995 Spencer Kimball and Peter Mattis * Alias|Wavefront pix/matte image reading and writing code * Copyright (C) 1997 Mike Taylor * (email: mtaylor@aw.sgi.com, WWW: http://reality.sgi.com/mtaylor) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (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 * along with this program. If not, see . * */ /* This plug-in was written using the online documentation from * Alias|Wavefront Inc's PowerAnimator product. * * Bug reports or suggestions should be e-mailed to mtaylor@aw.sgi.com */ /* Event history: * V 1.0, MT, 02-Jul-97: initial version of plug-in * V 1.1, MT, 04-Dec-97: added .als file extension */ /* Features * - loads and exports * - 24-bit (.pix) * - 8-bit (.matte, .alpha, or .mask) images * * NOTE: pix and matte files do not support alpha channels or indexed * color, so neither does this plug-in */ #include "config.h" #include #include #include #include #include #include "libpika/stdplugins-intl.h" #define LOAD_PROC "file-pix-load" #define SAVE_PROC "file-pix-save" #define PLUG_IN_BINARY "file-pix" #define PLUG_IN_ROLE "pika-file-pix" /* #define PIX_DEBUG */ #ifdef PIX_DEBUG # define PIX_DEBUG_PRINT(a,b) g_printerr (a,b) #else # define PIX_DEBUG_PRINT(a,b) #endif typedef struct _Pix Pix; typedef struct _PixClass PixClass; struct _Pix { PikaPlugIn parent_instance; }; struct _PixClass { PikaPlugInClass parent_class; }; #define PIX_TYPE (pix_get_type ()) #define PIX (obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PIX_TYPE, Pix)) GType pix_get_type (void) G_GNUC_CONST; static GList * pix_query_procedures (PikaPlugIn *plug_in); static PikaProcedure * pix_create_procedure (PikaPlugIn *plug_in, const gchar *name); static PikaValueArray * pix_load (PikaProcedure *procedure, PikaRunMode run_mode, GFile *file, const PikaValueArray *args, gpointer run_data); static PikaValueArray * pix_save (PikaProcedure *procedure, PikaRunMode run_mode, PikaImage *image, gint n_drawables, PikaDrawable **drawables, GFile *file, const PikaValueArray *args, gpointer run_data); static PikaImage * load_image (GFile *file, GError **error); static gboolean save_image (GFile *file, PikaImage *image, PikaDrawable *drawable, GError **error); static gboolean get_short (GInputStream *input, guint16 *value, GError **error); static gboolean put_short (GOutputStream *output, guint16 value, GError **error); G_DEFINE_TYPE (Pix, pix, PIKA_TYPE_PLUG_IN) PIKA_MAIN (PIX_TYPE) DEFINE_STD_SET_I18N static void pix_class_init (PixClass *klass) { PikaPlugInClass *plug_in_class = PIKA_PLUG_IN_CLASS (klass); plug_in_class->query_procedures = pix_query_procedures; plug_in_class->create_procedure = pix_create_procedure; plug_in_class->set_i18n = STD_SET_I18N; } static void pix_init (Pix *pix) { } static GList * pix_query_procedures (PikaPlugIn *plug_in) { GList *list = NULL; list = g_list_append (list, g_strdup (LOAD_PROC)); list = g_list_append (list, g_strdup (SAVE_PROC)); return list; } static PikaProcedure * pix_create_procedure (PikaPlugIn *plug_in, const gchar *name) { PikaProcedure *procedure = NULL; if (! strcmp (name, LOAD_PROC)) { procedure = pika_load_procedure_new (plug_in, name, PIKA_PDB_PROC_TYPE_PLUGIN, pix_load, NULL, NULL); pika_file_procedure_set_handles_remote (PIKA_FILE_PROCEDURE (procedure), TRUE); pika_procedure_set_menu_label (procedure, _("Alias Pix image")); pika_procedure_set_documentation (procedure, "Loads files of the Alias|Wavefront " "Pix file format", "Loads files of the Alias|Wavefront " "Pix file format", name); pika_procedure_set_attribution (procedure, "Michael Taylor", "Michael Taylor", "1997"); pika_file_procedure_set_extensions (PIKA_FILE_PROCEDURE (procedure), "pix,matte,mask,alpha,als"); } else if (! strcmp (name, SAVE_PROC)) { procedure = pika_save_procedure_new (plug_in, name, PIKA_PDB_PROC_TYPE_PLUGIN, pix_save, NULL, NULL); pika_procedure_set_image_types (procedure, "*"); pika_file_procedure_set_handles_remote (PIKA_FILE_PROCEDURE (procedure), TRUE); pika_procedure_set_menu_label (procedure, _("Alias Pix image")); pika_procedure_set_documentation (procedure, "Export file in the Alias|Wavefront " "pix/matte file format", "Export file in the Alias|Wavefront " "pix/matte file format", name); pika_procedure_set_attribution (procedure, "Michael Taylor", "Michael Taylor", "1997"); pika_file_procedure_set_extensions (PIKA_FILE_PROCEDURE (procedure), "pix,matte,mask,alpha,als"); } return procedure; } static PikaValueArray * pix_load (PikaProcedure *procedure, PikaRunMode run_mode, GFile *file, const PikaValueArray *args, gpointer run_data) { PikaValueArray *return_vals; PikaImage *image; GError *error = NULL; gegl_init (NULL, NULL); image = load_image (file, &error); if (! image) return pika_procedure_new_return_values (procedure, PIKA_PDB_EXECUTION_ERROR, error); return_vals = pika_procedure_new_return_values (procedure, PIKA_PDB_SUCCESS, NULL); PIKA_VALUES_SET_IMAGE (return_vals, 1, image); return return_vals; } static PikaValueArray * pix_save (PikaProcedure *procedure, PikaRunMode run_mode, PikaImage *image, gint n_drawables, PikaDrawable **drawables, GFile *file, const PikaValueArray *args, gpointer run_data) { PikaPDBStatusType status = PIKA_PDB_SUCCESS; PikaExportReturn export = PIKA_EXPORT_CANCEL; GError *error = NULL; gegl_init (NULL, NULL); switch (run_mode) { case PIKA_RUN_INTERACTIVE: case PIKA_RUN_WITH_LAST_VALS: pika_ui_init (PLUG_IN_BINARY); export = pika_export_image (&image, &n_drawables, &drawables, "PIX", PIKA_EXPORT_CAN_HANDLE_RGB | PIKA_EXPORT_CAN_HANDLE_GRAY | PIKA_EXPORT_CAN_HANDLE_INDEXED); if (export == PIKA_EXPORT_CANCEL) return pika_procedure_new_return_values (procedure, PIKA_PDB_CANCEL, NULL); break; default: break; } if (n_drawables != 1) { g_set_error (&error, G_FILE_ERROR, 0, _("PIX format does not support multiple layers.")); return pika_procedure_new_return_values (procedure, PIKA_PDB_CALLING_ERROR, error); } if (! save_image (file, image, drawables[0], &error)) { status = PIKA_PDB_EXECUTION_ERROR; } if (export == PIKA_EXPORT_EXPORT) { pika_image_delete (image); g_free (drawables); } return pika_procedure_new_return_values (procedure, status, error); } /* * Description: * Reads a 16-bit integer from a file in such a way that the machine's * byte order should not matter. */ static gboolean get_short (GInputStream *input, guint16 *value, GError **error) { guchar buf[2]; gsize bytes_read; if (! g_input_stream_read_all (input, buf, 2, &bytes_read, NULL, error) || bytes_read != 2) { return FALSE; } if (value) *value = (buf[0] << 8) + buf[1]; return TRUE; } /* * Description: * Writes a 16-bit integer to a file in such a way that the machine's * byte order should not matter. */ static gboolean put_short (GOutputStream *output, guint16 value, GError **error) { guchar buf[2]; buf[0] = (value >> 8) & 0xFF; buf[1] = value & 0xFF; return g_output_stream_write_all (output, buf, 2, NULL, NULL, error); } /* * Description: * load the given image into pika * * Arguments: * filename - name on the file to read * * Return Value: * Image id for the loaded image * */ static PikaImage * load_image (GFile *file, GError **error) { GInputStream *input; GeglBuffer *buffer; PikaImageBaseType imgtype; PikaImageType gdtype; guchar *dest; guchar *dest_base; PikaImage *image; PikaLayer *layer; gushort width, height, depth; gint i, j, tile_height, row; PIX_DEBUG_PRINT ("Opening file: %s\n", pika_file_get_utf8_name (file)); pika_progress_init_printf (_("Opening '%s'"), g_file_get_parse_name (file)); input = G_INPUT_STREAM (g_file_read (file, NULL, error)); if (! input) return NULL; /* Read header information */ if (! get_short (input, &width, error) || ! get_short (input, &height, error) || ! get_short (input, NULL, error) || /* Discard obsolete field */ ! get_short (input, NULL, error) || /* Discard obsolete field */ ! get_short (input, &depth, error)) { g_object_unref (input); return NULL; } PIX_DEBUG_PRINT ("Width %hu\n", width); PIX_DEBUG_PRINT ("Height %hu\n", height); if (depth == 8) { /* Loading a matte file */ imgtype = PIKA_GRAY; gdtype = PIKA_GRAY_IMAGE; } else if (depth == 24) { /* Loading an RGB file */ imgtype = PIKA_RGB; gdtype = PIKA_RGB_IMAGE; } else { /* Header is invalid */ g_object_unref (input); return NULL; } image = pika_image_new (width, height, imgtype); layer = pika_layer_new (image, _("Background"), width, height, gdtype, 100, pika_image_get_default_new_layer_mode (image)); pika_image_insert_layer (image, layer, NULL, 0); buffer = pika_drawable_get_buffer (PIKA_DRAWABLE (layer)); tile_height = pika_tile_height (); if (depth == 24) { /* Read a 24-bit Pix image */ dest_base = dest = g_new (guchar, 3 * width * tile_height); for (i = 0; i < height;) { for (dest = dest_base, row = 0; row < tile_height && i < height; i++, row++) { guchar record[4]; gsize bytes_read; guchar count; /* Read a row of the image */ j = 0; while (j < width) { if (! g_input_stream_read_all (input, record, 4, &bytes_read, NULL, error) || bytes_read != 4) break; for (count = 0; count < record[0]; ++count) { dest[0] = record[3]; dest[1] = record[2]; dest[2] = record[1]; dest += 3; j++; if (j >= width) break; } } } gegl_buffer_set (buffer, GEGL_RECTANGLE (0, i - row, width, row), 0, NULL, dest_base, GEGL_AUTO_ROWSTRIDE); pika_progress_update ((double) i / (double) height); } g_free (dest_base); } else { /* Read an 8-bit Matte image */ dest_base = dest = g_new (guchar, width * tile_height); for (i = 0; i < height;) { for (dest = dest_base, row = 0; row < tile_height && i < height; i++, row++) { guchar record[2]; gsize bytes_read; guchar count; /* Read a row of the image */ j = 0; while (j < width) { if (! g_input_stream_read_all (input, record, 2, &bytes_read, NULL, error) || bytes_read != 2) break; for (count = 0; count < record[0]; ++count) { dest[j] = record[1]; j++; if (j >= width) break; } } dest += width; } gegl_buffer_set (buffer, GEGL_RECTANGLE (0, i - row, width, row), 0, NULL, dest_base, GEGL_AUTO_ROWSTRIDE); pika_progress_update ((double) i / (double) height); } g_free (dest_base); } g_object_unref (buffer); g_object_unref (input); pika_progress_update (1.0); return image; } /* * Description: * save the given file out as an alias pix or matte file * * Arguments: * filename - name of file to save to * image - image to save * drawable - current drawable */ static gboolean save_image (GFile *file, PikaImage *image, PikaDrawable *drawable, GError **error) { GOutputStream *output; GeglBuffer *buffer; const Babl *format; GCancellable *cancellable; gint width; gint height; gint depth, i, j, row, tile_height, rectHeight; gboolean savingColor = TRUE; guchar *src; guchar *src_base; pika_progress_init_printf (_("Exporting '%s'"), g_file_get_parse_name (file)); output = G_OUTPUT_STREAM (g_file_replace (file, NULL, FALSE, G_FILE_CREATE_NONE, NULL, error)); if (! output) return FALSE; /* Get info about image */ buffer = pika_drawable_get_buffer (drawable); width = gegl_buffer_get_width (buffer); height = gegl_buffer_get_height (buffer); savingColor = ! pika_drawable_is_gray (drawable); if (savingColor) format = babl_format ("R'G'B' u8"); else format = babl_format ("Y' u8"); depth = babl_format_get_bytes_per_pixel (format); /* Write the image header */ PIX_DEBUG_PRINT ("Width %hu\n", width); PIX_DEBUG_PRINT ("Height %hu\n", height); if (! put_short (output, width, error) || ! put_short (output, height, error) || ! put_short (output, 0, error) || ! put_short (output, 0, error)) { cancellable = g_cancellable_new (); g_cancellable_cancel (cancellable); g_output_stream_close (output, cancellable, NULL); g_object_unref (cancellable); g_object_unref (output); g_object_unref (buffer); return FALSE; } tile_height = pika_tile_height (); src_base = g_new (guchar, tile_height * width * depth); if (savingColor) { /* Writing a 24-bit Pix image */ if (! put_short (output, 24, error)) goto fail; for (i = 0; i < height;) { rectHeight = (tile_height < (height - i)) ? tile_height : (height - i); gegl_buffer_get (buffer, GEGL_RECTANGLE (0, i, width, rectHeight), 1.0, format, src_base, GEGL_AUTO_ROWSTRIDE, GEGL_ABYSS_NONE); for (src = src_base, row = 0; row < tile_height && i < height; i += 1, row += 1) { /* Write a row of the image */ guchar record[4]; record[0] = 1; record[3] = src[0]; record[2] = src[1]; record[1] = src[2]; src += depth; for (j = 1; j < width; ++j) { if ((record[3] != src[0]) || (record[2] != src[1]) || (record[1] != src[2]) || (record[0] == 255)) { /* Write current RLE record and start a new one */ if (! g_output_stream_write_all (output, record, 4, NULL, NULL, error)) { goto fail; } record[0] = 1; record[3] = src[0]; record[2] = src[1]; record[1] = src[2]; } else { /* increment run length in current record */ record[0]++; } src += depth; } /* Write last record in row */ if (! g_output_stream_write_all (output, record, 4, NULL, NULL, error)) { goto fail; } } pika_progress_update ((double) i / (double) height); } } else { /* Writing a 8-bit Matte (Mask) image */ if (! put_short (output, 8, error)) goto fail; for (i = 0; i < height;) { rectHeight = (tile_height < (height - i)) ? tile_height : (height - i); gegl_buffer_get (buffer, GEGL_RECTANGLE (0, i, width, rectHeight), 1.0, format, src_base, GEGL_AUTO_ROWSTRIDE, GEGL_ABYSS_NONE); for (src = src_base, row = 0; row < tile_height && i < height; i += 1, row += 1) { /* Write a row of the image */ guchar record[2]; record[0] = 1; record[1] = src[0]; src += depth; for (j = 1; j < width; ++j) { if ((record[1] != src[0]) || (record[0] == 255)) { /* Write current RLE record and start a new one */ if (! g_output_stream_write_all (output, record, 2, NULL, NULL, error)) { goto fail; } record[0] = 1; record[1] = src[0]; } else { /* increment run length in current record */ record[0] ++; } src += depth; } /* Write last record in row */ if (! g_output_stream_write_all (output, record, 2, NULL, NULL, error)) { goto fail; } } pika_progress_update ((double) i / (double) height); } } g_free (src_base); g_object_unref (output); g_object_unref (buffer); pika_progress_update (1.0); return TRUE; fail: cancellable = g_cancellable_new (); g_cancellable_cancel (cancellable); g_output_stream_close (output, cancellable, NULL); g_object_unref (cancellable); g_free (src_base); g_object_unref (output); g_object_unref (buffer); return FALSE; }