823 lines
25 KiB
C
823 lines
25 KiB
C
/* 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
|
||
*
|
||
* 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 <https://www.gnu.org/licenses/>.
|
||
*/
|
||
|
||
/* WMF loading file filter for PIKA
|
||
* -Dom Lachowicz <cinamod@hotmail.com> 2003
|
||
* -Francis James Franklin <fjf@alinameridon.com>
|
||
*/
|
||
|
||
#include "config.h"
|
||
|
||
#include <libwmf/api.h>
|
||
#include <libwmf/gd.h>
|
||
|
||
#include <libpika/pika.h>
|
||
#include <libpika/pikaui.h>
|
||
#include <libpikamath/pikamath.h>
|
||
|
||
#include "libpika/stdplugins-intl.h"
|
||
|
||
|
||
#define LOAD_PROC "file-wmf-load"
|
||
#define LOAD_THUMB_PROC "file-wmf-load-thumb"
|
||
#define PLUG_IN_BINARY "file-wmf"
|
||
#define PLUG_IN_ROLE "pika-file-wmf"
|
||
|
||
#define WMF_DEFAULT_RESOLUTION 300.0
|
||
#define WMF_DEFAULT_SIZE 500
|
||
#define WMF_PREVIEW_SIZE 128
|
||
|
||
|
||
typedef struct
|
||
{
|
||
gdouble resolution;
|
||
gint width;
|
||
gint height;
|
||
} WmfLoadVals;
|
||
|
||
|
||
typedef struct _Wmf Wmf;
|
||
typedef struct _WmfClass WmfClass;
|
||
|
||
struct _Wmf
|
||
{
|
||
PikaPlugIn parent_instance;
|
||
};
|
||
|
||
struct _WmfClass
|
||
{
|
||
PikaPlugInClass parent_class;
|
||
};
|
||
|
||
|
||
#define WMF_TYPE (wmf_get_type ())
|
||
#define WMF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), WMF_TYPE, Wmf))
|
||
|
||
GType wmf_get_type (void) G_GNUC_CONST;
|
||
|
||
static GList * wmf_query_procedures (PikaPlugIn *plug_in);
|
||
static PikaProcedure * wmf_create_procedure (PikaPlugIn *plug_in,
|
||
const gchar *name);
|
||
|
||
static PikaValueArray * wmf_load (PikaProcedure *procedure,
|
||
PikaRunMode run_mode,
|
||
GFile *file,
|
||
PikaMetadata *metadata,
|
||
PikaMetadataLoadFlags *flags,
|
||
PikaProcedureConfig *config,
|
||
gpointer run_data);
|
||
static PikaValueArray * wmf_load_thumb (PikaProcedure *procedure,
|
||
GFile *file,
|
||
gint size,
|
||
PikaProcedureConfig *config,
|
||
gpointer run_data);
|
||
|
||
static PikaImage * load_image (GFile *file,
|
||
gint requested_width,
|
||
gint requested_height,
|
||
gdouble resolution,
|
||
GError **error);
|
||
static gboolean load_wmf_size (GFile *file,
|
||
WmfLoadVals *vals);
|
||
static gboolean load_dialog (GFile *file,
|
||
PikaProcedure *procedure,
|
||
PikaProcedureConfig *config);
|
||
static guchar * wmf_get_pixbuf (GFile *file,
|
||
gint *width,
|
||
gint *height);
|
||
static guchar * wmf_load_file (GFile *file,
|
||
gint requested_width,
|
||
gint requested_height,
|
||
gdouble resolution,
|
||
guint *width,
|
||
guint *height,
|
||
GError **error);
|
||
|
||
|
||
G_DEFINE_TYPE (Wmf, wmf, PIKA_TYPE_PLUG_IN)
|
||
|
||
PIKA_MAIN (WMF_TYPE)
|
||
DEFINE_STD_SET_I18N
|
||
|
||
|
||
static void
|
||
wmf_class_init (WmfClass *klass)
|
||
{
|
||
PikaPlugInClass *plug_in_class = PIKA_PLUG_IN_CLASS (klass);
|
||
|
||
plug_in_class->query_procedures = wmf_query_procedures;
|
||
plug_in_class->create_procedure = wmf_create_procedure;
|
||
plug_in_class->set_i18n = STD_SET_I18N;
|
||
}
|
||
|
||
static void
|
||
wmf_init (Wmf *wmf)
|
||
{
|
||
}
|
||
|
||
static GList *
|
||
wmf_query_procedures (PikaPlugIn *plug_in)
|
||
{
|
||
GList *list = NULL;
|
||
|
||
list = g_list_append (list, g_strdup (LOAD_THUMB_PROC));
|
||
list = g_list_append (list, g_strdup (LOAD_PROC));
|
||
|
||
return list;
|
||
}
|
||
|
||
static PikaProcedure *
|
||
wmf_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,
|
||
wmf_load, NULL, NULL);
|
||
|
||
pika_procedure_set_menu_label (procedure, _("Microsoft WMF file"));
|
||
|
||
pika_procedure_set_documentation (procedure,
|
||
"Loads files in the WMF file format",
|
||
"Loads files in the WMF file format",
|
||
name);
|
||
pika_procedure_set_attribution (procedure,
|
||
"Dom Lachowicz <cinamod@hotmail.com>",
|
||
"Dom Lachowicz <cinamod@hotmail.com>",
|
||
"(c) 2003 - Version 0.3.0");
|
||
|
||
pika_file_procedure_set_mime_types (PIKA_FILE_PROCEDURE (procedure),
|
||
"image/x-wmf");
|
||
pika_file_procedure_set_extensions (PIKA_FILE_PROCEDURE (procedure),
|
||
"wmf,apm");
|
||
pika_file_procedure_set_magics (PIKA_FILE_PROCEDURE (procedure),
|
||
"0,string,\\327\\315\\306\\232,0,string,\\1\\0\\11\\0");
|
||
|
||
pika_load_procedure_set_thumbnail_loader (PIKA_LOAD_PROCEDURE (procedure),
|
||
LOAD_THUMB_PROC);
|
||
|
||
PIKA_PROC_ARG_DOUBLE (procedure, "resolution",
|
||
"Resolution",
|
||
"Resolution to use for rendering the WMF",
|
||
PIKA_MIN_RESOLUTION, PIKA_MAX_RESOLUTION,
|
||
WMF_DEFAULT_RESOLUTION,
|
||
G_PARAM_READWRITE);
|
||
|
||
PIKA_PROC_ARG_INT (procedure, "width",
|
||
"Width",
|
||
"Width (in pixels) to load the WMF in, "
|
||
"0 for original width",
|
||
0, PIKA_MAX_IMAGE_SIZE, 0,
|
||
G_PARAM_READWRITE);
|
||
|
||
PIKA_PROC_ARG_INT (procedure, "height",
|
||
"Height",
|
||
"Height (in pixels) to load the WMF in, "
|
||
"0 for original height",
|
||
0, PIKA_MAX_IMAGE_SIZE, 0,
|
||
G_PARAM_READWRITE);
|
||
}
|
||
else if (! strcmp (name, LOAD_THUMB_PROC))
|
||
{
|
||
procedure = pika_thumbnail_procedure_new (plug_in, name,
|
||
PIKA_PDB_PROC_TYPE_PLUGIN,
|
||
wmf_load_thumb, NULL, NULL);
|
||
|
||
pika_procedure_set_documentation (procedure,
|
||
"Loads a small preview from a WMF image",
|
||
"",
|
||
name);
|
||
pika_procedure_set_attribution (procedure,
|
||
"Dom Lachowicz <cinamod@hotmail.com>",
|
||
"Dom Lachowicz <cinamod@hotmail.com>",
|
||
"(c) 2003 - Version 0.3.0");
|
||
}
|
||
|
||
return procedure;
|
||
}
|
||
|
||
static PikaValueArray *
|
||
wmf_load (PikaProcedure *procedure,
|
||
PikaRunMode run_mode,
|
||
GFile *file,
|
||
PikaMetadata *metadata,
|
||
PikaMetadataLoadFlags *flags,
|
||
PikaProcedureConfig *config,
|
||
gpointer run_data)
|
||
{
|
||
PikaValueArray *return_vals;
|
||
PikaImage *image;
|
||
GError *error = NULL;
|
||
gdouble resolution;
|
||
gint width;
|
||
gint height;
|
||
|
||
gegl_init (NULL, NULL);
|
||
|
||
if (run_mode == PIKA_RUN_INTERACTIVE && ! load_dialog (file, procedure, config))
|
||
return pika_procedure_new_return_values (procedure,
|
||
PIKA_PDB_CANCEL,
|
||
NULL);
|
||
|
||
g_object_get (config,
|
||
"resolution", &resolution,
|
||
"width", &width,
|
||
"height", &height,
|
||
NULL);
|
||
image = load_image (file, width, height, resolution, &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 *
|
||
wmf_load_thumb (PikaProcedure *procedure,
|
||
GFile *file,
|
||
gint size,
|
||
PikaProcedureConfig *config,
|
||
gpointer run_data)
|
||
{
|
||
PikaValueArray *return_vals;
|
||
PikaImage *image;
|
||
gint width = 0;
|
||
gint height = 0;
|
||
GError *error = NULL;
|
||
WmfLoadVals load_vals = { WMF_DEFAULT_RESOLUTION, 0, 0, };
|
||
|
||
gegl_init (NULL, NULL);
|
||
|
||
if (load_wmf_size (file, &load_vals) &&
|
||
load_vals.width > 0 &&
|
||
load_vals.height > 0)
|
||
{
|
||
width = load_vals.width;
|
||
height = load_vals.height;
|
||
|
||
if ((gdouble) load_vals.width > (gdouble) load_vals.height)
|
||
{
|
||
load_vals.height *= (size / (gdouble) load_vals.width);
|
||
load_vals.width = size;
|
||
}
|
||
else
|
||
{
|
||
load_vals.width *= size / (gdouble) load_vals.height;
|
||
load_vals.height = size;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
return pika_procedure_new_return_values (procedure,
|
||
PIKA_PDB_EXECUTION_ERROR,
|
||
NULL);
|
||
}
|
||
|
||
image = load_image (file, load_vals.width, load_vals.height, load_vals.resolution, &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);
|
||
PIKA_VALUES_SET_INT (return_vals, 2, width);
|
||
PIKA_VALUES_SET_INT (return_vals, 3, height);
|
||
|
||
pika_value_array_truncate (return_vals, 4);
|
||
|
||
return return_vals;
|
||
}
|
||
|
||
|
||
static GtkWidget *size_label = NULL;
|
||
|
||
|
||
/* This function retrieves the pixel size from a WMF file. */
|
||
static gboolean
|
||
load_wmf_size (GFile *file,
|
||
WmfLoadVals *vals)
|
||
{
|
||
GMappedFile *mapped;
|
||
/* the bits we need to decode the WMF via libwmf2's GD layer */
|
||
wmf_error_t err;
|
||
gulong flags;
|
||
wmf_gd_t *ddata = NULL;
|
||
wmfAPI *API = NULL;
|
||
wmfAPI_Options api_options;
|
||
wmfD_Rect bbox;
|
||
guint width = -1;
|
||
guint height = -1;
|
||
gboolean success = TRUE;
|
||
char* wmffontdirs[2] = { NULL, NULL };
|
||
|
||
mapped = g_mapped_file_new (g_file_peek_path (file), FALSE, NULL);
|
||
|
||
if (! mapped)
|
||
return FALSE;
|
||
|
||
flags = WMF_OPT_IGNORE_NONFATAL | WMF_OPT_FUNCTION;
|
||
api_options.function = wmf_gd_function;
|
||
|
||
#ifdef ENABLE_RELOCATABLE_RESOURCES
|
||
wmffontdirs[0] = g_build_filename (pika_installation_directory (),
|
||
"share/libwmf/fonts", NULL);
|
||
flags |= WMF_OPT_FONTDIRS;
|
||
api_options.fontdirs = wmffontdirs;
|
||
#endif
|
||
|
||
err = wmf_api_create (&API, flags, &api_options);
|
||
if (wmffontdirs[0])
|
||
g_free (wmffontdirs[0]);
|
||
if (err != wmf_E_None)
|
||
success = FALSE;
|
||
|
||
ddata = WMF_GD_GetData (API);
|
||
ddata->type = wmf_gd_image;
|
||
|
||
err = wmf_mem_open (API,
|
||
(guchar *) g_mapped_file_get_contents (mapped),
|
||
g_mapped_file_get_length (mapped));
|
||
if (err != wmf_E_None)
|
||
success = FALSE;
|
||
|
||
err = wmf_scan (API, 0, &bbox);
|
||
if (err != wmf_E_None)
|
||
success = FALSE;
|
||
|
||
err = wmf_display_size (API, &width, &height,
|
||
vals->resolution, vals->resolution);
|
||
if (err != wmf_E_None || width <= 0 || height <= 0)
|
||
success = FALSE;
|
||
|
||
wmf_mem_close (API);
|
||
g_mapped_file_unref (mapped);
|
||
|
||
if (width < 1 || height < 1)
|
||
{
|
||
width = WMF_DEFAULT_SIZE;
|
||
height = WMF_DEFAULT_SIZE;
|
||
|
||
if (size_label)
|
||
gtk_label_set_text (GTK_LABEL (size_label),
|
||
_("WMF file does not\nspecify a size!"));
|
||
}
|
||
else
|
||
{
|
||
if (size_label)
|
||
{
|
||
gchar *text = g_strdup_printf (_("%d × %d"), width, height);
|
||
|
||
gtk_label_set_text (GTK_LABEL (size_label), text);
|
||
g_free (text);
|
||
}
|
||
}
|
||
|
||
vals->width = width;
|
||
vals->height = height;
|
||
|
||
return success;
|
||
}
|
||
|
||
|
||
/* User interface */
|
||
|
||
static void
|
||
wmf_preview_callback (GtkWidget *widget,
|
||
GtkAllocation *allocation,
|
||
guchar *pixels)
|
||
{
|
||
pika_preview_area_draw (PIKA_PREVIEW_AREA (widget),
|
||
0, 0, allocation->width, allocation->height,
|
||
PIKA_RGBA_IMAGE,
|
||
pixels, allocation->width * 4);
|
||
}
|
||
|
||
static gboolean
|
||
load_dialog (GFile *file,
|
||
PikaProcedure *procedure,
|
||
PikaProcedureConfig *config)
|
||
{
|
||
GtkWidget *dialog;
|
||
GtkWidget *main_hbox;
|
||
GtkWidget *vbox;
|
||
GtkWidget *frame;
|
||
GtkWidget *image;
|
||
guchar *pixels;
|
||
gboolean run = FALSE;
|
||
WmfLoadVals vals;
|
||
|
||
pika_ui_init (PLUG_IN_BINARY);
|
||
|
||
dialog = pika_procedure_dialog_new (PIKA_PROCEDURE (procedure),
|
||
PIKA_PROCEDURE_CONFIG (config),
|
||
_("Render Windows Metafile"));
|
||
|
||
/* TODO: we'll want to have a special widget (or even procedure argument type)
|
||
* for dimensions (showing units, possibility to link dimensions and so on).
|
||
* TODO 2: in the old version, there used to be X and Y ratio fields which
|
||
* could be constrained/linked (or not) and would sync back and forth with the
|
||
* width/height fields. Are these needed? If so, should we try to automatize
|
||
* such UI when editing dimensions?
|
||
*/
|
||
pika_procedure_dialog_fill_box (PIKA_PROCEDURE_DIALOG (dialog),
|
||
"vbox-arguments",
|
||
"width", "height", "resolution",
|
||
NULL);
|
||
main_hbox = pika_procedure_dialog_fill_box (PIKA_PROCEDURE_DIALOG (dialog), "main-hbox",
|
||
"vbox-arguments", NULL);
|
||
gtk_orientable_set_orientation (GTK_ORIENTABLE (main_hbox), GTK_ORIENTATION_HORIZONTAL);
|
||
|
||
/* The WMF preview */
|
||
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
|
||
gtk_box_pack_start (GTK_BOX (main_hbox), vbox, FALSE, FALSE, 0);
|
||
gtk_box_reorder_child (GTK_BOX (main_hbox), vbox, 0);
|
||
gtk_widget_show (vbox);
|
||
|
||
frame = gtk_frame_new (NULL);
|
||
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
|
||
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
||
gtk_widget_show (frame);
|
||
|
||
vals.width = - WMF_PREVIEW_SIZE;
|
||
vals.height = - WMF_PREVIEW_SIZE;
|
||
pixels = wmf_get_pixbuf (file, &vals.width, &vals.height);
|
||
image = pika_preview_area_new ();
|
||
gtk_widget_set_size_request (image, vals.width, vals.height);
|
||
gtk_container_add (GTK_CONTAINER (frame), image);
|
||
gtk_widget_show (image);
|
||
|
||
g_signal_connect (image, "size-allocate",
|
||
G_CALLBACK (wmf_preview_callback),
|
||
pixels);
|
||
|
||
size_label = gtk_label_new (NULL);
|
||
gtk_label_set_justify (GTK_LABEL (size_label), GTK_JUSTIFY_CENTER);
|
||
gtk_box_pack_start (GTK_BOX (vbox), size_label, TRUE, TRUE, 4);
|
||
gtk_widget_show (size_label);
|
||
|
||
/* query the initial size after the size label is created */
|
||
g_object_get (config, "resolution", &vals.resolution, NULL);
|
||
load_wmf_size (file, &vals);
|
||
g_object_set (config,
|
||
"width", vals.width,
|
||
"height", vals.height,
|
||
NULL);
|
||
|
||
/* Complete the dialog. */
|
||
pika_procedure_dialog_fill (PIKA_PROCEDURE_DIALOG (dialog), "main-hbox", NULL);
|
||
run = pika_procedure_dialog_run (PIKA_PROCEDURE_DIALOG (dialog));
|
||
|
||
gtk_widget_destroy (dialog);
|
||
|
||
return run;
|
||
}
|
||
|
||
static guchar *
|
||
pixbuf_gd_convert (const gint *gd_pixels,
|
||
gint width,
|
||
gint height)
|
||
{
|
||
const gint *gd_ptr = gd_pixels;
|
||
guchar *pixels;
|
||
guchar *px_ptr;
|
||
gint i, j;
|
||
|
||
pixels = (guchar *) g_try_malloc (width * height * sizeof (guchar) * 4);
|
||
if (! pixels)
|
||
return NULL;
|
||
|
||
px_ptr = pixels;
|
||
|
||
for (i = 0; i < height; i++)
|
||
for (j = 0; j < width; j++)
|
||
{
|
||
guchar r, g, b, a;
|
||
guint pixel = (guint) (*gd_ptr++);
|
||
|
||
b = (guchar) (pixel & 0xff);
|
||
pixel >>= 8;
|
||
g = (guchar) (pixel & 0xff);
|
||
pixel >>= 8;
|
||
r = (guchar) (pixel & 0xff);
|
||
pixel >>= 7;
|
||
a = (guchar) (pixel & 0xfe);
|
||
a ^= 0xff;
|
||
|
||
*px_ptr++ = r;
|
||
*px_ptr++ = g;
|
||
*px_ptr++ = b;
|
||
*px_ptr++ = a;
|
||
}
|
||
|
||
return pixels;
|
||
}
|
||
|
||
static guchar *
|
||
wmf_get_pixbuf (GFile *file,
|
||
gint *width,
|
||
gint *height)
|
||
{
|
||
GMappedFile *mapped;
|
||
guchar *pixels = NULL;
|
||
|
||
/* the bits we need to decode the WMF via libwmf2's GD layer */
|
||
wmf_error_t err;
|
||
gulong flags;
|
||
wmf_gd_t *ddata = NULL;
|
||
wmfAPI *API = NULL;
|
||
wmfAPI_Options api_options;
|
||
guint file_width;
|
||
guint file_height;
|
||
wmfD_Rect bbox;
|
||
gint *gd_pixels = NULL;
|
||
char* wmffontdirs[2] = { NULL, NULL };
|
||
|
||
mapped = g_mapped_file_new (g_file_peek_path (file), FALSE, NULL);
|
||
|
||
if (! mapped)
|
||
return NULL;
|
||
|
||
flags = WMF_OPT_IGNORE_NONFATAL | WMF_OPT_FUNCTION;
|
||
api_options.function = wmf_gd_function;
|
||
|
||
#ifdef ENABLE_RELOCATABLE_RESOURCES
|
||
wmffontdirs[0] = g_build_filename (pika_installation_directory (),
|
||
"share/libwmf/fonts", NULL);
|
||
flags |= WMF_OPT_FONTDIRS;
|
||
api_options.fontdirs = wmffontdirs;
|
||
#endif
|
||
|
||
err = wmf_api_create (&API, flags, &api_options);
|
||
if (wmffontdirs[0])
|
||
g_free (wmffontdirs[0]);
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
ddata = WMF_GD_GetData (API);
|
||
ddata->type = wmf_gd_image;
|
||
|
||
err = wmf_mem_open (API,
|
||
(guchar *) g_mapped_file_get_contents (mapped),
|
||
g_mapped_file_get_length (mapped));
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
err = wmf_scan (API, 0, &bbox);
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
err = wmf_display_size (API, &file_width, &file_height,
|
||
WMF_DEFAULT_RESOLUTION, WMF_DEFAULT_RESOLUTION);
|
||
if (err != wmf_E_None || file_width <= 0 || file_height <= 0)
|
||
goto _wmf_error;
|
||
|
||
if (!*width || !*height)
|
||
goto _wmf_error;
|
||
|
||
/* either both arguments negative or none */
|
||
if ((*width * *height) < 0)
|
||
goto _wmf_error;
|
||
|
||
ddata->bbox = bbox;
|
||
|
||
if (*width > 0)
|
||
{
|
||
ddata->width = *width;
|
||
ddata->height = *height;
|
||
}
|
||
else
|
||
{
|
||
gdouble w = file_width;
|
||
gdouble h = file_height;
|
||
gdouble aspect = ((gdouble) *width) / (gdouble) *height;
|
||
|
||
if (aspect > (w / h))
|
||
{
|
||
ddata->height = abs (*height);
|
||
ddata->width = (gdouble) abs (*width) * (w / h) + 0.5;
|
||
}
|
||
else
|
||
{
|
||
ddata->width = abs (*width);
|
||
ddata->height = (gdouble) abs (*height) / (w / h) + 0.5;
|
||
}
|
||
}
|
||
|
||
err = wmf_play (API, 0, &bbox);
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
if (ddata->gd_image != NULL)
|
||
gd_pixels = wmf_gd_image_pixels (ddata->gd_image);
|
||
if (gd_pixels == NULL)
|
||
goto _wmf_error;
|
||
|
||
pixels = pixbuf_gd_convert (gd_pixels, ddata->width, ddata->height);
|
||
if (pixels == NULL)
|
||
goto _wmf_error;
|
||
|
||
*width = ddata->width;
|
||
*height = ddata->height;
|
||
|
||
_wmf_error:
|
||
if (API)
|
||
{
|
||
wmf_mem_close (API);
|
||
wmf_api_destroy (API);
|
||
}
|
||
|
||
g_mapped_file_unref (mapped);
|
||
|
||
return pixels;
|
||
}
|
||
|
||
static guchar *
|
||
wmf_load_file (GFile *file,
|
||
gint requested_width,
|
||
gint requested_height,
|
||
gdouble resolution,
|
||
guint *width,
|
||
guint *height,
|
||
GError **error)
|
||
{
|
||
GMappedFile *mapped;
|
||
guchar *pixels = NULL;
|
||
|
||
/* the bits we need to decode the WMF via libwmf2's GD layer */
|
||
wmf_error_t err;
|
||
gulong flags;
|
||
wmf_gd_t *ddata = NULL;
|
||
wmfAPI *API = NULL;
|
||
wmfAPI_Options api_options;
|
||
wmfD_Rect bbox;
|
||
gint *gd_pixels = NULL;
|
||
char* wmffontdirs[2] = { NULL, NULL };
|
||
|
||
*width = *height = -1;
|
||
|
||
mapped = g_mapped_file_new (g_file_peek_path (file), FALSE, NULL);
|
||
|
||
if (! mapped)
|
||
return NULL;
|
||
|
||
flags = WMF_OPT_IGNORE_NONFATAL | WMF_OPT_FUNCTION;
|
||
api_options.function = wmf_gd_function;
|
||
|
||
#ifdef ENABLE_RELOCATABLE_RESOURCES
|
||
wmffontdirs[0] = g_build_filename (pika_installation_directory (),
|
||
"share/libwmf/fonts/", NULL);
|
||
flags |= WMF_OPT_FONTDIRS;
|
||
api_options.fontdirs = wmffontdirs;
|
||
#endif
|
||
|
||
err = wmf_api_create (&API, flags, &api_options);
|
||
if (wmffontdirs[0])
|
||
g_free (wmffontdirs[0]);
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
ddata = WMF_GD_GetData (API);
|
||
ddata->type = wmf_gd_image;
|
||
|
||
err = wmf_mem_open (API,
|
||
(guchar *) g_mapped_file_get_contents (mapped),
|
||
g_mapped_file_get_length (mapped));
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
err = wmf_scan (API, 0, &bbox);
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
err = wmf_display_size (API,
|
||
width, height,
|
||
resolution, resolution);
|
||
if (err != wmf_E_None || *width <= 0 || *height <= 0)
|
||
goto _wmf_error;
|
||
|
||
if (requested_width > 0 && requested_height > 0)
|
||
{
|
||
*width = requested_width;
|
||
*height = requested_height;
|
||
}
|
||
|
||
ddata->bbox = bbox;
|
||
ddata->width = *width;
|
||
ddata->height = *height;
|
||
|
||
err = wmf_play (API, 0, &bbox);
|
||
if (err != wmf_E_None)
|
||
goto _wmf_error;
|
||
|
||
if (ddata->gd_image != NULL)
|
||
gd_pixels = wmf_gd_image_pixels (ddata->gd_image);
|
||
if (gd_pixels == NULL)
|
||
goto _wmf_error;
|
||
|
||
pixels = pixbuf_gd_convert (gd_pixels, *width, *height);
|
||
if (pixels == NULL)
|
||
goto _wmf_error;
|
||
|
||
_wmf_error:
|
||
if (API)
|
||
{
|
||
wmf_mem_close (API);
|
||
wmf_api_destroy (API);
|
||
}
|
||
|
||
g_mapped_file_unref (mapped);
|
||
|
||
/* FIXME: improve error message */
|
||
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
|
||
_("Could not open '%s' for reading"),
|
||
pika_file_get_utf8_name (file));
|
||
|
||
return pixels;
|
||
}
|
||
|
||
/*
|
||
* 'load_image()' - Load a WMF image into a new image window.
|
||
*/
|
||
static PikaImage *
|
||
load_image (GFile *file,
|
||
gint requested_width,
|
||
gint requested_height,
|
||
gdouble resolution,
|
||
GError **error)
|
||
{
|
||
PikaImage *image;
|
||
PikaLayer *layer;
|
||
GeglBuffer *buffer;
|
||
guchar *pixels;
|
||
guint width, height;
|
||
|
||
pika_progress_init_printf (_("Opening '%s'"),
|
||
pika_file_get_utf8_name (file));
|
||
|
||
pixels = wmf_load_file (file, requested_width, requested_height, resolution,
|
||
&width, &height, error);
|
||
|
||
if (! pixels)
|
||
return NULL;
|
||
|
||
image = pika_image_new (width, height, PIKA_RGB);
|
||
pika_image_set_resolution (image, resolution, resolution);
|
||
|
||
layer = pika_layer_new (image,
|
||
_("Rendered WMF"),
|
||
width, height,
|
||
PIKA_RGBA_IMAGE,
|
||
100,
|
||
pika_image_get_default_new_layer_mode (image));
|
||
|
||
buffer = pika_drawable_get_buffer (PIKA_DRAWABLE (layer));
|
||
|
||
gegl_buffer_set (buffer, GEGL_RECTANGLE (0, 0, width, height), 0,
|
||
babl_format ("R'G'B'A u8"),
|
||
pixels, GEGL_AUTO_ROWSTRIDE);
|
||
|
||
g_object_unref (buffer);
|
||
|
||
g_free (pixels);
|
||
|
||
pika_image_insert_layer (image, layer, NULL, 0);
|
||
|
||
pika_progress_update (1.0);
|
||
|
||
return image;
|
||
}
|