1065 lines
32 KiB
C
1065 lines
32 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 90.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,
|
|||
|
const PikaValueArray *args,
|
|||
|
gpointer run_data);
|
|||
|
static PikaValueArray * wmf_load_thumb (PikaProcedure *procedure,
|
|||
|
GFile *file,
|
|||
|
gint size,
|
|||
|
const PikaValueArray *args,
|
|||
|
gpointer run_data);
|
|||
|
|
|||
|
static PikaImage * load_image (GFile *file,
|
|||
|
GError **error);
|
|||
|
static gboolean load_wmf_size (GFile *file,
|
|||
|
WmfLoadVals *vals);
|
|||
|
static gboolean load_dialog (GFile *file);
|
|||
|
static guchar * wmf_get_pixbuf (GFile *file,
|
|||
|
gint *width,
|
|||
|
gint *height);
|
|||
|
static guchar * wmf_load_file (GFile *file,
|
|||
|
guint *width,
|
|||
|
guint *height,
|
|||
|
GError **error);
|
|||
|
|
|||
|
|
|||
|
G_DEFINE_TYPE (Wmf, wmf, PIKA_TYPE_PLUG_IN)
|
|||
|
|
|||
|
PIKA_MAIN (WMF_TYPE)
|
|||
|
DEFINE_STD_SET_I18N
|
|||
|
|
|||
|
|
|||
|
static WmfLoadVals load_vals =
|
|||
|
{
|
|||
|
WMF_DEFAULT_RESOLUTION,
|
|||
|
0,
|
|||
|
0,
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
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,
|
|||
|
const PikaValueArray *args,
|
|||
|
gpointer run_data)
|
|||
|
{
|
|||
|
PikaValueArray *return_vals;
|
|||
|
PikaImage *image;
|
|||
|
GError *error = NULL;
|
|||
|
|
|||
|
gegl_init (NULL, NULL);
|
|||
|
|
|||
|
switch (run_mode)
|
|||
|
{
|
|||
|
case PIKA_RUN_NONINTERACTIVE:
|
|||
|
load_vals.resolution = PIKA_VALUES_GET_DOUBLE (args, 0);
|
|||
|
load_vals.width = PIKA_VALUES_GET_INT (args, 1);
|
|||
|
load_vals.height = PIKA_VALUES_GET_INT (args, 2);
|
|||
|
break;
|
|||
|
|
|||
|
case PIKA_RUN_INTERACTIVE:
|
|||
|
pika_get_data (LOAD_PROC, &load_vals);
|
|||
|
if (! load_dialog (file))
|
|||
|
return pika_procedure_new_return_values (procedure,
|
|||
|
PIKA_PDB_CANCEL,
|
|||
|
NULL);
|
|||
|
break;
|
|||
|
|
|||
|
case PIKA_RUN_WITH_LAST_VALS:
|
|||
|
pika_get_data (LOAD_PROC, &load_vals);
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
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 *
|
|||
|
wmf_load_thumb (PikaProcedure *procedure,
|
|||
|
GFile *file,
|
|||
|
gint size,
|
|||
|
const PikaValueArray *args,
|
|||
|
gpointer run_data)
|
|||
|
{
|
|||
|
PikaValueArray *return_vals;
|
|||
|
PikaImage *image;
|
|||
|
gint width;
|
|||
|
gint height;
|
|||
|
GError *error = NULL;
|
|||
|
|
|||
|
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.width = size;
|
|||
|
load_vals.height *= size / (gdouble) load_vals.width;
|
|||
|
}
|
|||
|
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, &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 PikaSizeEntry *size = NULL;
|
|||
|
static GtkAdjustment *xadj = NULL;
|
|||
|
static GtkAdjustment *yadj = NULL;
|
|||
|
static GtkWidget *constrain = NULL;
|
|||
|
static gdouble ratio_x = 1.0;
|
|||
|
static gdouble ratio_y = 1.0;
|
|||
|
static gint wmf_width = 0;
|
|||
|
static gint wmf_height = 0;
|
|||
|
|
|||
|
static void load_dialog_set_ratio (gdouble x,
|
|||
|
gdouble y);
|
|||
|
|
|||
|
|
|||
|
static void
|
|||
|
load_dialog_size_callback (GtkWidget *widget,
|
|||
|
gpointer data)
|
|||
|
{
|
|||
|
if (pika_chain_button_get_active (PIKA_CHAIN_BUTTON (constrain)))
|
|||
|
{
|
|||
|
gdouble x = pika_size_entry_get_refval (size, 0) / (gdouble) wmf_width;
|
|||
|
gdouble y = pika_size_entry_get_refval (size, 1) / (gdouble) wmf_height;
|
|||
|
|
|||
|
if (x != ratio_x)
|
|||
|
{
|
|||
|
load_dialog_set_ratio (x, x);
|
|||
|
}
|
|||
|
else if (y != ratio_y)
|
|||
|
{
|
|||
|
load_dialog_set_ratio (y, y);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
static void
|
|||
|
load_dialog_ratio_callback (GtkAdjustment *adj,
|
|||
|
gpointer data)
|
|||
|
{
|
|||
|
gdouble x = gtk_adjustment_get_value (xadj);
|
|||
|
gdouble y = gtk_adjustment_get_value (yadj);
|
|||
|
|
|||
|
if (pika_chain_button_get_active (PIKA_CHAIN_BUTTON (constrain)))
|
|||
|
{
|
|||
|
if (x != ratio_x)
|
|||
|
y = x;
|
|||
|
else
|
|||
|
x = y;
|
|||
|
}
|
|||
|
|
|||
|
load_dialog_set_ratio (x, y);
|
|||
|
}
|
|||
|
|
|||
|
static void
|
|||
|
load_dialog_resolution_callback (PikaSizeEntry *res,
|
|||
|
GFile *file)
|
|||
|
{
|
|||
|
WmfLoadVals vals = { 0.0, 0, 0 };
|
|||
|
|
|||
|
load_vals.resolution = vals.resolution = pika_size_entry_get_refval (res, 0);
|
|||
|
|
|||
|
if (! load_wmf_size (file, &vals))
|
|||
|
return;
|
|||
|
|
|||
|
wmf_width = vals.width;
|
|||
|
wmf_height = vals.height;
|
|||
|
|
|||
|
load_dialog_set_ratio (ratio_x, ratio_y);
|
|||
|
}
|
|||
|
|
|||
|
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 void
|
|||
|
load_dialog_set_ratio (gdouble x,
|
|||
|
gdouble y)
|
|||
|
{
|
|||
|
ratio_x = x;
|
|||
|
ratio_y = y;
|
|||
|
|
|||
|
g_signal_handlers_block_by_func (size, load_dialog_size_callback, NULL);
|
|||
|
|
|||
|
pika_size_entry_set_refval (size, 0, wmf_width * x);
|
|||
|
pika_size_entry_set_refval (size, 1, wmf_height * y);
|
|||
|
|
|||
|
g_signal_handlers_unblock_by_func (size, load_dialog_size_callback, NULL);
|
|||
|
|
|||
|
g_signal_handlers_block_by_func (xadj, load_dialog_ratio_callback, NULL);
|
|||
|
g_signal_handlers_block_by_func (yadj, load_dialog_ratio_callback, NULL);
|
|||
|
|
|||
|
gtk_adjustment_set_value (xadj, x);
|
|||
|
gtk_adjustment_set_value (yadj, y);
|
|||
|
|
|||
|
g_signal_handlers_unblock_by_func (xadj, load_dialog_ratio_callback, NULL);
|
|||
|
g_signal_handlers_unblock_by_func (yadj, load_dialog_ratio_callback, NULL);
|
|||
|
}
|
|||
|
|
|||
|
static gboolean
|
|||
|
load_dialog (GFile *file)
|
|||
|
{
|
|||
|
GtkWidget *dialog;
|
|||
|
GtkWidget *frame;
|
|||
|
GtkWidget *hbox;
|
|||
|
GtkWidget *vbox;
|
|||
|
GtkWidget *image;
|
|||
|
GtkWidget *grid;
|
|||
|
GtkWidget *grid2;
|
|||
|
GtkWidget *res;
|
|||
|
GtkWidget *label;
|
|||
|
GtkWidget *spinbutton;
|
|||
|
GtkAdjustment *adj;
|
|||
|
guchar *pixels;
|
|||
|
gboolean run = FALSE;
|
|||
|
|
|||
|
WmfLoadVals vals = { WMF_DEFAULT_RESOLUTION,
|
|||
|
- WMF_PREVIEW_SIZE, - WMF_PREVIEW_SIZE };
|
|||
|
|
|||
|
pika_ui_init (PLUG_IN_BINARY);
|
|||
|
|
|||
|
dialog = pika_dialog_new (_("Render Windows Metafile"), PLUG_IN_ROLE,
|
|||
|
NULL, 0,
|
|||
|
pika_standard_help_func, LOAD_PROC,
|
|||
|
|
|||
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|||
|
_("_OK"), GTK_RESPONSE_OK,
|
|||
|
|
|||
|
NULL);
|
|||
|
|
|||
|
pika_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
|||
|
GTK_RESPONSE_OK,
|
|||
|
GTK_RESPONSE_CANCEL,
|
|||
|
-1);
|
|||
|
|
|||
|
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
|
|||
|
|
|||
|
pika_window_set_transient (GTK_WINDOW (dialog));
|
|||
|
|
|||
|
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
|
|||
|
gtk_container_set_border_width (GTK_CONTAINER (hbox), 12);
|
|||
|
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
|
|||
|
hbox, TRUE, TRUE, 0);
|
|||
|
gtk_widget_show (hbox);
|
|||
|
|
|||
|
/* The WMF preview */
|
|||
|
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
|
|||
|
gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, 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);
|
|||
|
|
|||
|
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 */
|
|||
|
vals.resolution = load_vals.resolution;
|
|||
|
|
|||
|
load_wmf_size (file, &vals);
|
|||
|
|
|||
|
wmf_width = vals.width;
|
|||
|
wmf_height = vals.height;
|
|||
|
|
|||
|
grid = gtk_grid_new ();
|
|||
|
gtk_grid_set_row_spacing (GTK_GRID (grid), 6);
|
|||
|
gtk_grid_set_column_spacing (GTK_GRID (grid), 6);
|
|||
|
gtk_box_pack_start (GTK_BOX (hbox), grid, TRUE, TRUE, 0);
|
|||
|
gtk_widget_show (grid);
|
|||
|
|
|||
|
/* Width and Height */
|
|||
|
label = gtk_label_new (_("Width:"));
|
|||
|
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1);
|
|||
|
gtk_widget_show (label);
|
|||
|
|
|||
|
label = gtk_label_new (_("Height:"));
|
|||
|
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), label, 0, 1, 1, 1);
|
|||
|
gtk_widget_show (label);
|
|||
|
|
|||
|
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), hbox, 1, 0, 1, 1);
|
|||
|
gtk_widget_show (hbox);
|
|||
|
|
|||
|
adj = gtk_adjustment_new (1, 1, 1, 1, 10, 0);
|
|||
|
spinbutton = pika_spin_button_new (adj, 1.0, 2);
|
|||
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|||
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
|||
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
|||
|
gtk_widget_show (spinbutton);
|
|||
|
|
|||
|
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), hbox, 1, 1, 1, 1);
|
|||
|
gtk_widget_show (hbox);
|
|||
|
|
|||
|
size = PIKA_SIZE_ENTRY (pika_size_entry_new (1, PIKA_UNIT_PIXEL, "%a",
|
|||
|
TRUE, FALSE, FALSE, 10,
|
|||
|
PIKA_SIZE_ENTRY_UPDATE_SIZE));
|
|||
|
|
|||
|
pika_size_entry_add_field (size, GTK_SPIN_BUTTON (spinbutton), NULL);
|
|||
|
|
|||
|
gtk_box_pack_start (GTK_BOX (hbox), GTK_WIDGET (size), FALSE, FALSE, 0);
|
|||
|
gtk_widget_show (GTK_WIDGET (size));
|
|||
|
|
|||
|
pika_size_entry_set_refval_boundaries (size, 0,
|
|||
|
PIKA_MIN_IMAGE_SIZE,
|
|||
|
PIKA_MAX_IMAGE_SIZE);
|
|||
|
pika_size_entry_set_refval_boundaries (size, 1,
|
|||
|
PIKA_MIN_IMAGE_SIZE,
|
|||
|
PIKA_MAX_IMAGE_SIZE);
|
|||
|
|
|||
|
pika_size_entry_set_refval (size, 0, wmf_width);
|
|||
|
pika_size_entry_set_refval (size, 1, wmf_height);
|
|||
|
|
|||
|
pika_size_entry_set_resolution (size, 0, load_vals.resolution, FALSE);
|
|||
|
pika_size_entry_set_resolution (size, 1, load_vals.resolution, FALSE);
|
|||
|
|
|||
|
g_signal_connect (size, "value-changed",
|
|||
|
G_CALLBACK (load_dialog_size_callback),
|
|||
|
NULL);
|
|||
|
|
|||
|
/* Scale ratio */
|
|||
|
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), hbox, 1, 2, 1, 2);
|
|||
|
gtk_widget_show (hbox);
|
|||
|
|
|||
|
grid2 = gtk_grid_new ();
|
|||
|
gtk_box_pack_start (GTK_BOX (hbox), grid2, FALSE, FALSE, 0);
|
|||
|
|
|||
|
xadj = gtk_adjustment_new (ratio_x,
|
|||
|
(gdouble) PIKA_MIN_IMAGE_SIZE / (gdouble) wmf_width,
|
|||
|
(gdouble) PIKA_MAX_IMAGE_SIZE / (gdouble) wmf_width,
|
|||
|
0.01, 0.1, 0);
|
|||
|
spinbutton = pika_spin_button_new (xadj, 0.01, 4);
|
|||
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|||
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
|||
|
gtk_grid_attach (GTK_GRID (grid2), spinbutton, 0, 0, 1, 1);
|
|||
|
gtk_widget_show (spinbutton);
|
|||
|
|
|||
|
g_signal_connect (xadj, "value-changed",
|
|||
|
G_CALLBACK (load_dialog_ratio_callback),
|
|||
|
NULL);
|
|||
|
|
|||
|
label = gtk_label_new_with_mnemonic (_("_X ratio:"));
|
|||
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), spinbutton);
|
|||
|
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), label, 0, 2, 1, 1);
|
|||
|
gtk_widget_show (label);
|
|||
|
|
|||
|
yadj = gtk_adjustment_new (ratio_y,
|
|||
|
(gdouble) PIKA_MIN_IMAGE_SIZE / (gdouble) wmf_height,
|
|||
|
(gdouble) PIKA_MAX_IMAGE_SIZE / (gdouble) wmf_height,
|
|||
|
0.01, 0.1, 0);
|
|||
|
spinbutton = pika_spin_button_new (yadj, 0.01, 4);
|
|||
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|||
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
|||
|
gtk_grid_attach (GTK_GRID (grid2), spinbutton, 0, 1, 1, 1);
|
|||
|
gtk_widget_show (spinbutton);
|
|||
|
|
|||
|
g_signal_connect (yadj, "value-changed",
|
|||
|
G_CALLBACK (load_dialog_ratio_callback),
|
|||
|
NULL);
|
|||
|
|
|||
|
label = gtk_label_new_with_mnemonic (_("_Y ratio:"));
|
|||
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), spinbutton);
|
|||
|
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), label, 0, 3, 1, 1);
|
|||
|
gtk_widget_show (label);
|
|||
|
|
|||
|
/* the constrain ratio chainbutton */
|
|||
|
constrain = pika_chain_button_new (PIKA_CHAIN_RIGHT);
|
|||
|
pika_chain_button_set_active (PIKA_CHAIN_BUTTON (constrain), TRUE);
|
|||
|
gtk_grid_attach (GTK_GRID (grid2), constrain, 1, 0, 1, 2);
|
|||
|
gtk_widget_show (constrain);
|
|||
|
|
|||
|
pika_help_set_help_data (pika_chain_button_get_button (PIKA_CHAIN_BUTTON (constrain)),
|
|||
|
_("Constrain aspect ratio"), NULL);
|
|||
|
|
|||
|
gtk_widget_show (grid2);
|
|||
|
|
|||
|
/* Resolution */
|
|||
|
label = gtk_label_new (_("Resolution:"));
|
|||
|
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
|
|||
|
gtk_grid_attach (GTK_GRID (grid), label, 0, 4, 1, 1);
|
|||
|
gtk_widget_show (label);
|
|||
|
|
|||
|
res = pika_size_entry_new (1, PIKA_UNIT_INCH, _("pixels/%a"),
|
|||
|
FALSE, FALSE, FALSE, 10,
|
|||
|
PIKA_SIZE_ENTRY_UPDATE_RESOLUTION);
|
|||
|
|
|||
|
gtk_grid_attach (GTK_GRID (grid), res, 1, 4, 1, 1);
|
|||
|
gtk_widget_show (res);
|
|||
|
|
|||
|
/* don't let the resolution become too small ? does libwmf tend to
|
|||
|
crash with very small resolutions */
|
|||
|
pika_size_entry_set_refval_boundaries (PIKA_SIZE_ENTRY (res), 0,
|
|||
|
5.0, PIKA_MAX_RESOLUTION);
|
|||
|
pika_size_entry_set_refval (PIKA_SIZE_ENTRY (res), 0, load_vals.resolution);
|
|||
|
|
|||
|
g_signal_connect (res, "value-changed",
|
|||
|
G_CALLBACK (load_dialog_resolution_callback),
|
|||
|
file);
|
|||
|
|
|||
|
gtk_widget_show (dialog);
|
|||
|
|
|||
|
if (pika_dialog_run (PIKA_DIALOG (dialog)) == GTK_RESPONSE_OK)
|
|||
|
{
|
|||
|
load_vals.width = ROUND (pika_size_entry_get_refval (size, 0));
|
|||
|
load_vals.height = ROUND (pika_size_entry_get_refval (size, 1));
|
|||
|
run = TRUE;
|
|||
|
}
|
|||
|
|
|||
|
gtk_widget_destroy (GTK_WIDGET (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,
|
|||
|
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,
|
|||
|
load_vals.resolution, load_vals.resolution);
|
|||
|
if (err != wmf_E_None || *width <= 0 || *height <= 0)
|
|||
|
goto _wmf_error;
|
|||
|
|
|||
|
if (load_vals.width > 0 && load_vals.height > 0)
|
|||
|
{
|
|||
|
*width = load_vals.width;
|
|||
|
*height = load_vals.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,
|
|||
|
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, &width, &height, error);
|
|||
|
|
|||
|
if (! pixels)
|
|||
|
return NULL;
|
|||
|
|
|||
|
image = pika_image_new (width, height, PIKA_RGB);
|
|||
|
pika_image_set_resolution (image,
|
|||
|
load_vals.resolution, load_vals.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;
|
|||
|
}
|