summaryrefslogtreecommitdiff
path: root/source/fitz/svg-device.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-01-21 16:42:45 +0100
committerTor Andersson <tor.andersson@artifex.com>2015-02-17 18:05:39 +0100
commitf84a189d5f94250e46d2cbd1a75aba00130e2dd6 (patch)
tree8ee614ab90de1baa8941f91ae4946ed5c2e70721 /source/fitz/svg-device.c
parent681039767f2ccc72e236246178893eb0989169c9 (diff)
downloadmupdf-f84a189d5f94250e46d2cbd1a75aba00130e2dd6.tar.xz
Add ctx parameter and remove embedded contexts for API regularity.
Purge several embedded contexts: Remove embedded context in fz_output. Remove embedded context in fz_stream. Remove embedded context in fz_device. Remove fz_rebind_stream (since it is no longer necessary). Remove embedded context in svg_device. Remove embedded context in XML parser. Add ctx argument to fz_document functions. Remove embedded context in fz_document. Remove embedded context in pdf_document. Remove embedded context in pdf_obj. Make fz_page independent of fz_document in the interface. We shouldn't need to pass the document to all functions handling a page. If a page is tied to the source document, it's redundant; otherwise it's just pointless. Fix reference counting oddity in fz_new_image_from_pixmap.
Diffstat (limited to 'source/fitz/svg-device.c')
-rw-r--r--source/fitz/svg-device.c527
1 files changed, 258 insertions, 269 deletions
diff --git a/source/fitz/svg-device.c b/source/fitz/svg-device.c
index b4e10fe4..29acc530 100644
--- a/source/fitz/svg-device.c
+++ b/source/fitz/svg-device.c
@@ -31,7 +31,6 @@ struct font_s
struct svg_device_s
{
- fz_context *ctx;
fz_output *out;
fz_output *out_store;
fz_output *defs;
@@ -53,7 +52,7 @@ struct svg_device_s
* so we have to delay definitions until after the symbol definition ends. */
static fz_output *
-start_def(svg_device *sdev)
+start_def(fz_context *ctx, svg_device *sdev)
{
sdev->def_count++;
if (sdev->def_count == 2)
@@ -61,8 +60,8 @@ start_def(svg_device *sdev)
if (sdev->defs == NULL)
{
if (sdev->defs_buffer == NULL)
- sdev->defs_buffer = fz_new_buffer(sdev->ctx, 1024);
- sdev->defs = fz_new_output_with_buffer(sdev->ctx, sdev->defs_buffer);
+ sdev->defs_buffer = fz_new_buffer(ctx, 1024);
+ sdev->defs = fz_new_output_with_buffer(ctx, sdev->defs_buffer);
}
sdev->out = sdev->defs;
}
@@ -70,7 +69,7 @@ start_def(svg_device *sdev)
}
static fz_output *
-end_def(svg_device *sdev)
+end_def(fz_context *ctx, svg_device *sdev)
{
if (sdev->def_count > 0)
sdev->def_count--;
@@ -78,7 +77,7 @@ end_def(svg_device *sdev)
sdev->out = sdev->out_store;
if (sdev->def_count == 0 && sdev->defs_buffer != NULL)
{
- fz_write(sdev->out, sdev->defs_buffer->data, sdev->defs_buffer->len);
+ fz_write(ctx, sdev->out, sdev->defs_buffer->data, sdev->defs_buffer->len);
sdev->defs_buffer->len = 0;
}
return sdev->out;
@@ -87,12 +86,12 @@ end_def(svg_device *sdev)
/* Helper functions */
static void
-svg_dev_path(svg_device *sdev, fz_path *path)
+svg_dev_path(fz_context *ctx, svg_device *sdev, fz_path *path)
{
fz_output *out = sdev->out;
float x, y;
int i, k;
- fz_printf(out, " d=\"");
+ fz_printf(ctx, out, " d=\"");
for (i = 0, k = 0; i < path->cmd_len; i++)
{
switch (path->cmds[i])
@@ -100,46 +99,46 @@ svg_dev_path(svg_device *sdev, fz_path *path)
case FZ_MOVETO:
x = path->coords[k++];
y = path->coords[k++];
- fz_printf(out, "M %g %g ", x, y);
+ fz_printf(ctx, out, "M %g %g ", x, y);
break;
case FZ_LINETO:
x = path->coords[k++];
y = path->coords[k++];
- fz_printf(out, "L %g %g ", x, y);
+ fz_printf(ctx, out, "L %g %g ", x, y);
break;
case FZ_CURVETO:
x = path->coords[k++];
y = path->coords[k++];
- fz_printf(out, "C %g %g ", x, y);
+ fz_printf(ctx, out, "C %g %g ", x, y);
x = path->coords[k++];
y = path->coords[k++];
- fz_printf(out, "%g %g ", x, y);
+ fz_printf(ctx, out, "%g %g ", x, y);
x = path->coords[k++];
y = path->coords[k++];
- fz_printf(out, "%g %g ", x, y);
+ fz_printf(ctx, out, "%g %g ", x, y);
break;
case FZ_CLOSE_PATH:
- fz_printf(out, "Z ");
+ fz_printf(ctx, out, "Z ");
break;
}
}
- fz_printf(out, "\"");
+ fz_printf(ctx, out, "\"");
}
static void
-svg_dev_ctm(svg_device *sdev, const fz_matrix *ctm)
+svg_dev_ctm(fz_context *ctx, svg_device *sdev, const fz_matrix *ctm)
{
fz_output *out = sdev->out;
if (ctm->a != 1.0 || ctm->b != 0 || ctm->c != 0 || ctm->d != 1.0 || ctm->e != 0 || ctm->f != 0)
{
- fz_printf(out, " transform=\"matrix(%g,%g,%g,%g,%g,%g)\"",
+ fz_printf(ctx, out, " transform=\"matrix(%g,%g,%g,%g,%g,%g)\"",
ctm->a, ctm->b, ctm->c, ctm->d, ctm->e, ctm->f);
}
}
static void
-svg_dev_stroke_state(svg_device *sdev, fz_stroke_state *stroke_state, const fz_matrix *ctm)
+svg_dev_stroke_state(fz_context *ctx, svg_device *sdev, fz_stroke_state *stroke_state, const fz_matrix *ctm)
{
fz_output *out = sdev->out;
float exp;
@@ -148,31 +147,30 @@ svg_dev_stroke_state(svg_device *sdev, fz_stroke_state *stroke_state, const fz_m
if (exp == 0)
exp = 1;
- fz_printf(out, " stroke-width=\"%g\"", stroke_state->linewidth/exp);
- fz_printf(out, " stroke-linecap=\"%s\"",
+ fz_printf(ctx, out, " stroke-width=\"%g\"", stroke_state->linewidth/exp);
+ fz_printf(ctx, out, " stroke-linecap=\"%s\"",
(stroke_state->start_cap == FZ_LINECAP_SQUARE ? "square" :
(stroke_state->start_cap == FZ_LINECAP_ROUND ? "round" : "butt")));
if (stroke_state->dash_len != 0)
{
int i;
- fz_printf(out, " stroke-dasharray=");
+ fz_printf(ctx, out, " stroke-dasharray=");
for (i = 0; i < stroke_state->dash_len; i++)
- fz_printf(out, "%c%g", (i == 0 ? '\"' : ','), stroke_state->dash_list[i]);
- fz_printf(out, "\"");
+ fz_printf(ctx, out, "%c%g", (i == 0 ? '\"' : ','), stroke_state->dash_list[i]);
+ fz_printf(ctx, out, "\"");
if (stroke_state->dash_phase != 0)
- fz_printf(out, " stroke-dashoffset=\"%g\"", stroke_state->dash_phase);
+ fz_printf(ctx, out, " stroke-dashoffset=\"%g\"", stroke_state->dash_phase);
}
if (stroke_state->linejoin == FZ_LINEJOIN_MITER || stroke_state->linejoin == FZ_LINEJOIN_MITER_XPS)
- fz_printf(out, " stroke-miterlimit=\"%g\"", stroke_state->miterlimit);
- fz_printf(out, " stroke-linejoin=\"%s\"",
+ fz_printf(ctx, out, " stroke-miterlimit=\"%g\"", stroke_state->miterlimit);
+ fz_printf(ctx, out, " stroke-linejoin=\"%s\"",
(stroke_state->linejoin == FZ_LINEJOIN_BEVEL ? "bevel" :
(stroke_state->linejoin == FZ_LINEJOIN_ROUND ? "round" : "miter")));
}
static void
-svg_dev_fill_color(svg_device *sdev, fz_colorspace *colorspace, float *color, float alpha)
+svg_dev_fill_color(fz_context *ctx, svg_device *sdev, fz_colorspace *colorspace, float *color, float alpha)
{
- fz_context *ctx = sdev->ctx;
fz_output *out = sdev->out;
float rgb[FZ_MAX_COLORS];
@@ -188,15 +186,14 @@ svg_dev_fill_color(svg_device *sdev, fz_colorspace *colorspace, float *color, fl
/* don't send a fill, as it will be assumed to be black */
}
else
- fz_printf(out, " fill=\"rgb(%d,%d,%d)\"", (int)(255*color[0] + 0.5), (int)(255*color[1] + 0.5), (int)(255*color[2]+0.5));
+ fz_printf(ctx, out, " fill=\"rgb(%d,%d,%d)\"", (int)(255*color[0] + 0.5), (int)(255*color[1] + 0.5), (int)(255*color[2]+0.5));
if (alpha != 1)
- fz_printf(out, " fill-opacity=\"%g\"", alpha);
+ fz_printf(ctx, out, " fill-opacity=\"%g\"", alpha);
}
static void
-svg_dev_stroke_color(svg_device *sdev, fz_colorspace *colorspace, float *color, float alpha)
+svg_dev_stroke_color(fz_context *ctx, svg_device *sdev, fz_colorspace *colorspace, float *color, float alpha)
{
- fz_context *ctx = sdev->ctx;
fz_output *out = sdev->out;
float rgb[FZ_MAX_COLORS];
@@ -207,9 +204,9 @@ svg_dev_stroke_color(svg_device *sdev, fz_colorspace *colorspace, float *color,
color = rgb;
}
- fz_printf(out, " fill=\"none\" stroke=\"rgb(%d,%d,%d)\"", (int)(255*color[0] + 0.5), (int)(255*color[1] + 0.5), (int)(255*color[2]+0.5));
+ fz_printf(ctx, out, " fill=\"none\" stroke=\"rgb(%d,%d,%d)\"", (int)(255*color[0] + 0.5), (int)(255*color[1] + 0.5), (int)(255*color[2]+0.5));
if (alpha != 1)
- fz_printf(out, " stroke-opacity=\"%g\"", alpha);
+ fz_printf(ctx, out, " stroke-opacity=\"%g\"", alpha);
}
static inline int
@@ -222,9 +219,10 @@ is_xml_wspace(int c)
}
static void
-svg_dev_text(svg_device *sdev, const fz_matrix *ctm, fz_text *text)
+svg_dev_text(fz_context *ctx, svg_device *sdev, const fz_matrix *ctm, fz_text *text)
{
fz_output *out = sdev->out;
+
int i;
fz_matrix inverse;
fz_matrix local_trm;
@@ -242,10 +240,10 @@ svg_dev_text(svg_device *sdev, const fz_matrix *ctm, fz_text *text)
fz_invert_matrix(&inverse, &local_trm);
fz_concat(&local_trm, &local_trm, ctm);
- fz_printf(out, " transform=\"matrix(%g,%g,%g,%g,%g,%g)\"",
+ fz_printf(ctx, out, " transform=\"matrix(%g,%g,%g,%g,%g,%g)\"",
local_trm.a, local_trm.b, local_trm.c, local_trm.d, local_trm.e, local_trm.f);
- fz_printf(out, " font-size=\"%g\"", size);
- fz_printf(out, " font-family=\"%s\"", text->font->name);
+ fz_printf(ctx, out, " font-size=\"%g\"", size);
+ fz_printf(ctx, out, " font-family=\"%s\"", text->font->name);
/* Leading (and repeated) whitespace presents a problem for SVG
* text, so elide it here. */
@@ -256,7 +254,7 @@ svg_dev_text(svg_device *sdev, const fz_matrix *ctm, fz_text *text)
break;
}
- fz_printf(out, " x=");
+ fz_printf(ctx, out, " x=");
was_wspace = 0;
for (i=start; i < text->len; i++)
{
@@ -269,9 +267,9 @@ svg_dev_text(svg_device *sdev, const fz_matrix *ctm, fz_text *text)
p.x = it->x;
p.y = it->y;
fz_transform_point(&p, &inverse);
- fz_printf(out, "%c%g", i == start ? '\"' : ' ', p.x);
+ fz_printf(ctx, out, "%c%g", i == start ? '\"' : ' ', p.x);
}
- fz_printf(out, "\" y=");
+ fz_printf(ctx, out, "\" y=");
was_wspace = 0;
for (i=start; i < text->len; i++)
{
@@ -284,9 +282,9 @@ svg_dev_text(svg_device *sdev, const fz_matrix *ctm, fz_text *text)
p.x = it->x;
p.y = it->y;
fz_transform_point(&p, &inverse);
- fz_printf(out, "%c%g", i == start ? '\"' : ' ', p.y);
+ fz_printf(ctx, out, "%c%g", i == start ? '\"' : ' ', p.y);
}
- fz_printf(out, "\">\n");
+ fz_printf(ctx, out, "\">\n");
was_wspace = 0;
for (i=start; i < text->len; i++)
{
@@ -297,18 +295,17 @@ svg_dev_text(svg_device *sdev, const fz_matrix *ctm, fz_text *text)
continue;
was_wspace = is_wspace;
if (c >= 32 && c <= 127 && c != '<' && c != '&')
- fz_printf(out, "%c", c);
+ fz_printf(ctx, out, "%c", c);
else
- fz_printf(out, "&#x%04x;", c);
+ fz_printf(ctx, out, "&#x%04x;", c);
}
- fz_printf(out, "\n</text>\n");
+ fz_printf(ctx, out, "\n</text>\n");
}
static font *
-svg_dev_text_as_paths_defs(fz_device *dev, fz_text *text, const fz_matrix *ctm)
+svg_dev_text_as_paths_defs(fz_context *ctx, fz_device *dev, fz_text *text, const fz_matrix *ctm)
{
svg_device *sdev = dev->user;
- fz_context *ctx = sdev->ctx;
fz_output *out = sdev->out;
int i, font_idx;
font *fnt;
@@ -360,30 +357,30 @@ svg_dev_text_as_paths_defs(fz_device *dev, fz_text *text, const fz_matrix *ctm)
/* Need to send this one */
fz_rect rect;
fz_path *path;
- path = fz_outline_glyph(sdev->ctx, text->font, gid, &fz_identity);
+ path = fz_outline_glyph(ctx, text->font, gid, &fz_identity);
if (path)
{
fz_bound_path(ctx, path, NULL, &fz_identity, &rect);
shift.e = -rect.x0;
shift.f = -rect.y0;
fz_transform_path(ctx, path, &shift);
- out = start_def(sdev);
- fz_printf(out, "<symbol id=\"font_%x_%x\">", fnt->id, gid);
- fz_printf(out, "<path");
- svg_dev_path(sdev, path);
- fz_printf(out, "/>\n");
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<symbol id=\"font_%x_%x\">", fnt->id, gid);
+ fz_printf(ctx, out, "<path");
+ svg_dev_path(ctx, sdev, path);
+ fz_printf(ctx, out, "/>\n");
}
else
{
fz_bound_glyph(ctx, text->font, gid, &fz_identity, &rect);
shift.e = -rect.x0;
shift.f = -rect.y0;
- out = start_def(sdev);
- fz_printf(out, "<symbol id=\"font_%x_%x\">", fnt->id, gid);
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<symbol id=\"font_%x_%x\">", fnt->id, gid);
fz_run_t3_glyph(ctx, text->font, gid, &shift, dev);
}
- fz_printf(out, "</symbol>");
- out = end_def(sdev);
+ fz_printf(ctx, out, "</symbol>");
+ out = end_def(ctx, sdev);
fnt->sentlist[gid].x_off = rect.x0;
fnt->sentlist[gid].y_off = rect.y0;
}
@@ -392,11 +389,12 @@ svg_dev_text_as_paths_defs(fz_device *dev, fz_text *text, const fz_matrix *ctm)
}
static void
-svg_dev_text_as_paths_fill(fz_device *dev, fz_text *text, const fz_matrix *ctm,
+svg_dev_text_as_paths_fill(fz_context *ctx, fz_device *dev, fz_text *text, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha, font *fnt)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
fz_matrix local_trm, local_trm2;
int i;
fz_matrix shift = { 1, 0, 0, 1, 0, 0};
@@ -423,20 +421,21 @@ svg_dev_text_as_paths_fill(fz_device *dev, fz_text *text, const fz_matrix *ctm,
local_trm.f = it->y;
fz_concat(&local_trm2, &local_trm, ctm);
fz_concat(&local_trm2, &shift, &local_trm2);
- fz_printf(out, "<use xlink:href=\"#font_%x_%x\"", fnt->id, gid);
- svg_dev_ctm(sdev, &local_trm2);
- svg_dev_fill_color(sdev, colorspace, color, alpha);
- fz_printf(out, "/>\n");
+ fz_printf(ctx, out, "<use xlink:href=\"#font_%x_%x\"", fnt->id, gid);
+ svg_dev_ctm(ctx, sdev, &local_trm2);
+ svg_dev_fill_color(ctx, sdev, colorspace, color, alpha);
+ fz_printf(ctx, out, "/>\n");
}
}
static void
-svg_dev_text_as_paths_stroke(fz_device *dev, fz_text *text,
+svg_dev_text_as_paths_stroke(fz_context *ctx, fz_device *dev, fz_text *text,
fz_stroke_state *stroke, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha, font *fnt)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
fz_matrix local_trm, local_trm2;
int i;
fz_matrix shift = { 1, 0, 0, 1, 0, 0};
@@ -463,127 +462,130 @@ svg_dev_text_as_paths_stroke(fz_device *dev, fz_text *text,
local_trm.f = it->y;
fz_concat(&local_trm2, &local_trm, ctm);
fz_concat(&local_trm2, &shift, &local_trm2);
- fz_printf(out, "<use xlink:href=\"#font_%x_%x\"", fnt->id, gid);
- svg_dev_stroke_state(sdev, stroke, &local_trm2);
- svg_dev_ctm(sdev, &local_trm2);
- svg_dev_stroke_color(sdev, colorspace, color, alpha);
- fz_printf(out, "/>\n");
+ fz_printf(ctx, out, "<use xlink:href=\"#font_%x_%x\"", fnt->id, gid);
+ svg_dev_stroke_state(ctx, sdev, stroke, &local_trm2);
+ svg_dev_ctm(ctx, sdev, &local_trm2);
+ svg_dev_stroke_color(ctx, sdev, colorspace, color, alpha);
+ fz_printf(ctx, out, "/>\n");
}
}
/* Entry points */
static void
-svg_dev_fill_path(fz_device *dev, fz_path *path, int even_odd, const fz_matrix *ctm,
+svg_dev_fill_path(fz_context *ctx, fz_device *dev, fz_path *path, int even_odd, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
- fz_printf(out, "<path");
- svg_dev_ctm(sdev, ctm);
- svg_dev_path(sdev, path);
- svg_dev_fill_color(sdev, colorspace, color, alpha);
+ fz_printf(ctx, out, "<path");
+ svg_dev_ctm(ctx, sdev, ctm);
+ svg_dev_path(ctx, sdev, path);
+ svg_dev_fill_color(ctx, sdev, colorspace, color, alpha);
if (even_odd)
- fz_printf(out, " fill-rule=\"evenodd\"");
- fz_printf(out, "/>\n");
+ fz_printf(ctx, out, " fill-rule=\"evenodd\"");
+ fz_printf(ctx, out, "/>\n");
}
static void
-svg_dev_stroke_path(fz_device *dev, fz_path *path, fz_stroke_state *stroke, const fz_matrix *ctm,
+svg_dev_stroke_path(fz_context *ctx, fz_device *dev, fz_path *path, fz_stroke_state *stroke, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
- fz_printf(out, "<path");
- svg_dev_ctm(sdev, ctm);
- svg_dev_stroke_state(sdev, stroke, &fz_identity);
- svg_dev_stroke_color(sdev, colorspace, color, alpha);
- svg_dev_path(sdev, path);
- fz_printf(out, "/>\n");
+ fz_printf(ctx, out, "<path");
+ svg_dev_ctm(ctx, sdev, ctm);
+ svg_dev_stroke_state(ctx, sdev, stroke, &fz_identity);
+ svg_dev_stroke_color(ctx, sdev, colorspace, color, alpha);
+ svg_dev_path(ctx, sdev, path);
+ fz_printf(ctx, out, "/>\n");
}
static void
-svg_dev_clip_path(fz_device *dev, fz_path *path, const fz_rect *rect, int even_odd, const fz_matrix *ctm)
+svg_dev_clip_path(fz_context *ctx, fz_device *dev, fz_path *path, const fz_rect *rect, int even_odd, const fz_matrix *ctm)
{
svg_device *sdev = dev->user;
fz_output *out;
+
int num = sdev->id++;
- out = start_def(sdev);
- fz_printf(out, "<clipPath id=\"cp%d\">\n", num);
- fz_printf(out, "<path");
- svg_dev_ctm(sdev, ctm);
- svg_dev_path(sdev, path);
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<clipPath id=\"cp%d\">\n", num);
+ fz_printf(ctx, out, "<path");
+ svg_dev_ctm(ctx, sdev, ctm);
+ svg_dev_path(ctx, sdev, path);
if (even_odd)
- fz_printf(out, " fill-rule=\"evenodd\"");
- fz_printf(out, "/>\n</clipPath>\n");
- out = end_def(sdev);
- fz_printf(out, "<g clip-path=\"url(#cp%d)\">\n", num);
+ fz_printf(ctx, out, " fill-rule=\"evenodd\"");
+ fz_printf(ctx, out, "/>\n</clipPath>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<g clip-path=\"url(#cp%d)\">\n", num);
}
static void
-svg_dev_clip_stroke_path(fz_device *dev, fz_path *path, const fz_rect *rect, fz_stroke_state *stroke, const fz_matrix *ctm)
+svg_dev_clip_stroke_path(fz_context *ctx, fz_device *dev, fz_path *path, const fz_rect *rect, fz_stroke_state *stroke, const fz_matrix *ctm)
{
svg_device *sdev = dev->user;
+
fz_output *out;
- fz_context *ctx = dev->ctx;
fz_rect bounds;
int num = sdev->id++;
float white[3] = { 1, 1, 1 };
fz_bound_path(ctx, path, stroke, ctm, &bounds);
- out = start_def(sdev);
- fz_printf(out, "<mask id=\"ma%d\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\" maskUnits=\"userSpaceOnUse\" maskContentUnits=\"userSpaceOnUse\">\n",
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<mask id=\"ma%d\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\" maskUnits=\"userSpaceOnUse\" maskContentUnits=\"userSpaceOnUse\">\n",
num, bounds.x0, bounds.y0, bounds.x1 - bounds.x0, bounds.y1 - bounds.y0);
- fz_printf(out, "<path");
- svg_dev_ctm(sdev, ctm);
- svg_dev_stroke_state(sdev, stroke, &fz_identity);
- svg_dev_stroke_color(sdev, fz_device_rgb(ctx), white, 1);
- svg_dev_path(sdev, path);
- fz_printf(out, "/>\n</mask>\n");
- out = end_def(sdev);
- fz_printf(out, "<g mask=\"url(#ma%d)\">\n", num);
+ fz_printf(ctx, out, "<path");
+ svg_dev_ctm(ctx, sdev, ctm);
+ svg_dev_stroke_state(ctx, sdev, stroke, &fz_identity);
+ svg_dev_stroke_color(ctx, sdev, fz_device_rgb(ctx), white, 1);
+ svg_dev_path(ctx, sdev, path);
+ fz_printf(ctx, out, "/>\n</mask>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<g mask=\"url(#ma%d)\">\n", num);
}
static void
-svg_dev_fill_text(fz_device *dev, fz_text *text, const fz_matrix *ctm,
+svg_dev_fill_text(fz_context *ctx, fz_device *dev, fz_text *text, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
font *fnt;
- fz_printf(out, "<text");
- svg_dev_fill_color(sdev, colorspace, color, 0.0f);
- svg_dev_text(sdev, ctm, text);
- fnt = svg_dev_text_as_paths_defs(dev, text, ctm);
- svg_dev_text_as_paths_fill(dev, text, ctm, colorspace, color, alpha, fnt);
+ fz_printf(ctx, out, "<text");
+ svg_dev_fill_color(ctx, sdev, colorspace, color, 0.0f);
+ svg_dev_text(ctx, sdev, ctm, text);
+ fnt = svg_dev_text_as_paths_defs(ctx, dev, text, ctm);
+ svg_dev_text_as_paths_fill(ctx, dev, text, ctm, colorspace, color, alpha, fnt);
}
static void
-svg_dev_stroke_text(fz_device *dev, fz_text *text, fz_stroke_state *stroke, const fz_matrix *ctm,
+svg_dev_stroke_text(fz_context *ctx, fz_device *dev, fz_text *text, fz_stroke_state *stroke, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
font *fnt;
- fz_printf(out, "<text");
- svg_dev_fill_color(sdev, colorspace, color, 0.0f);
- svg_dev_text(sdev, ctm, text);
- fnt = svg_dev_text_as_paths_defs(dev, text, ctm);
- svg_dev_text_as_paths_stroke(dev, text, stroke, ctm, colorspace, color, alpha, fnt);
+ fz_printf(ctx, out, "<text");
+ svg_dev_fill_color(ctx, sdev, colorspace, color, 0.0f);
+ svg_dev_text(ctx, sdev, ctm, text);
+ fnt = svg_dev_text_as_paths_defs(ctx, dev, text, ctm);
+ svg_dev_text_as_paths_stroke(ctx, dev, text, stroke, ctm, colorspace, color, alpha, fnt);
}
static void
-svg_dev_clip_text(fz_device *dev, fz_text *text, const fz_matrix *ctm, int accumulate)
+svg_dev_clip_text(fz_context *ctx, fz_device *dev, fz_text *text, const fz_matrix *ctm, int accumulate)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
- fz_context *ctx = dev->ctx;
+
fz_rect bounds;
int num = sdev->id++;
float white[3] = { 1, 1, 1 };
@@ -591,25 +593,25 @@ svg_dev_clip_text(fz_device *dev, fz_text *text, const fz_matrix *ctm, int accum
fz_bound_text(ctx, text, NULL, ctm, &bounds);
- out = start_def(sdev);
- fz_printf(out, "<mask id=\"ma%d\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\" maskUnits=\"userSpaceOnUse\" maskContentUnits=\"userSpaceOnUse\">\n",
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<mask id=\"ma%d\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\" maskUnits=\"userSpaceOnUse\" maskContentUnits=\"userSpaceOnUse\">\n",
num, bounds.x0, bounds.y0, bounds.x1 - bounds.x0, bounds.y1 - bounds.y0);
- fz_printf(out, "<text");
- svg_dev_fill_color(sdev, fz_device_rgb(ctx), white, 0.0f);
- svg_dev_text(sdev, ctm, text);
- fnt = svg_dev_text_as_paths_defs(dev, text, ctm);
- svg_dev_text_as_paths_fill(dev, text, ctm, fz_device_rgb(ctx), white, 1.0f, fnt);
- fz_printf(out, "</mask>\n");
- out = end_def(sdev);
- fz_printf(out, "<g mask=\"url(#ma%d)\">\n", num);
+ fz_printf(ctx, out, "<text");
+ svg_dev_fill_color(ctx, sdev, fz_device_rgb(ctx), white, 0.0f);
+ svg_dev_text(ctx, sdev, ctm, text);
+ fnt = svg_dev_text_as_paths_defs(ctx, dev, text, ctm);
+ svg_dev_text_as_paths_fill(ctx, dev, text, ctm, fz_device_rgb(ctx), white, 1.0f, fnt);
+ fz_printf(ctx, out, "</mask>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<g mask=\"url(#ma%d)\">\n", num);
}
static void
-svg_dev_clip_stroke_text(fz_device *dev, fz_text *text, fz_stroke_state *stroke, const fz_matrix *ctm)
+svg_dev_clip_stroke_text(fz_context *ctx, fz_device *dev, fz_text *text, fz_stroke_state *stroke, const fz_matrix *ctm)
{
svg_device *sdev = dev->user;
+
fz_output *out;
- fz_context *ctx = dev->ctx;
fz_rect bounds;
int num = sdev->id++;
float white[3] = { 255, 255, 255 };
@@ -617,34 +619,35 @@ svg_dev_clip_stroke_text(fz_device *dev, fz_text *text, fz_stroke_state *stroke,
fz_bound_text(ctx, text, NULL, ctm, &bounds);
- out = start_def(sdev);
- fz_printf(out, "<mask id=\"ma%d\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\" maskUnits=\"userSpaceOnUse\" maskContentUnits=\"userSpaceOnUse\">\n",
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<mask id=\"ma%d\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\" maskUnits=\"userSpaceOnUse\" maskContentUnits=\"userSpaceOnUse\">\n",
num, bounds.x0, bounds.y0, bounds.x1 - bounds.x0, bounds.y1 - bounds.y0);
- fz_printf(out, "<text");
- svg_dev_stroke_state(sdev, stroke, &fz_identity);
- svg_dev_stroke_color(sdev, fz_device_rgb(ctx), white, 0.0f);
- svg_dev_text(sdev, ctm, text);
- fnt = svg_dev_text_as_paths_defs(dev, text, ctm);
- svg_dev_text_as_paths_stroke(dev, text, stroke, ctm, fz_device_rgb(ctx), white, 1.0f, fnt);
- fz_printf(out, "</mask>\n");
- out = end_def(sdev);
- fz_printf(out, "<g mask=\"url(#ma%d)\">\n", num);
+ fz_printf(ctx, out, "<text");
+ svg_dev_stroke_state(ctx, sdev, stroke, &fz_identity);
+ svg_dev_stroke_color(ctx, sdev, fz_device_rgb(ctx), white, 0.0f);
+ svg_dev_text(ctx, sdev, ctm, text);
+ fnt = svg_dev_text_as_paths_defs(ctx, dev, text, ctm);
+ svg_dev_text_as_paths_stroke(ctx, dev, text, stroke, ctm, fz_device_rgb(ctx), white, 1.0f, fnt);
+ fz_printf(ctx, out, "</mask>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<g mask=\"url(#ma%d)\">\n", num);
}
static void
-svg_dev_ignore_text(fz_device *dev, fz_text *text, const fz_matrix *ctm)
+svg_dev_ignore_text(fz_context *ctx, fz_device *dev, fz_text *text, const fz_matrix *ctm)
{
svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
float black[3] = { 0, 0, 0};
- fz_printf(out, "<text");
- svg_dev_fill_color(sdev, fz_device_rgb(sdev->ctx), black, 0.0f);
- svg_dev_text(sdev, ctm, text);
+ fz_printf(ctx, out, "<text");
+ svg_dev_fill_color(ctx, sdev, fz_device_rgb(ctx), black, 0.0f);
+ svg_dev_text(ctx, sdev, ctm, text);
}
static void
-send_data_base64(fz_output *out, fz_buffer *buffer)
+send_data_base64(fz_context *ctx, fz_output *out, fz_buffer *buffer)
{
int i, len;
static const char set[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
@@ -656,8 +659,8 @@ send_data_base64(fz_output *out, fz_buffer *buffer)
int d = buffer->data[3*i+1];
int e = buffer->data[3*i+2];
if ((i & 15) == 0)
- fz_printf(out, "\n");
- fz_printf(out, "%c%c%c%c", set[c>>2], set[((c&3)<<4)|(d>>4)], set[((d&15)<<2)|(e>>6)], set[e & 63]);
+ fz_printf(ctx, out, "\n");
+ fz_printf(ctx, out, "%c%c%c%c", set[c>>2], set[((c&3)<<4)|(d>>4)], set[((d&15)<<2)|(e>>6)], set[e & 63]);
}
i *= 3;
switch (buffer->len-i)
@@ -666,13 +669,13 @@ send_data_base64(fz_output *out, fz_buffer *buffer)
{
int c = buffer->data[i];
int d = buffer->data[i+1];
- fz_printf(out, "%c%c%c=", set[c>>2], set[((c&3)<<4)|(d>>4)], set[((d&15)<<2)]);
+ fz_printf(ctx, out, "%c%c%c=", set[c>>2], set[((c&3)<<4)|(d>>4)], set[((d&15)<<2)]);
break;
}
case 1:
{
int c = buffer->data[i];
- fz_printf(out, "%c%c==", set[c>>2], set[(c&3)<<4]);
+ fz_printf(ctx, out, "%c%c==", set[c>>2], set[(c&3)<<4]);
break;
}
default:
@@ -682,11 +685,11 @@ send_data_base64(fz_output *out, fz_buffer *buffer)
}
static void
-svg_dev_fill_image(fz_device *dev, fz_image *image, const fz_matrix *ctm, float alpha)
+svg_dev_fill_image(fz_context *ctx, fz_device *dev, fz_image *image, const fz_matrix *ctm, float alpha)
{
- svg_device *sdev = (svg_device *)dev->user;
- fz_context *ctx = dev->ctx;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
fz_matrix local_ctm = *ctm;
fz_matrix scale = { 0 };
@@ -695,40 +698,40 @@ svg_dev_fill_image(fz_device *dev, fz_image *image, const fz_matrix *ctm, float
fz_concat(&local_ctm, &scale, ctm);
if (alpha != 1.0f)
- fz_printf(out, "<g opacity=\"%g\">", alpha);
- fz_printf(out, "<image");
- svg_dev_ctm(sdev, &local_ctm);
- fz_printf(out, " width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:", image->w, image->h);
+ fz_printf(ctx, out, "<g opacity=\"%g\">", alpha);
+ fz_printf(ctx, out, "<image");
+ svg_dev_ctm(ctx, sdev, &local_ctm);
+ fz_printf(ctx, out, " width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:", image->w, image->h);
switch (image->buffer == NULL ? FZ_IMAGE_JPX : image->buffer->params.type)
{
case FZ_IMAGE_JPEG:
- fz_printf(out, "image/jpeg;base64,");
- send_data_base64(out, image->buffer->buffer);
+ fz_printf(ctx, out, "image/jpeg;base64,");
+ send_data_base64(ctx, out, image->buffer->buffer);
break;
case FZ_IMAGE_PNG:
- fz_printf(out, "image/png;base64,");
- send_data_base64(out, image->buffer->buffer);
+ fz_printf(ctx, out, "image/png;base64,");
+ send_data_base64(ctx, out, image->buffer->buffer);
break;
default:
{
fz_buffer *buf = fz_new_png_from_image(ctx, image, image->w, image->h);
- fz_printf(out, "image/png;base64,");
- send_data_base64(out, buf);
+ fz_printf(ctx, out, "image/png;base64,");
+ send_data_base64(ctx, out, buf);
fz_drop_buffer(ctx, buf);
break;
}
}
- fz_printf(out, "\"/>\n");
+ fz_printf(ctx, out, "\"/>\n");
if (alpha != 1.0f)
- fz_printf(out, "</g>");
+ fz_printf(ctx, out, "</g>");
}
static void
-svg_dev_fill_shade(fz_device *dev, fz_shade *shade, const fz_matrix *ctm, float alpha)
+svg_dev_fill_shade(fz_context *ctx, fz_device *dev, fz_shade *shade, const fz_matrix *ctm, float alpha)
{
- svg_device *sdev = (svg_device *)dev->user;
- fz_context *ctx = dev->ctx;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
+
fz_rect rect;
fz_irect bbox;
fz_pixmap *pix;
@@ -750,12 +753,12 @@ svg_dev_fill_shade(fz_device *dev, fz_shade *shade, const fz_matrix *ctm, float
fz_paint_shade(ctx, shade, ctm, pix, &bbox);
buf = fz_new_png_from_pixmap(ctx, pix);
if (alpha != 1.0f)
- fz_printf(out, "<g opacity=\"%g\">", alpha);
- fz_printf(out, "<image x=\"%dpx\" y=\"%dpx\" width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:image/png;base64,", pix->x, pix->y, pix->w, pix->h);
- send_data_base64(out, buf);
- fz_printf(out, "\"/>\n");
+ fz_printf(ctx, out, "<g opacity=\"%g\">", alpha);
+ fz_printf(ctx, out, "<image x=\"%dpx\" y=\"%dpx\" width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:image/png;base64,", pix->x, pix->y, pix->w, pix->h);
+ send_data_base64(ctx, out, buf);
+ fz_printf(ctx, out, "\"/>\n");
if (alpha != 1.0f)
- fz_printf(out, "</g>");
+ fz_printf(ctx, out, "</g>");
}
fz_always(ctx)
{
@@ -769,11 +772,11 @@ svg_dev_fill_shade(fz_device *dev, fz_shade *shade, const fz_matrix *ctm, float
}
static void
-svg_dev_fill_image_mask(fz_device *dev, fz_image *image, const fz_matrix *ctm,
+svg_dev_fill_image_mask(fz_context *ctx, fz_device *dev, fz_image *image, const fz_matrix *ctm,
fz_colorspace *colorspace, float *color, float alpha)
{
- svg_device *sdev = (svg_device *)dev->user;
- fz_context *ctx = dev->ctx;
+ svg_device *sdev = dev->user;
+
fz_output *out;
fz_matrix local_ctm = *ctm;
fz_matrix scale = { 0 };
@@ -783,41 +786,40 @@ fz_colorspace *colorspace, float *color, float alpha)
scale.d = 1.0f / image->h;
fz_concat(&local_ctm, &scale, ctm);
- out = start_def(sdev);
- fz_printf(out, "<mask id=\"ma%d\"><image", mask);
- fz_printf(out, " width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:", image->w, image->h);
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<mask id=\"ma%d\"><image", mask);
+ fz_printf(ctx, out, " width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:", image->w, image->h);
switch (image->buffer == NULL ? FZ_IMAGE_JPX : image->buffer->params.type)
{
case FZ_IMAGE_JPEG:
- fz_printf(out, "image/jpeg;base64,");
- send_data_base64(out, image->buffer->buffer);
+ fz_printf(ctx, out, "image/jpeg;base64,");
+ send_data_base64(ctx, out, image->buffer->buffer);
break;
case FZ_IMAGE_PNG:
- fz_printf(out, "image/png;base64,");
- send_data_base64(out, image->buffer->buffer);
+ fz_printf(ctx, out, "image/png;base64,");
+ send_data_base64(ctx, out, image->buffer->buffer);
break;
default:
{
fz_buffer *buf = fz_new_png_from_image(ctx, image, image->w, image->h);
- fz_printf(out, "image/png;base64,");
- send_data_base64(out, buf);
+ fz_printf(ctx, out, "image/png;base64,");
+ send_data_base64(ctx, out, buf);
fz_drop_buffer(ctx, buf);
break;
}
}
- fz_printf(out, "\"/></mask>\n");
- out = end_def(sdev);
- fz_printf(out, "<rect x=\"0\" y=\"0\" width=\"%d\" height=\"%d\"", image->w, image->h);
- svg_dev_fill_color(sdev, colorspace, color, alpha);
- svg_dev_ctm(sdev, &local_ctm);
- fz_printf(out, " mask=\"url(#ma%d)\"/>\n", mask);
+ fz_printf(ctx, out, "\"/></mask>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<rect x=\"0\" y=\"0\" width=\"%d\" height=\"%d\"", image->w, image->h);
+ svg_dev_fill_color(ctx, sdev, colorspace, color, alpha);
+ svg_dev_ctm(ctx, sdev, &local_ctm);
+ fz_printf(ctx, out, " mask=\"url(#ma%d)\"/>\n", mask);
}
static void
-svg_dev_clip_image_mask(fz_device *dev, fz_image *image, const fz_rect *rect, const fz_matrix *ctm)
+svg_dev_clip_image_mask(fz_context *ctx, fz_device *dev, fz_image *image, const fz_rect *rect, const fz_matrix *ctm)
{
- svg_device *sdev = (svg_device *)dev->user;
- fz_context *ctx = dev->ctx;
+ svg_device *sdev = dev->user;
fz_output *out;
fz_matrix local_ctm = *ctm;
fz_matrix scale = { 0 };
@@ -827,99 +829,98 @@ svg_dev_clip_image_mask(fz_device *dev, fz_image *image, const fz_rect *rect, co
scale.d = 1.0f / image->h;
fz_concat(&local_ctm, &scale, ctm);
- out = start_def(sdev);
- fz_printf(out, "<mask id=\"ma%d\"><image", mask);
- svg_dev_ctm(sdev, &local_ctm);
- fz_printf(out, " width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:", image->w, image->h);
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<mask id=\"ma%d\"><image", mask);
+ svg_dev_ctm(ctx, sdev, &local_ctm);
+ fz_printf(ctx, out, " width=\"%dpx\" height=\"%dpx\" xlink:href=\"data:", image->w, image->h);
switch (image->buffer == NULL ? FZ_IMAGE_JPX : image->buffer->params.type)
{
case FZ_IMAGE_JPEG:
- fz_printf(out, "image/jpeg;base64,");
- send_data_base64(out, image->buffer->buffer);
+ fz_printf(ctx, out, "image/jpeg;base64,");
+ send_data_base64(ctx, out, image->buffer->buffer);
break;
case FZ_IMAGE_PNG:
- fz_printf(out, "image/png;base64,");
- send_data_base64(out, image->buffer->buffer);
+ fz_printf(ctx, out, "image/png;base64,");
+ send_data_base64(ctx, out, image->buffer->buffer);
break;
default:
{
fz_buffer *buf = fz_new_png_from_image(ctx, image, image->w, image->h);
- fz_printf(out, "image/png;base64,");
- send_data_base64(out, buf);
+ fz_printf(ctx, out, "image/png;base64,");
+ send_data_base64(ctx, out, buf);
fz_drop_buffer(ctx, buf);
break;
}
}
- fz_printf(out, "\"/></mask>\n");
- out = end_def(sdev);
- fz_printf(out, "<g mask=\"url(#ma%d)\">\n", mask);
+ fz_printf(ctx, out, "\"/></mask>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<g mask=\"url(#ma%d)\">\n", mask);
}
static void
-svg_dev_pop_clip(fz_device *dev)
+svg_dev_pop_clip(fz_context *ctx, fz_device *dev)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
/* FIXME */
- fz_printf(out, "</g>\n");
+ fz_printf(ctx, out, "</g>\n");
}
static void
-svg_dev_begin_mask(fz_device *dev, const fz_rect *bbox, int luminosity, fz_colorspace *colorspace, float *color)
+svg_dev_begin_mask(fz_context *ctx, fz_device *dev, const fz_rect *bbox, int luminosity, fz_colorspace *colorspace, float *color)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out;
int mask = sdev->id++;
- out = start_def(sdev);
- fz_printf(out, "<mask id=\"ma%d\">", mask);
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<mask id=\"ma%d\">", mask);
if (dev->container_len > 0)
dev->container[dev->container_len-1].user = mask;
}
static void
-svg_dev_end_mask(fz_device *dev)
+svg_dev_end_mask(fz_context *ctx, fz_device *dev)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
int mask = 0;
if (dev->container_len > 0)
mask = (int)dev->container[dev->container_len-1].user;
- fz_printf(out, "\"/></mask>\n");
- out = end_def(sdev);
- fz_printf(out, "<g mask=\"url(#ma%d)\">\n", mask);
+ fz_printf(ctx, out, "\"/></mask>\n");
+ out = end_def(ctx, sdev);
+ fz_printf(ctx, out, "<g mask=\"url(#ma%d)\">\n", mask);
}
static void
-svg_dev_begin_group(fz_device *dev, const fz_rect *bbox, int isolated, int knockout, int blendmode, float alpha)
+svg_dev_begin_group(fz_context *ctx, fz_device *dev, const fz_rect *bbox, int isolated, int knockout, int blendmode, float alpha)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
/* SVG 1.1 doesn't support adequate blendmodes/knockout etc, so just ignore it for now */
- fz_printf(out, "<g>\n");
+ fz_printf(ctx, out, "<g>\n");
}
static void
-svg_dev_end_group(fz_device *dev)
+svg_dev_end_group(fz_context *ctx, fz_device *dev)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
- fz_printf(out, "</g>\n");
+ fz_printf(ctx, out, "</g>\n");
}
static int
-svg_dev_begin_tile(fz_device *dev, const fz_rect *area, const fz_rect *view, float xstep, float ystep, const fz_matrix *ctm, int id)
+svg_dev_begin_tile(fz_context *ctx, fz_device *dev, const fz_rect *area, const fz_rect *view, float xstep, float ystep, const fz_matrix *ctm, int id)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out;
- fz_context *ctx = dev->ctx;
int num;
tile *t;
@@ -950,16 +951,16 @@ svg_dev_begin_tile(fz_device *dev, const fz_rect *area, const fz_rect *view, flo
/* The first thing we do is to capture the contents of the pattern
* as a symbol we can reuse. */
- out = start_def(sdev);
- fz_printf(out, "<symbol id=\"pac%d\">\n", t->pattern);
+ out = start_def(ctx, sdev);
+ fz_printf(ctx, out, "<symbol id=\"pac%d\">\n", t->pattern);
return 0;
}
static void
-svg_dev_end_tile(fz_device *dev)
+svg_dev_end_tile(fz_context *ctx, fz_device *dev)
{
- svg_device *sdev = (svg_device *)dev->user;
+ svg_device *sdev = dev->user;
fz_output *out = sdev->out;
int num, cp = -1;
tile *t;
@@ -971,7 +972,7 @@ svg_dev_end_tile(fz_device *dev)
num = --sdev->num_tiles;
t = &sdev->tiles[num];
- fz_printf(out, "</symbol>\n");
+ fz_printf(ctx, out, "</symbol>\n");
/* In svg, the reference tile is taken from (x,y) to (x+width,y+height)
* and is repeated at (x+n*width,y+m*height) for all integer n and m.
@@ -981,76 +982,66 @@ svg_dev_end_tile(fz_device *dev)
* pattern tile, we need to render the pattern contents several times
* to ensure that the pattern tile contains everything. */
- fz_printf(out, "<pattern id=\"pa%d\" patternUnits=\"userSpaceOnUse\" patternContentUnits=\"userSpaceOnUse\"",
+ fz_printf(ctx, out, "<pattern id=\"pa%d\" patternUnits=\"userSpaceOnUse\" patternContentUnits=\"userSpaceOnUse\"",
t->pattern);
- fz_printf(out, " x=\"0\" y=\"0\" width=\"%g\" height=\"%g\">\n",
+ fz_printf(ctx, out, " x=\"0\" y=\"0\" width=\"%g\" height=\"%g\">\n",
t->step.x, t->step.y);
if (t->view.x0 > 0 || t->step.x < t->view.x1 || t->view.y0 > 0 || t->step.y < t->view.y1)
{
cp = sdev->id++;
- fz_printf(out, "<clipPath id=\"cp%d\">\n", cp);
- fz_printf(out, "<path d=\"M %g %g L %g %g L %g %g L %g %g Z\"/>",
+ fz_printf(ctx, out, "<clipPath id=\"cp%d\">\n", cp);
+ fz_printf(ctx, out, "<path d=\"M %g %g L %g %g L %g %g L %g %g Z\"/>",
t->view.x0, t->view.y0,
t->view.x1, t->view.y0,
t->view.x1, t->view.y1,
t->view.x0, t->view.y1);
- fz_printf(out, "</clipPath>\n");
- fz_printf(out, "<g clip-path=\"url(#cp%d)\">\n", cp);
+ fz_printf(ctx, out, "</clipPath>\n");
+ fz_printf(ctx, out, "<g clip-path=\"url(#cp%d)\">\n", cp);
}
/* All the pattern contents will have their own ctm applied. Let's
* undo the current one to allow for this */
fz_invert_matrix(&inverse, &t->ctm);
- fz_printf(out, "<g");
- svg_dev_ctm(sdev, &inverse);
- fz_printf(out, ">\n");
+ fz_printf(ctx, out, "<g");
+ svg_dev_ctm(ctx, sdev, &inverse);
+ fz_printf(ctx, out, ">\n");
w = t->view.x1 - t->view.x0;
h = t->view.y1 - t->view.y0;
for (x = 0; x > -w; x -= t->step.x)
for (y = 0; y > -h; y -= t->step.y)
- fz_printf(out, "<use x=\"%g\" y=\"%g\" xlink:href=\"#pac%d\"/>", x, y, t->pattern);
+ fz_printf(ctx, out, "<use x=\"%g\" y=\"%g\" xlink:href=\"#pac%d\"/>", x, y, t->pattern);
- fz_printf(out, "</g>\n");
+ fz_printf(ctx, out, "</g>\n");
if (cp != -1)
- fz_printf(out, "</g>\n");
- fz_printf(out, "</pattern>\n");
- out = end_def(sdev);
+ fz_printf(ctx, out, "</g>\n");
+ fz_printf(ctx, out, "</pattern>\n");
+ out = end_def(ctx, sdev);
/* Finally, fill a rectangle with the pattern. */
- fz_printf(out, "<rect");
- svg_dev_ctm(sdev, &t->ctm);
- fz_printf(out, " fill=\"url(#pa%d)\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\"/>\n",
+ fz_printf(ctx, out, "<rect");
+ svg_dev_ctm(ctx, sdev, &t->ctm);
+ fz_printf(ctx, out, " fill=\"url(#pa%d)\" x=\"%g\" y=\"%g\" width=\"%g\" height=\"%g\"/>\n",
t->pattern, t->area.x0, t->area.y0, t->area.x1 - t->area.x0, t->area.y1 - t->area.y0);
}
static void
-svg_dev_drop_user(fz_device *dev)
+svg_dev_drop_user(fz_context *ctx, fz_device *dev)
{
svg_device *sdev = dev->user;
- fz_context *ctx = sdev->ctx;
fz_output *out = sdev->out;
fz_free(ctx, sdev->tiles);
fz_drop_buffer(ctx, sdev->defs_buffer);
- fz_drop_output(sdev->defs);
+ fz_drop_output(ctx, sdev->defs);
- fz_printf(out, "</svg>\n");
+ fz_printf(ctx, out, "</svg>\n");
fz_free(ctx, sdev);
}
-void svg_rebind(fz_device *dev)
-{
- svg_device *sdev = dev->user;
-
- sdev->ctx = dev->ctx;
- fz_rebind_output(sdev->out, sdev->ctx);
- fz_rebind_output(sdev->out_store, sdev->ctx);
-}
-
fz_device *fz_new_svg_device(fz_context *ctx, fz_output *out, float page_width, float page_height)
{
svg_device *sdev = fz_malloc_struct(ctx, svg_device);
@@ -1058,7 +1049,6 @@ fz_device *fz_new_svg_device(fz_context *ctx, fz_output *out, float page_width,
fz_try(ctx)
{
- sdev->ctx = ctx;
sdev->out = out;
sdev->out_store = out;
sdev->id = 0;
@@ -1071,7 +1061,6 @@ fz_device *fz_new_svg_device(fz_context *ctx, fz_output *out, float page_width,
fz_rethrow(ctx);
}
- dev->rebind = svg_rebind;
dev->drop_user = svg_dev_drop_user;
dev->fill_path = svg_dev_fill_path;
@@ -1102,9 +1091,9 @@ fz_device *fz_new_svg_device(fz_context *ctx, fz_output *out, float page_width,
dev->hints |= FZ_MAINTAIN_CONTAINER_STACK;
- fz_printf(out, "<?xml version=\"1.0\" standalone=\"no\"?>\n");
- fz_printf(out, "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n");
- fz_printf(out, "<svg xmlns=\"http://www.w3.org/2000/svg\" "
+ fz_printf(ctx, out, "<?xml version=\"1.0\" standalone=\"no\"?>\n");
+ fz_printf(ctx, out, "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n");
+ fz_printf(ctx, out, "<svg xmlns=\"http://www.w3.org/2000/svg\" "
"xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" "
"width=\"%gcm\" height=\"%gcm\" viewBox=\"0 0 %g %g\">\n",
page_width*2.54/72, page_height*2.54/72, page_width, page_height);