1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
|
/* $Id: gvrender_pango.c,v 1.70 2010/01/21 14:29:26 ellson Exp $ $Revision: 1.70 $ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "gvplugin_render.h"
#include "gvplugin_device.h"
#include "gvio.h"
#ifdef HAVE_PANGOCAIRO
#include <pango/pangocairo.h>
typedef enum {
FORMAT_CAIRO,
FORMAT_PNG,
FORMAT_PS,
FORMAT_PDF,
FORMAT_SVG,
} format_type;
#define ARRAY_SIZE(A) (sizeof(A)/sizeof(A[0]))
/* FIXME - FONT_DPI also defined in gvtextlayout_pango.c - need shared header */
#define FONT_DPI 96.
static double dashed[] = {6.};
static int dashed_len = ARRAY_SIZE(dashed);
static double dotted[] = {2., 6.};
static int dotted_len = ARRAY_SIZE(dotted);
#ifdef CAIRO_HAS_PS_SURFACE
#include <cairo-ps.h>
#endif
#ifdef CAIRO_HAS_PDF_SURFACE
#include <cairo-pdf.h>
#endif
#ifdef CAIRO_HAS_SVG_SURFACE
#include <cairo-svg.h>
#endif
static void cairogen_set_color(cairo_t * cr, gvcolor_t * color)
{
cairo_set_source_rgba(cr, color->u.RGBA[0], color->u.RGBA[1],
color->u.RGBA[2], color->u.RGBA[3]);
}
static cairo_status_t
writer (void *closure, const unsigned char *data, unsigned int length)
{
if (length == gvwrite((GVJ_t *)closure, (const char*)data, length))
return CAIRO_STATUS_SUCCESS;
return CAIRO_STATUS_WRITE_ERROR;
}
static void cairogen_begin_job(GVJ_t * job)
{
if (job->external_context && job->context)
cairo_save((cairo_t *) job->context);
}
static void cairogen_end_job(GVJ_t * job)
{
cairo_t *cr = (cairo_t *) job->context;
if (job->external_context)
cairo_restore(cr);
else {
cairo_destroy(cr);
job->context = NULL;
}
}
#define CAIRO_XMAX 32767
#define CAIRO_YMAX 32767
static void cairogen_begin_page(GVJ_t * job)
{
cairo_t *cr = (cairo_t *) job->context;
cairo_surface_t *surface;
cairo_status_t status;
if (cr == NULL) {
switch (job->render.id) {
case FORMAT_PS:
#ifdef CAIRO_HAS_PS_SURFACE
surface = cairo_ps_surface_create_for_stream (writer,
job, job->width, job->height);
#endif
break;
case FORMAT_PDF:
#ifdef CAIRO_HAS_PDF_SURFACE
surface = cairo_pdf_surface_create_for_stream (writer,
job, job->width, job->height);
#endif
break;
case FORMAT_SVG:
#ifdef CAIRO_HAS_SVG_SURFACE
surface = cairo_svg_surface_create_for_stream (writer,
job, job->width, job->height);
#endif
break;
case FORMAT_CAIRO:
case FORMAT_PNG:
default:
if (job->width >= CAIRO_XMAX || job->height >= CAIRO_YMAX) {
double scale = MIN((double)CAIRO_XMAX / job->width,
(double)CAIRO_YMAX / job->height);
job->width *= scale;
job->height *= scale;
job->scale.x *= scale;
job->scale.y *= scale;
fprintf(stderr,
"%s: graph is too large for cairo-renderer bitmaps. Scaling by %g to fit\n",
job->common->cmdname, scale);
}
surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
job->width, job->height);
if (job->common->verbose)
fprintf(stderr,
"%s: allocating a %dK cairo image surface (%d x %d pixels)\n",
job->common->cmdname,
ROUND(job->width * job->height * 4 / 1024.),
job->width, job->height);
break;
}
status = cairo_surface_status(surface);
if (status != CAIRO_STATUS_SUCCESS) {
fprintf(stderr, "%s: failure to create cairo surface: %s\n",
job->common->cmdname,
cairo_status_to_string(status));
cairo_surface_destroy (surface);
return;
}
cr = cairo_create(surface);
cairo_surface_destroy (surface);
job->context = (void *) cr;
}
cairo_scale(cr, job->scale.x, job->scale.y);
cairo_rotate(cr, -job->rotation * M_PI / 180.);
cairo_translate(cr, job->translation.x, -job->translation.y);
cairo_rectangle(cr, job->clip.LL.x, - job->clip.LL.y,
job->clip.UR.x - job->clip.LL.x, - (job->clip.UR.y - job->clip.LL.y));
cairo_clip(cr);
}
static void cairogen_end_page(GVJ_t * job)
{
cairo_t *cr = (cairo_t *) job->context;
cairo_surface_t *surface;
cairo_status_t status;
switch (job->render.id) {
#ifdef CAIRO_HAS_PNG_FUNCTIONS
case FORMAT_PNG:
surface = cairo_get_target(cr);
cairo_surface_write_to_png_stream(surface, writer, job);
break;
#endif
case FORMAT_PS:
case FORMAT_PDF:
case FORMAT_SVG:
cairo_show_page(cr);
surface = cairo_surface_reference(cairo_get_target(cr));
cairo_surface_finish(surface);
status = cairo_surface_status(surface);
cairo_surface_destroy(surface);
if (status != CAIRO_STATUS_SUCCESS)
fprintf(stderr, "cairo: %s\n", cairo_status_to_string(status));
break;
case FORMAT_CAIRO:
default:
surface = cairo_get_target(cr);
job->imagedata = (char *)(cairo_image_surface_get_data(surface));
break;
/* formatting will be done by gvdevice_format() */
}
}
static void cairogen_textpara(GVJ_t * job, pointf p, textpara_t * para)
{
obj_state_t *obj = job->obj;
cairo_t *cr = (cairo_t *) job->context;
cairo_set_dash (cr, dashed, 0, 0.0); /* clear any dashing */
cairogen_set_color(cr, &(obj->pencolor));
switch (para->just) {
case 'r':
p.x -= para->width;
break;
case 'l':
p.x -= 0.0;
break;
case 'n':
default:
p.x -= para->width / 2.0;
break;
}
p.y += para->yoffset_centerline + para->yoffset_layout;
cairo_move_to (cr, p.x, -p.y);
cairo_save(cr);
cairo_scale(cr, POINTS_PER_INCH / FONT_DPI, POINTS_PER_INCH / FONT_DPI);
pango_cairo_show_layout(cr, (PangoLayout*)(para->layout));
cairo_restore(cr);
}
static void cairogen_set_penstyle(GVJ_t *job, cairo_t *cr)
{
obj_state_t *obj = job->obj;
if (obj->pen == PEN_DASHED) {
cairo_set_dash (cr, dashed, dashed_len, 0.0);
} else if (obj->pen == PEN_DOTTED) {
cairo_set_dash (cr, dotted, dotted_len, 0.0);
} else {
cairo_set_dash (cr, dashed, 0, 0.0);
}
cairo_set_line_width (cr, obj->penwidth);
}
static void cairogen_ellipse(GVJ_t * job, pointf * A, int filled)
{
obj_state_t *obj = job->obj;
cairo_t *cr = (cairo_t *) job->context;
cairo_matrix_t matrix;
double rx, ry;
cairogen_set_penstyle(job, cr);
cairo_get_matrix(cr, &matrix);
cairo_translate(cr, A[0].x, -A[0].y);
rx = A[1].x - A[0].x;
ry = A[1].y - A[0].y;
cairo_scale(cr, 1, ry / rx);
cairo_move_to(cr, rx, 0);
cairo_arc(cr, 0, 0, rx, 0, 2 * M_PI);
cairo_close_path(cr);
cairo_set_matrix(cr, &matrix);
if (filled) {
cairogen_set_color(cr, &(obj->fillcolor));
cairo_fill_preserve(cr);
}
cairogen_set_color(cr, &(obj->pencolor));
cairo_stroke(cr);
}
static void
cairogen_polygon(GVJ_t * job, pointf * A, int n, int filled)
{
obj_state_t *obj = job->obj;
cairo_t *cr = (cairo_t *) job->context;
int i;
cairogen_set_penstyle(job, cr);
cairo_move_to(cr, A[0].x, -A[0].y);
for (i = 1; i < n; i++)
cairo_line_to(cr, A[i].x, -A[i].y);
cairo_close_path(cr);
if (filled) {
cairogen_set_color(cr, &(obj->fillcolor));
cairo_fill_preserve(cr);
}
cairogen_set_color(cr, &(obj->pencolor));
cairo_stroke(cr);
}
static void
cairogen_bezier(GVJ_t * job, pointf * A, int n, int arrow_at_start,
int arrow_at_end, int filled)
{
obj_state_t *obj = job->obj;
cairo_t *cr = (cairo_t *) job->context;
int i;
cairogen_set_penstyle(job, cr);
cairo_move_to(cr, A[0].x, -A[0].y);
for (i = 1; i < n; i += 3)
cairo_curve_to(cr, A[i].x, -A[i].y, A[i + 1].x, -A[i + 1].y,
A[i + 2].x, -A[i + 2].y);
if (filled) {
cairogen_set_color(cr, &(obj->fillcolor));
cairo_fill_preserve(cr);
}
cairogen_set_color(cr, &(obj->pencolor));
cairo_stroke(cr);
}
static void
cairogen_polyline(GVJ_t * job, pointf * A, int n)
{
obj_state_t *obj = job->obj;
cairo_t *cr = (cairo_t *) job->context;
int i;
cairogen_set_penstyle(job, cr);
cairo_set_line_width (cr, obj->penwidth * job->scale.x);
cairo_move_to(cr, A[0].x, -A[0].y);
for (i = 1; i < n; i++)
cairo_line_to(cr, A[i].x, -A[i].y);
cairogen_set_color(cr, &(obj->pencolor));
cairo_stroke(cr);
}
static gvrender_engine_t cairogen_engine = {
cairogen_begin_job,
cairogen_end_job,
0, /* cairogen_begin_graph */
0, /* cairogen_end_graph */
0, /* cairogen_begin_layer */
0, /* cairogen_end_layer */
cairogen_begin_page,
cairogen_end_page,
0, /* cairogen_begin_cluster */
0, /* cairogen_end_cluster */
0, /* cairogen_begin_nodes */
0, /* cairogen_end_nodes */
0, /* cairogen_begin_edges */
0, /* cairogen_end_edges */
0, /* cairogen_begin_node */
0, /* cairogen_end_node */
0, /* cairogen_begin_edge */
0, /* cairogen_end_edge */
0, /* cairogen_begin_anchor */
0, /* cairogen_end_anchor */
0, /* cairogen_begin_label */
0, /* cairogen_end_label */
cairogen_textpara,
0, /* cairogen_resolve_color */
cairogen_ellipse,
cairogen_polygon,
cairogen_bezier,
cairogen_polyline,
0, /* cairogen_comment */
0, /* cairogen_library_shape */
};
static gvrender_features_t render_features_cairo = {
GVRENDER_Y_GOES_DOWN
| GVRENDER_DOES_TRANSFORM, /* flags */
4., /* default pad - graph units */
0, /* knowncolors */
0, /* sizeof knowncolors */
RGBA_DOUBLE, /* color_type */
};
static gvdevice_features_t device_features_png = {
GVDEVICE_BINARY_FORMAT
| GVDEVICE_DOES_TRUECOLOR,/* flags */
{0.,0.}, /* default margin - points */
{0.,0.}, /* default page width, height - points */
{96.,96.}, /* typical monitor dpi */
};
static gvdevice_features_t device_features_ps = {
GVDEVICE_DOES_TRUECOLOR, /* flags */
{36.,36.}, /* default margin - points */
{0.,0.}, /* default page width, height - points */
{72.,72.}, /* postscript 72 dpi */
};
static gvdevice_features_t device_features_pdf = {
GVDEVICE_BINARY_FORMAT
| GVDEVICE_DOES_TRUECOLOR,/* flags */
{36.,36.}, /* default margin - points */
{0.,0.}, /* default page width, height - points */
{72.,72.}, /* postscript 72 dpi */
};
static gvdevice_features_t device_features_svg = {
GVDEVICE_DOES_TRUECOLOR, /* flags */
{0.,0.}, /* default margin - points */
{0.,0.}, /* default page width, height - points */
{72.,72.}, /* svg 72 dpi */
};
#endif
gvplugin_installed_t gvrender_pango_types[] = {
#ifdef HAVE_PANGOCAIRO
{FORMAT_CAIRO, "cairo", 10, &cairogen_engine, &render_features_cairo},
#endif
{0, NULL, 0, NULL, NULL}
};
gvplugin_installed_t gvdevice_pango_types[] = {
#ifdef HAVE_PANGOCAIRO
#ifdef CAIRO_HAS_PNG_FUNCTIONS
{FORMAT_PNG, "png:cairo", 10, NULL, &device_features_png},
#endif
#ifdef CAIRO_HAS_PS_SURFACE
{FORMAT_PS, "ps:cairo", -10, NULL, &device_features_ps},
#endif
#ifdef CAIRO_HAS_PDF_SURFACE
{FORMAT_PDF, "pdf:cairo", 10, NULL, &device_features_pdf},
#endif
#ifdef CAIRO_HAS_SVG_SURFACE
{FORMAT_SVG, "svg:cairo", -10, NULL, &device_features_svg},
#endif
#endif
{0, NULL, 0, NULL, NULL}
};
|