2007-04-19 21:46:51 -04:00
|
|
|
/* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2004,2006 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
|
* and its documentation for any purpose is hereby granted without
|
|
|
|
|
* fee, provided that the above copyright notice appear in all copies
|
|
|
|
|
* and that both that copyright notice and this permission notice
|
|
|
|
|
* appear in supporting documentation, and that the name of
|
|
|
|
|
* Red Hat, Inc. not be used in advertising or publicity pertaining to
|
|
|
|
|
* distribution of the software without specific, written prior
|
|
|
|
|
* permission. Red Hat, Inc. makes no representations about the
|
|
|
|
|
* suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
|
|
|
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Author: Carl D. Worth <cworth@cworth.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "cairo-boilerplate.h"
|
|
|
|
|
#include "cairo-boilerplate-ps-private.h"
|
|
|
|
|
|
|
|
|
|
#include <cairo-ps.h>
|
2007-04-20 03:33:58 -04:00
|
|
|
#include <cairo-ps-surface-private.h>
|
2007-04-21 02:57:55 -04:00
|
|
|
#include <cairo-paginated-surface-private.h>
|
2007-04-19 21:46:51 -04:00
|
|
|
|
2008-08-18 17:48:55 +01:00
|
|
|
#if HAVE_SIGNAL_H
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
static const cairo_user_data_key_t ps_closure_key;
|
2007-04-19 21:46:51 -04:00
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
typedef struct _ps_target_closure {
|
2007-04-19 21:46:51 -04:00
|
|
|
char *filename;
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
|
|
|
|
cairo_surface_t *target;
|
2008-09-26 16:49:57 +01:00
|
|
|
cairo_ps_level_t level;
|
2007-04-19 21:46:51 -04:00
|
|
|
} ps_target_closure_t;
|
|
|
|
|
|
2008-08-20 19:44:30 +01:00
|
|
|
static cairo_status_t
|
|
|
|
|
_cairo_boilerplate_ps_surface_set_creation_date (cairo_surface_t *abstract_surface,
|
|
|
|
|
time_t date)
|
|
|
|
|
{
|
|
|
|
|
cairo_paginated_surface_t *paginated = (cairo_paginated_surface_t*) abstract_surface;
|
|
|
|
|
cairo_ps_surface_t *surface;
|
|
|
|
|
|
|
|
|
|
if (cairo_surface_get_type (abstract_surface) != CAIRO_SURFACE_TYPE_PS)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_TYPE_MISMATCH;
|
|
|
|
|
|
|
|
|
|
surface = (cairo_ps_surface_t*) paginated->target;
|
|
|
|
|
|
|
|
|
|
surface->has_creation_date = TRUE;
|
|
|
|
|
surface->creation_date = date;
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
static cairo_surface_t *
|
2007-04-19 21:46:51 -04:00
|
|
|
_cairo_boilerplate_ps_create_surface (const char *name,
|
|
|
|
|
cairo_content_t content,
|
2008-09-26 16:49:57 +01:00
|
|
|
cairo_ps_level_t level,
|
2007-04-19 21:46:51 -04:00
|
|
|
int width,
|
|
|
|
|
int height,
|
2008-08-11 21:12:45 +01:00
|
|
|
int max_width,
|
|
|
|
|
int max_height,
|
2007-04-19 21:46:51 -04:00
|
|
|
cairo_boilerplate_mode_t mode,
|
2008-08-11 21:12:45 +01:00
|
|
|
int id,
|
2007-04-19 21:46:51 -04:00
|
|
|
void **closure)
|
|
|
|
|
{
|
|
|
|
|
ps_target_closure_t *ptc;
|
|
|
|
|
cairo_surface_t *surface;
|
2008-08-11 21:12:45 +01:00
|
|
|
cairo_status_t status;
|
2007-04-19 21:46:51 -04:00
|
|
|
|
|
|
|
|
/* Sanitize back to a real cairo_content_t value. */
|
|
|
|
|
if (content == CAIRO_TEST_CONTENT_COLOR_ALPHA_FLATTENED)
|
|
|
|
|
content = CAIRO_CONTENT_COLOR_ALPHA;
|
|
|
|
|
|
|
|
|
|
*closure = ptc = xmalloc (sizeof (ps_target_closure_t));
|
|
|
|
|
|
2008-11-03 13:10:42 +00:00
|
|
|
xasprintf (&ptc->filename, "%s.out.ps", name);
|
2008-08-20 19:44:30 +01:00
|
|
|
xunlink (ptc->filename);
|
2007-04-19 21:46:51 -04:00
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
ptc->level = level;
|
2007-04-19 21:46:51 -04:00
|
|
|
ptc->width = width;
|
|
|
|
|
ptc->height = height;
|
|
|
|
|
|
|
|
|
|
surface = cairo_ps_surface_create (ptc->filename, width, height);
|
2008-08-11 21:12:45 +01:00
|
|
|
if (cairo_surface_status (surface))
|
|
|
|
|
goto CLEANUP_FILENAME;
|
|
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
cairo_ps_surface_restrict_to_level (surface, level);
|
2008-08-20 19:44:30 +01:00
|
|
|
_cairo_boilerplate_ps_surface_set_creation_date (surface, 0);
|
2007-04-19 21:46:51 -04:00
|
|
|
cairo_surface_set_fallback_resolution (surface, 72., 72.);
|
|
|
|
|
|
|
|
|
|
if (content == CAIRO_CONTENT_COLOR) {
|
|
|
|
|
ptc->target = surface;
|
|
|
|
|
surface = cairo_surface_create_similar (ptc->target,
|
|
|
|
|
CAIRO_CONTENT_COLOR,
|
|
|
|
|
width, height);
|
2008-08-11 21:12:45 +01:00
|
|
|
if (cairo_surface_status (surface))
|
|
|
|
|
goto CLEANUP_TARGET;
|
2007-04-19 21:46:51 -04:00
|
|
|
} else {
|
|
|
|
|
ptc->target = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-11 21:12:45 +01:00
|
|
|
status = cairo_surface_set_user_data (surface, &ps_closure_key, ptc, NULL);
|
|
|
|
|
if (status == CAIRO_STATUS_SUCCESS)
|
|
|
|
|
return surface;
|
2007-04-19 21:46:51 -04:00
|
|
|
|
2008-08-11 21:12:45 +01:00
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
|
surface = cairo_boilerplate_surface_create_in_error (status);
|
|
|
|
|
|
|
|
|
|
CLEANUP_TARGET:
|
|
|
|
|
cairo_surface_destroy (ptc->target);
|
|
|
|
|
CLEANUP_FILENAME:
|
|
|
|
|
free (ptc->filename);
|
|
|
|
|
free (ptc);
|
2007-04-19 21:46:51 -04:00
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
cairo_surface_t *
|
|
|
|
|
_cairo_boilerplate_ps2_create_surface (const char *name,
|
|
|
|
|
cairo_content_t content,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int max_width,
|
|
|
|
|
int max_height,
|
|
|
|
|
cairo_boilerplate_mode_t mode,
|
|
|
|
|
int id,
|
|
|
|
|
void **closure)
|
|
|
|
|
{
|
|
|
|
|
return _cairo_boilerplate_ps_create_surface (name, content,
|
|
|
|
|
CAIRO_PS_LEVEL_2,
|
|
|
|
|
width, height,
|
|
|
|
|
max_width, max_height,
|
|
|
|
|
mode, id,
|
|
|
|
|
closure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_surface_t *
|
|
|
|
|
_cairo_boilerplate_ps3_create_surface (const char *name,
|
|
|
|
|
cairo_content_t content,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int max_width,
|
|
|
|
|
int max_height,
|
|
|
|
|
cairo_boilerplate_mode_t mode,
|
|
|
|
|
int id,
|
|
|
|
|
void **closure)
|
|
|
|
|
{
|
|
|
|
|
return _cairo_boilerplate_ps_create_surface (name, content,
|
|
|
|
|
CAIRO_PS_LEVEL_3,
|
|
|
|
|
width, height,
|
|
|
|
|
max_width, max_height,
|
|
|
|
|
mode, id,
|
|
|
|
|
closure);
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-19 21:46:51 -04:00
|
|
|
cairo_status_t
|
2008-08-20 19:44:30 +01:00
|
|
|
_cairo_boilerplate_ps_finish_surface (cairo_surface_t *surface)
|
2007-04-19 21:46:51 -04:00
|
|
|
{
|
2008-08-18 12:53:43 +01:00
|
|
|
ps_target_closure_t *ptc = cairo_surface_get_user_data (surface,
|
|
|
|
|
&ps_closure_key);
|
2008-08-11 21:12:45 +01:00
|
|
|
cairo_status_t status;
|
2007-04-19 21:46:51 -04:00
|
|
|
|
|
|
|
|
/* Both surface and ptc->target were originally created at the
|
|
|
|
|
* same dimensions. We want a 1:1 copy here, so we first clear any
|
|
|
|
|
* device offset on surface.
|
|
|
|
|
*
|
|
|
|
|
* In a more realistic use case of device offsets, the target of
|
|
|
|
|
* this copying would be of a different size than the source, and
|
|
|
|
|
* the offset would be desirable during the copy operation. */
|
|
|
|
|
cairo_surface_set_device_offset (surface, 0, 0);
|
|
|
|
|
|
|
|
|
|
if (ptc->target) {
|
|
|
|
|
cairo_t *cr;
|
|
|
|
|
cr = cairo_create (ptc->target);
|
|
|
|
|
cairo_set_source_surface (cr, surface, 0, 0);
|
|
|
|
|
cairo_paint (cr);
|
|
|
|
|
cairo_show_page (cr);
|
2008-08-11 21:12:45 +01:00
|
|
|
status = cairo_status (cr);
|
2007-04-19 21:46:51 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
|
|
2008-08-11 21:12:45 +01:00
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2007-04-19 21:46:51 -04:00
|
|
|
cairo_surface_finish (surface);
|
2008-08-11 21:12:45 +01:00
|
|
|
status = cairo_surface_status (surface);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2007-04-19 21:46:51 -04:00
|
|
|
surface = ptc->target;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_surface_finish (surface);
|
2008-08-11 21:12:45 +01:00
|
|
|
status = cairo_surface_status (surface);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2008-08-20 19:44:30 +01:00
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_boilerplate_ps_surface_write_to_png (cairo_surface_t *surface, const char *filename)
|
|
|
|
|
{
|
|
|
|
|
ps_target_closure_t *ptc = cairo_surface_get_user_data (surface,
|
|
|
|
|
&ps_closure_key);
|
|
|
|
|
char command[4096];
|
|
|
|
|
int exitstatus;
|
|
|
|
|
|
2008-09-26 16:49:57 +01:00
|
|
|
sprintf (command, "gs -q -r72 -g%dx%d -dSAFER -dBATCH -dNOPAUSE -sDEVICE=pngalpha -sOutputFile=%s %s %s",
|
|
|
|
|
ptc->width, ptc->height, filename,
|
|
|
|
|
ptc->level == CAIRO_PS_LEVEL_2 ? "-c 2 .setlanguagelevel -f" : "",
|
|
|
|
|
ptc->filename);
|
2008-08-18 17:48:55 +01:00
|
|
|
exitstatus = system (command);
|
|
|
|
|
#if _XOPEN_SOURCE && HAVE_SIGNAL_H
|
|
|
|
|
if (WIFSIGNALED (exitstatus))
|
|
|
|
|
raise (WTERMSIG (exitstatus));
|
|
|
|
|
#endif
|
|
|
|
|
if (exitstatus)
|
|
|
|
|
return CAIRO_STATUS_WRITE_ERROR;
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2007-04-19 21:46:51 -04:00
|
|
|
}
|
|
|
|
|
|
2008-08-18 12:53:43 +01:00
|
|
|
cairo_surface_t *
|
|
|
|
|
_cairo_boilerplate_ps_get_image_surface (cairo_surface_t *surface,
|
2008-09-28 13:34:50 +01:00
|
|
|
int page,
|
|
|
|
|
int width,
|
|
|
|
|
int height)
|
2008-08-18 12:53:43 +01:00
|
|
|
{
|
|
|
|
|
ps_target_closure_t *ptc = cairo_surface_get_user_data (surface,
|
|
|
|
|
&ps_closure_key);
|
|
|
|
|
char *filename;
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2008-09-28 13:34:50 +01:00
|
|
|
if (page == 0)
|
|
|
|
|
xasprintf (&filename, "%s.png", ptc->filename);
|
|
|
|
|
else
|
|
|
|
|
xasprintf (&filename, "%s-%%05d.png", ptc->filename);
|
2008-08-18 12:53:43 +01:00
|
|
|
status = _cairo_boilerplate_ps_surface_write_to_png (surface, filename);
|
|
|
|
|
if (status)
|
|
|
|
|
return cairo_boilerplate_surface_create_in_error (status);
|
|
|
|
|
|
2008-09-28 13:34:50 +01:00
|
|
|
if (page != 0) {
|
|
|
|
|
free (filename);
|
|
|
|
|
xasprintf (&filename, "%s-%05d.png", ptc->filename, page);
|
|
|
|
|
}
|
2008-08-18 12:53:43 +01:00
|
|
|
surface = cairo_boilerplate_get_image_surface_from_png (filename,
|
|
|
|
|
width,
|
|
|
|
|
height,
|
|
|
|
|
ptc->target == NULL);
|
|
|
|
|
|
|
|
|
|
remove (filename);
|
|
|
|
|
free (filename);
|
|
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-19 21:46:51 -04:00
|
|
|
void
|
|
|
|
|
_cairo_boilerplate_ps_cleanup (void *closure)
|
|
|
|
|
{
|
|
|
|
|
ps_target_closure_t *ptc = closure;
|
|
|
|
|
if (ptc->target)
|
|
|
|
|
cairo_surface_destroy (ptc->target);
|
|
|
|
|
free (ptc->filename);
|
|
|
|
|
free (ptc);
|
|
|
|
|
}
|
2007-04-20 03:33:58 -04:00
|
|
|
|
2008-09-28 13:34:50 +01:00
|
|
|
void
|
|
|
|
|
_cairo_boilerplate_ps_force_fallbacks (cairo_surface_t *abstract_surface,
|
|
|
|
|
unsigned int flags)
|
2007-04-20 03:33:58 -04:00
|
|
|
{
|
2008-09-28 13:34:50 +01:00
|
|
|
ps_target_closure_t *ptc = cairo_surface_get_user_data (abstract_surface,
|
|
|
|
|
&ps_closure_key);
|
|
|
|
|
|
|
|
|
|
cairo_paginated_surface_t *paginated;
|
2007-04-21 02:57:55 -04:00
|
|
|
cairo_ps_surface_t *surface;
|
2007-04-20 03:33:58 -04:00
|
|
|
|
2008-09-28 13:34:50 +01:00
|
|
|
if (ptc->target)
|
|
|
|
|
abstract_surface = ptc->target;
|
2007-04-20 03:33:58 -04:00
|
|
|
|
2008-09-28 13:34:50 +01:00
|
|
|
paginated = (cairo_paginated_surface_t*) abstract_surface;
|
2007-04-21 02:57:55 -04:00
|
|
|
surface = (cairo_ps_surface_t*) paginated->target;
|
2007-04-20 03:33:58 -04:00
|
|
|
surface->force_fallbacks = TRUE;
|
|
|
|
|
}
|