2 * This file is part of Libsvgtiny
3 * Licensed under the MIT License,
4 * http://opensource.org/licenses/mit-license.php
5 * Copyright 2008-2009 James Bursa <james@semichrome.net>
6 * Copyright 2012 Daniel Silverstone <dsilvers@netsurf-browser.org>
18 #include <dom/bindings/xml/xmlparser.h>
20 #include <libcss/libcss.h>
23 #include "svgtiny_internal.h"
25 /* Source file generated by `gperf`. */
26 #include "autogenerated_colors.c"
28 #define TAU 6.28318530717958647692
31 #define M_PI 3.14159265358979323846
35 #define M_PI_2 1.57079632679489661923
38 #define KAPPA 0.5522847498
40 #define degToRad(angleInDegrees) ((angleInDegrees) * M_PI / 180.0)
41 #define radToDeg(angleInRadians) ((angleInRadians) * 180.0 / M_PI)
43 static svgtiny_code
svgtiny_parse_style_element(dom_element
*style
,
44 struct svgtiny_parse_state state
);
45 static css_stylesheet
*svgtiny_parse_style_inline(const uint8_t *data
,
47 static svgtiny_code
svgtiny_preparse_styles(dom_element
*svg
,
48 struct svgtiny_parse_state state
);
49 static svgtiny_code
svgtiny_parse_svg(dom_element
*svg
,
50 struct svgtiny_parse_state state
);
51 static svgtiny_code
svgtiny_parse_path(dom_element
*path
,
52 struct svgtiny_parse_state state
);
53 static svgtiny_code
svgtiny_parse_rect(dom_element
*rect
,
54 struct svgtiny_parse_state state
);
55 static svgtiny_code
svgtiny_parse_circle(dom_element
*circle
,
56 struct svgtiny_parse_state state
);
57 static svgtiny_code
svgtiny_parse_ellipse(dom_element
*ellipse
,
58 struct svgtiny_parse_state state
);
59 static svgtiny_code
svgtiny_parse_line(dom_element
*line
,
60 struct svgtiny_parse_state state
);
61 static svgtiny_code
svgtiny_parse_poly(dom_element
*poly
,
62 struct svgtiny_parse_state state
, bool polygon
);
63 static svgtiny_code
svgtiny_parse_text(dom_element
*text
,
64 struct svgtiny_parse_state state
);
65 static void svgtiny_parse_position_attributes(dom_element
*node
,
66 const struct svgtiny_parse_state state
,
67 float *x
, float *y
, float *width
, float *height
);
68 static void svgtiny_parse_paint_attributes(dom_element
*node
,
69 struct svgtiny_parse_state
*state
);
70 static void svgtiny_parse_font_attributes(dom_element
*node
,
71 struct svgtiny_parse_state
*state
);
72 static void svgtiny_parse_transform_attributes(dom_element
*node
,
73 struct svgtiny_parse_state
*state
);
74 static void svgtiny_parse_styles(dom_element
*node
,
75 struct svgtiny_parse_state
*state
);
76 static svgtiny_code
svgtiny_add_path(float *p
, unsigned int n
,
77 struct svgtiny_parse_state
*state
);
78 static void _svgtiny_parse_color(const char *s
, svgtiny_colour
*c
,
79 struct svgtiny_parse_state_gradient
*grad
,
80 struct svgtiny_parse_state
*state
);
83 * rotate midpoint vector
86 rotate_midpoint_vector(float ax
, float ay
,
89 double *x_out
, double *y_out
)
91 double dx2
; /* midpoint x coordinate */
92 double dy2
; /* midpoint y coordinate */
93 double cosangle
; /* cosine of rotation angle */
94 double sinangle
; /* sine of rotation angle */
96 /* compute the sin and cos of the angle */
97 cosangle
= cos(radangle
);
98 sinangle
= sin(radangle
);
100 /* compute the midpoint between start and end points */
101 dx2
= (ax
- bx
) / 2.0;
102 dy2
= (ay
- by
) / 2.0;
104 /* rotate vector to remove angle */
105 *x_out
= ((cosangle
* dx2
) + (sinangle
* dy2
));
106 *y_out
= ((-sinangle
* dx2
) + (cosangle
* dy2
));
111 * ensure the arc radii are large enough and scale as appropriate
113 * the radii need to be large enough if they are not they must be
114 * adjusted. This allows for elimination of differences between
115 * implementations especialy with rounding.
118 ensure_radii_scale(double x1_sq
, double y1_sq
,
119 float *rx
, float *ry
,
120 double *rx_sq
, double *ry_sq
)
125 /* set radii square values */
126 (*rx_sq
) = (*rx
) * (*rx
);
127 (*ry_sq
) = (*ry
) * (*ry
);
129 radiisum
= (x1_sq
/ (*rx_sq
)) + (y1_sq
/ (*ry_sq
));
130 if (radiisum
> 0.99999) {
131 /* need to scale radii */
132 radiiscale
= sqrt(radiisum
) * 1.00001;
133 *rx
= (float)(radiiscale
* (*rx
));
134 *ry
= (float)(radiiscale
* (*ry
));
135 /* update squares too */
136 (*rx_sq
) = (*rx
) * (*rx
);
137 (*ry_sq
) = (*ry
) * (*ry
);
143 * compute the transformed centre point
146 compute_transformed_centre_point(double sign
, float rx
, float ry
,
147 double rx_sq
, double ry_sq
,
148 double x1
, double y1
,
149 double x1_sq
, double y1_sq
,
150 double *cx1
, double *cy1
)
154 sq
= ((rx_sq
* ry_sq
) - (rx_sq
* y1_sq
) - (ry_sq
* x1_sq
)) /
155 ((rx_sq
* y1_sq
) + (ry_sq
* x1_sq
));
156 sq
= (sq
< 0) ? 0 : sq
;
158 coef
= (sign
* sqrt(sq
));
160 *cx1
= coef
* ((rx
* y1
) / ry
);
161 *cy1
= coef
* -((ry
* x1
) / rx
);
166 * compute untransformed centre point
168 * \param ax The first point x coordinate
169 * \param ay The first point y coordinate
170 * \param bx The second point x coordinate
171 * \param ay The second point y coordinate
174 compute_centre_point(float ax
, float ay
,
176 double cx1
, double cy1
,
178 double *x_out
, double *y_out
)
182 double cosangle
; /* cosine of rotation angle */
183 double sinangle
; /* sine of rotation angle */
185 /* compute the sin and cos of the angle */
186 cosangle
= cos(radangle
);
187 sinangle
= sin(radangle
);
189 sx2
= (ax
+ bx
) / 2.0;
190 sy2
= (ay
+ by
) / 2.0;
192 *x_out
= sx2
+ (cosangle
* cx1
- sinangle
* cy1
);
193 *y_out
= sy2
+ (sinangle
* cx1
+ cosangle
* cy1
);
198 * compute the angle start and extent
201 compute_angle_start_extent(float rx
, float ry
,
202 double x1
, double y1
,
203 double cx1
, double cy1
,
204 double *start
, double *extent
)
215 * Angle betwen two vectors is +/- acos( u.v / len(u) * len(v))
217 * '.' is the dot product.
218 * +/- is calculated from the sign of the cross product (u x v)
221 ux
= (x1
- cx1
) / rx
;
222 uy
= (y1
- cy1
) / ry
;
223 vx
= (-x1
- cx1
) / rx
;
224 vy
= (-y1
- cy1
) / ry
;
226 /* compute the start angle */
227 /* The angle between (ux, uy) and the 0 angle */
229 /* len(u) * len(1,0) == len(u) */
230 n
= sqrt((ux
* ux
) + (uy
* uy
));
231 /* u.v == (ux,uy).(1,0) == (1 * ux) + (0 * uy) == ux */
233 /* u x v == (1 * uy - ux * 0) == uy */
234 sign
= (uy
< 0) ? -1.0 : 1.0;
235 /* (p >= n) so safe */
236 *start
= sign
* acos(p
/ n
);
238 /* compute the extent angle */
239 n
= sqrt(((ux
* ux
) + (uy
* uy
)) * ((vx
* vx
) + (vy
* vy
)));
240 p
= (ux
* vx
) + (uy
* vy
);
241 sign
= ((ux
* vy
) - (uy
* vx
) < 0) ? -1.0f
: 1.0f
;
243 /* arc cos must operate between -1 and 1 */
246 *extent
= sign
* M_PI
;
247 } else if (actmp
> 1.0) {
250 *extent
= sign
* acos(actmp
);
256 * converts a circle centered unit circle arc to a series of bezier curves
258 * Each bezier is stored as six values of three pairs of coordinates
260 * The beziers are stored without their start point as that is assumed
261 * to be the preceding elements end point.
263 * \param start The start angle of the arc (in radians)
264 * \param extent The size of the arc (in radians)
265 * \param bzpt The array to store the bezier values in
266 * \return The number of bezier segments output (max 4)
269 circle_arc_to_bezier(double start
, double extent
, double *bzpt
)
279 bzsegments
= (int) ceil(fabs(extent
) / M_PI_2
);
280 increment
= extent
/ bzsegments
;
281 controllen
= 4.0 / 3.0 * sin(increment
/ 2.0) / (1.0 + cos(increment
/ 2.0));
283 for (segment
= 0; segment
< bzsegments
; segment
++) {
284 /* first control point */
285 angle
= start
+ (segment
* increment
);
288 bzpt
[pos
++] = dx
- controllen
* dy
;
289 bzpt
[pos
++] = dy
+ controllen
* dx
;
290 /* second control point */
294 bzpt
[pos
++] = dx
+ controllen
* dy
;
295 bzpt
[pos
++] = dy
- controllen
* dx
;
306 * transform coordinate list
308 * perform a scale, rotate and translate on list of coordinates
314 * homogeneous transforms
322 * | cos(an) -sin(an) 0 |
323 * R = | sin(an) cos(an) 0 |
326 * {{cos(a), -sin(a) 0}, {sin(a), cos(a),0}, {0,0,1}}
333 * note order is significat here and the combined matrix is
336 * | cos(an) -sin(an) cx |
337 * T.R = | sin(an) cos(an) cy |
340 * | rx * cos(an) ry * -sin(an) cx |
341 * T.R.S = | rx * sin(an) ry * cos(an) cy |
344 * {{Cos[a], -Sin[a], c}, {Sin[a], Cos[a], d}, {0, 0, 1}} . {{r, 0, 0}, {0, s, 0}, {0, 0, 1}}
356 * x2 = cx + (rx * x1 * cos(a)) + (ry * y1 * -1 * sin(a))
357 * y2 = cy + (ry * y1 * cos(a)) + (rx * x1 * sin(a))
360 * \param rx X scaling to apply
361 * \param ry Y scaling to apply
362 * \param radangle rotation to apply (in radians)
363 * \param cx X translation to apply
364 * \param cy Y translation to apply
365 * \param points The size of the bzpoints array
366 * \param bzpoints an array of x,y values to apply the transform to
369 scale_rotate_translate_points(double rx
, double ry
,
371 double cx
, double cy
,
376 double cosangle
; /* cosine of rotation angle */
377 double sinangle
; /* sine of rotation angle */
378 double rxcosangle
, rxsinangle
, rycosangle
, rynsinangle
;
381 /* compute the sin and cos of the angle */
382 cosangle
= cos(radangle
);
383 sinangle
= sin(radangle
);
385 rxcosangle
= rx
* cosangle
;
386 rxsinangle
= rx
* sinangle
;
387 rycosangle
= ry
* cosangle
;
388 rynsinangle
= ry
* -1 * sinangle
;
390 for (pnt
= 0; pnt
< pntsize
; pnt
+=2) {
391 x2
= cx
+ (points
[pnt
] * rxcosangle
) + (points
[pnt
+ 1] * rynsinangle
);
392 y2
= cy
+ (points
[pnt
+ 1] * rycosangle
) + (points
[pnt
] * rxsinangle
);
394 points
[pnt
+ 1] = y2
;
400 * convert an svg path arc to a bezier curve
402 * This function perfoms a transform on the nine arc parameters
403 * (coordinate pairs for start and end together with the radii of the
404 * elipse, the rotation angle and which of the four arcs to draw)
405 * which generates the parameters (coordinate pairs for start,
406 * end and their control points) for a set of up to four bezier curves.
408 * Obviously the start and end coordinates are not altered between
409 * representations so the aim is to calculate the coordinate pairs for
410 * the bezier control points.
412 * \param bzpoints the array to fill with bezier curves
413 * \return the number of bezier segments generated or -1 for a line
416 svgarc_to_bezier(float start_x
,
427 double radangle
; /* normalised elipsis rotation angle in radians */
428 double rx_sq
; /* x radius squared */
429 double ry_sq
; /* y radius squared */
430 double x1
, y1
; /* rotated midpoint vector */
431 double x1_sq
, y1_sq
; /* x1 vector squared */
432 double cx1
,cy1
; /* transformed circle center */
433 double cx
,cy
; /* circle center */
434 double start
, extent
;
437 if ((start_x
== end_x
) && (start_y
== end_y
)) {
439 * if the start and end coordinates are the same the
440 * svg spec says this is equivalent to having no segment
446 if ((rx
== 0) || (ry
== 0)) {
448 * if either radii is zero the specified behaviour is a line
453 /* obtain the absolute values of the radii */
457 /* convert normalised angle to radians */
458 radangle
= degToRad(fmod(angle
, 360.0));
461 /* x1,x2 is the midpoint vector rotated to remove the arc angle */
462 rotate_midpoint_vector(start_x
, start_y
, end_x
, end_y
, radangle
, &x1
, &y1
);
465 /* get squared x1 values */
469 /* ensure radii are correctly scaled */
470 ensure_radii_scale(x1_sq
, y1_sq
, &rx
, &ry
, &rx_sq
, &ry_sq
);
472 /* compute the transformed centre point */
473 compute_transformed_centre_point(largearc
== sweep
?-1:1,
481 /* get the untransformed centre point */
482 compute_centre_point(start_x
, start_y
,
489 /* compute anglestart and extent */
490 compute_angle_start_extent(rx
,ry
,
495 /* extent of 0 is a straight line */
500 /* take account of sweep */
501 if (!sweep
&& extent
> 0) {
503 } else if (sweep
&& extent
< 0) {
507 /* normalise start and extent */
508 extent
= fmod(extent
, TAU
);
509 start
= fmod(start
, TAU
);
511 /* convert the arc to unit circle bezier curves */
512 bzsegments
= circle_arc_to_bezier(start
, extent
, bzpoints
);
514 /* transform the bezier curves */
515 scale_rotate_translate_points(rx
, ry
,
526 * Call this to ref the strings in a gradient state.
528 static void svgtiny_grad_string_ref(struct svgtiny_parse_state_gradient
*grad
)
530 if (grad
->gradient_x1
!= NULL
) {
531 dom_string_ref(grad
->gradient_x1
);
533 if (grad
->gradient_y1
!= NULL
) {
534 dom_string_ref(grad
->gradient_y1
);
536 if (grad
->gradient_x2
!= NULL
) {
537 dom_string_ref(grad
->gradient_x2
);
539 if (grad
->gradient_y2
!= NULL
) {
540 dom_string_ref(grad
->gradient_y2
);
545 * Call this to clean up the strings in a gradient state.
547 static void svgtiny_grad_string_cleanup(
548 struct svgtiny_parse_state_gradient
*grad
)
550 if (grad
->gradient_x1
!= NULL
) {
551 dom_string_unref(grad
->gradient_x1
);
552 grad
->gradient_x1
= NULL
;
554 if (grad
->gradient_y1
!= NULL
) {
555 dom_string_unref(grad
->gradient_y1
);
556 grad
->gradient_y1
= NULL
;
558 if (grad
->gradient_x2
!= NULL
) {
559 dom_string_unref(grad
->gradient_x2
);
560 grad
->gradient_x2
= NULL
;
562 if (grad
->gradient_y2
!= NULL
) {
563 dom_string_unref(grad
->gradient_y2
);
564 grad
->gradient_y2
= NULL
;
569 * Set the local externally-stored parts of a parse state.
570 * Call this in functions that made a new state on the stack.
571 * Doesn't make own copy of global state, such as the interned string list.
573 static void svgtiny_setup_state_local(struct svgtiny_parse_state
*state
)
575 svgtiny_grad_string_ref(&(state
->fill_grad
));
576 svgtiny_grad_string_ref(&(state
->stroke_grad
));
580 * Cleanup the local externally-stored parts of a parse state.
581 * Call this in functions that made a new state on the stack.
582 * Doesn't cleanup global state, such as the interned string list.
584 static void svgtiny_cleanup_state_local(struct svgtiny_parse_state
*state
)
586 svgtiny_grad_string_cleanup(&(state
->fill_grad
));
587 svgtiny_grad_string_cleanup(&(state
->stroke_grad
));
592 * Create a new svgtiny_diagram structure.
595 struct svgtiny_diagram
*svgtiny_create(void)
597 struct svgtiny_diagram
*diagram
;
599 diagram
= calloc(sizeof(*diagram
), 1);
608 static void ignore_msg(uint32_t severity
, void *ctx
, const char *msg
, ...)
616 * Parse a block of memory into a svgtiny_diagram.
619 svgtiny_code
svgtiny_parse(struct svgtiny_diagram
*diagram
,
620 const char *buffer
, size_t size
, const char *url
,
621 int viewport_width
, int viewport_height
)
624 dom_document
*document
;
626 dom_xml_parser
*parser
;
629 dom_string
*svg_name
;
630 lwc_string
*svg_name_lwc
;
631 struct svgtiny_parse_state state
;
632 float x
, y
, width
, height
;
641 parser
= dom_xml_parser_create(NULL
, NULL
,
642 ignore_msg
, NULL
, &document
);
645 return svgtiny_LIBDOM_ERROR
;
647 err
= dom_xml_parser_parse_chunk(parser
, (uint8_t *)buffer
, size
);
648 if (err
!= DOM_XML_OK
) {
649 dom_node_unref(document
);
650 dom_xml_parser_destroy(parser
);
651 return svgtiny_LIBDOM_ERROR
;
654 err
= dom_xml_parser_completed(parser
);
655 if (err
!= DOM_XML_OK
) {
656 dom_node_unref(document
);
657 dom_xml_parser_destroy(parser
);
658 return svgtiny_LIBDOM_ERROR
;
661 /* We're done parsing, drop the parser.
662 * We now own the document entirely.
664 dom_xml_parser_destroy(parser
);
666 /* find root <svg> element */
667 exc
= dom_document_get_document_element(document
, &svg
);
668 if (exc
!= DOM_NO_ERR
) {
669 dom_node_unref(document
);
670 return svgtiny_LIBDOM_ERROR
;
673 /* no root svg element */
674 dom_node_unref(document
);
675 return svgtiny_SVG_ERROR
;
678 exc
= dom_node_get_node_name(svg
, &svg_name
);
679 if (exc
!= DOM_NO_ERR
) {
681 dom_node_unref(document
);
682 return svgtiny_LIBDOM_ERROR
;
684 if (lwc_intern_string("svg", 3 /* SLEN("svg") */,
685 &svg_name_lwc
) != lwc_error_ok
) {
686 dom_string_unref(svg_name
);
688 dom_node_unref(document
);
689 return svgtiny_LIBDOM_ERROR
;
691 if (!dom_string_caseless_lwc_isequal(svg_name
, svg_name_lwc
)) {
692 lwc_string_unref(svg_name_lwc
);
693 dom_string_unref(svg_name
);
695 dom_node_unref(document
);
696 return svgtiny_NOT_SVG
;
699 lwc_string_unref(svg_name_lwc
);
700 dom_string_unref(svg_name
);
702 /* initialize the state struct with zeros */
703 memset(&state
, 0, sizeof(state
));
705 /* get graphic dimensions */
706 state
.diagram
= diagram
;
707 state
.document
= document
;
708 state
.viewport_width
= viewport_width
;
709 state
.viewport_height
= viewport_height
;
711 /* Initialize CSS context */
712 css_code
= css_select_ctx_create(&state
.select_ctx
);
713 if (css_code
!= CSS_OK
) {
715 dom_node_unref(document
);
716 return svgtiny_LIBCSS_ERROR
;
719 #define SVGTINY_STRING_ACTION2(s,n) \
720 if (dom_string_create_interned((const uint8_t *) #n, \
721 strlen(#n), &state.interned_##s) \
723 code = svgtiny_LIBDOM_ERROR; \
726 #include "svgtiny_strings.h"
727 #undef SVGTINY_STRING_ACTION2
729 /* Intern SVG's xmlns separately because it's an lwc_string
730 * and not a dom_string. We initialize its pointer to NULL
731 * because the "cleanup:" test to see if it needs to be free'd
732 * looks for NULL. Returning a LIBDOM_ERROR on failure is not
733 * perfect but it's the closest of the available options. */
734 state
.interned_svg_xmlns
= NULL
;
735 if (lwc_intern_string("http://www.w3.org/2000/svg",
737 &state
.interned_svg_xmlns
) != lwc_error_ok
) {
738 code
= svgtiny_LIBDOM_ERROR
;
742 svgtiny_parse_position_attributes(svg
, state
, &x
, &y
, &width
, &height
);
743 diagram
->width
= width
;
744 diagram
->height
= height
;
746 /* set up parsing state */
747 state
.viewport_width
= width
;
748 state
.viewport_height
= height
;
749 state
.ctm
.a
= 1; /*(float) viewport_width / (float) width;*/
752 state
.ctm
.d
= 1; /*(float) viewport_height / (float) height;*/
753 state
.ctm
.e
= 0; /*x;*/
754 state
.ctm
.f
= 0; /*y;*/
755 state
.fill
= 0x000000;
756 state
.stroke
= svgtiny_TRANSPARENT
;
757 state
.stroke_width
= 1;
760 code
= svgtiny_preparse_styles(svg
, state
);
761 if (code
== svgtiny_OK
) {
762 code
= svgtiny_parse_svg(svg
, state
);
766 dom_node_unref(document
);
767 css_code
= css_select_ctx_destroy(state
.select_ctx
);
768 if (css_code
!= CSS_OK
) {
769 code
= svgtiny_LIBCSS_ERROR
;
773 svgtiny_cleanup_state_local(&state
);
774 #define SVGTINY_STRING_ACTION2(s,n) \
775 if (state.interned_##s != NULL) \
776 dom_string_unref(state.interned_##s);
777 #include "svgtiny_strings.h"
778 #undef SVGTINY_STRING_ACTION2
780 if (state
.interned_svg_xmlns
!= NULL
) {
781 lwc_string_unref(state
.interned_svg_xmlns
);
789 * Parse a single <style> element, appending the result to the CSS
790 * select context within the given parser state.
792 svgtiny_code
svgtiny_parse_style_element(dom_element
*style
,
793 struct svgtiny_parse_state state
)
795 css_stylesheet
*sheet
;
799 code
= svgtiny_create_stylesheet(&sheet
, false);
800 if (code
!= CSS_OK
) {
801 return svgtiny_LIBCSS_ERROR
;
804 /* Parse the style element's "media" attribute if it has
805 one. We don't do anything with it right now. */
806 dom_string
*media_attr
;
807 exc
= dom_element_get_attribute(style
, state
.interned_media
,
809 if (exc
!= DOM_NO_ERR
) {
810 css_stylesheet_destroy(sheet
);
811 return svgtiny_LIBDOM_ERROR
;
815 /* Here's where we'd actually change the media type if
816 we were going to use it */
817 dom_string_unref(media_attr
);
821 dom_node_get_text_content(style
, &data
);
823 /* Empty stylesheet? That's fine. */
824 css_stylesheet_destroy(sheet
);
828 code
= css_stylesheet_append_data(sheet
,
829 (uint8_t *)dom_string_data(data
),
830 dom_string_byte_length(data
));
831 if (code
!= CSS_OK
&& code
!= CSS_NEEDDATA
) {
832 dom_string_unref(data
);
833 css_stylesheet_destroy(sheet
);
834 return svgtiny_LIBCSS_ERROR
;
837 code
= css_stylesheet_data_done(sheet
);
838 if (code
!= CSS_OK
) {
839 dom_string_unref(data
);
840 css_stylesheet_destroy(sheet
);
841 return svgtiny_LIBCSS_ERROR
;
844 code
= css_select_ctx_append_sheet(state
.select_ctx
,
848 if (code
!= CSS_OK
) {
849 dom_string_unref(data
);
850 return svgtiny_LIBCSS_ERROR
;
853 dom_string_unref(data
);
859 * Parse the contents of an inline style and return (a pointer to) the
860 * corresponding stylesheet for use with css_select_style(). Returns
861 * NULL if anything goes wrong.
863 css_stylesheet
*svgtiny_parse_style_inline(const uint8_t *data
,
866 css_stylesheet
*sheet
;
869 code
= svgtiny_create_stylesheet(&sheet
, true);
870 if (code
!= CSS_OK
) {
874 code
= css_stylesheet_append_data(sheet
, data
, len
);
875 if (code
!= CSS_OK
&& code
!= CSS_NEEDDATA
) {
876 css_stylesheet_destroy(sheet
);
880 code
= css_stylesheet_data_done(sheet
);
881 if (code
!= CSS_OK
) {
882 css_stylesheet_destroy(sheet
);
890 * Parse all <style> elements within a root <svg> element. This
891 * should be called before svgtiny_parse_svg() because that function
892 * makes a single pass through the document and we'd like all style
893 * information to be available during that pass. Specifically, we'd
894 * like a <style> sheet at the end of the document to affect the
895 * rendering of elements at its beginning.
897 * The element-parsing inner loop here is essentially the same as
898 * that within svgtiny_parse_svg().
900 svgtiny_code
svgtiny_preparse_styles(dom_element
*svg
,
901 struct svgtiny_parse_state state
)
906 exc
= dom_node_get_first_child(svg
, (dom_node
**) (void *) &child
);
907 if (exc
!= DOM_NO_ERR
) {
908 return svgtiny_LIBDOM_ERROR
;
910 while (child
!= NULL
) {
912 dom_node_type nodetype
;
913 svgtiny_code code
= svgtiny_OK
;
915 exc
= dom_node_get_node_type(child
, &nodetype
);
916 if (exc
!= DOM_NO_ERR
) {
917 dom_node_unref(child
);
918 return svgtiny_LIBDOM_ERROR
;
920 if (nodetype
== DOM_ELEMENT_NODE
) {
921 dom_string
*nodename
;
922 exc
= dom_node_get_node_name(child
, &nodename
);
923 if (exc
!= DOM_NO_ERR
) {
924 dom_node_unref(child
);
925 return svgtiny_LIBDOM_ERROR
;
928 if (dom_string_caseless_isequal(state
.interned_style
,
930 /* We have a <style> element, parse it */
931 code
= svgtiny_parse_style_element(child
,
936 dom_string_unref(nodename
);
938 if (code
!= svgtiny_OK
) {
939 dom_node_unref(child
);
942 exc
= dom_node_get_next_sibling(child
,
943 (dom_node
**) (void *) &next
);
944 dom_node_unref(child
);
945 if (exc
!= DOM_NO_ERR
) {
946 return svgtiny_LIBDOM_ERROR
;
955 * Parse <svg>, <g>, and <a> element nodes.
958 svgtiny_code
svgtiny_parse_svg(dom_element
*svg
,
959 struct svgtiny_parse_state state
)
961 float x
, y
, width
, height
;
962 dom_string
*view_box
;
966 svgtiny_setup_state_local(&state
);
968 svgtiny_parse_position_attributes(svg
, state
, &x
, &y
, &width
, &height
);
969 svgtiny_parse_paint_attributes(svg
, &state
);
970 svgtiny_parse_font_attributes(svg
, &state
);
971 svgtiny_parse_styles(svg
, &state
);
973 exc
= dom_element_get_attribute(svg
, state
.interned_viewBox
,
975 if (exc
!= DOM_NO_ERR
) {
976 svgtiny_cleanup_state_local(&state
);
977 return svgtiny_LIBDOM_ERROR
;
981 char *s
= strndup(dom_string_data(view_box
),
982 dom_string_byte_length(view_box
));
983 float min_x
, min_y
, vwidth
, vheight
;
984 if (sscanf(s
, "%f,%f,%f,%f",
985 &min_x
, &min_y
, &vwidth
, &vheight
) == 4 ||
986 sscanf(s
, "%f %f %f %f",
987 &min_x
, &min_y
, &vwidth
, &vheight
) == 4) {
988 state
.ctm
.a
= (float) state
.viewport_width
/ vwidth
;
989 state
.ctm
.d
= (float) state
.viewport_height
/ vheight
;
990 state
.ctm
.e
+= -min_x
* state
.ctm
.a
;
991 state
.ctm
.f
+= -min_y
* state
.ctm
.d
;
994 dom_string_unref(view_box
);
997 svgtiny_parse_transform_attributes(svg
, &state
);
999 exc
= dom_node_get_first_child(svg
, (dom_node
**) (void *) &child
);
1000 if (exc
!= DOM_NO_ERR
) {
1001 svgtiny_cleanup_state_local(&state
);
1002 return svgtiny_LIBDOM_ERROR
;
1004 while (child
!= NULL
) {
1006 dom_node_type nodetype
;
1007 svgtiny_code code
= svgtiny_OK
;
1009 exc
= dom_node_get_node_type(child
, &nodetype
);
1010 if (exc
!= DOM_NO_ERR
) {
1011 dom_node_unref(child
);
1012 return svgtiny_LIBDOM_ERROR
;
1014 if (nodetype
== DOM_ELEMENT_NODE
) {
1015 dom_string
*nodename
;
1016 exc
= dom_node_get_node_name(child
, &nodename
);
1017 if (exc
!= DOM_NO_ERR
) {
1018 dom_node_unref(child
);
1019 svgtiny_cleanup_state_local(&state
);
1020 return svgtiny_LIBDOM_ERROR
;
1022 if (dom_string_caseless_isequal(state
.interned_svg
,
1024 code
= svgtiny_parse_svg(child
, state
);
1025 else if (dom_string_caseless_isequal(state
.interned_g
,
1027 code
= svgtiny_parse_svg(child
, state
);
1028 else if (dom_string_caseless_isequal(state
.interned_a
,
1030 code
= svgtiny_parse_svg(child
, state
);
1031 else if (dom_string_caseless_isequal(state
.interned_path
,
1033 code
= svgtiny_parse_path(child
, state
);
1034 else if (dom_string_caseless_isequal(state
.interned_rect
,
1036 code
= svgtiny_parse_rect(child
, state
);
1037 else if (dom_string_caseless_isequal(state
.interned_circle
,
1039 code
= svgtiny_parse_circle(child
, state
);
1040 else if (dom_string_caseless_isequal(state
.interned_ellipse
,
1042 code
= svgtiny_parse_ellipse(child
, state
);
1043 else if (dom_string_caseless_isequal(state
.interned_line
,
1045 code
= svgtiny_parse_line(child
, state
);
1046 else if (dom_string_caseless_isequal(state
.interned_polyline
,
1048 code
= svgtiny_parse_poly(child
, state
, false);
1049 else if (dom_string_caseless_isequal(state
.interned_polygon
,
1051 code
= svgtiny_parse_poly(child
, state
, true);
1052 else if (dom_string_caseless_isequal(state
.interned_text
,
1054 code
= svgtiny_parse_text(child
, state
);
1055 dom_string_unref(nodename
);
1057 if (code
!= svgtiny_OK
) {
1058 dom_node_unref(child
);
1059 svgtiny_cleanup_state_local(&state
);
1062 exc
= dom_node_get_next_sibling(child
,
1063 (dom_node
**) (void *) &next
);
1064 dom_node_unref(child
);
1065 if (exc
!= DOM_NO_ERR
) {
1066 svgtiny_cleanup_state_local(&state
);
1067 return svgtiny_LIBDOM_ERROR
;
1072 svgtiny_cleanup_state_local(&state
);
1079 * Parse a <path> element node.
1081 * http://www.w3.org/TR/SVG11/paths#PathElement
1084 svgtiny_code
svgtiny_parse_path(dom_element
*path
,
1085 struct svgtiny_parse_state state
)
1088 dom_string
*path_d_str
;
1091 float *p
; /* path elemets */
1092 unsigned int palloc
; /* number of path elements allocated */
1094 float last_x
= 0, last_y
= 0;
1095 float last_cubic_x
= 0, last_cubic_y
= 0;
1096 float last_quad_x
= 0, last_quad_y
= 0;
1097 float subpath_first_x
= 0, subpath_first_y
= 0;
1099 svgtiny_setup_state_local(&state
);
1101 svgtiny_parse_paint_attributes(path
, &state
);
1102 svgtiny_parse_transform_attributes(path
, &state
);
1103 svgtiny_parse_styles(path
, &state
);
1105 /* read d attribute */
1106 exc
= dom_element_get_attribute(path
, state
.interned_d
, &path_d_str
);
1107 if (exc
!= DOM_NO_ERR
) {
1108 state
.diagram
->error_line
= -1; /* path->line; */
1109 state
.diagram
->error_message
= "path: error retrieving d attribute";
1110 svgtiny_cleanup_state_local(&state
);
1111 return svgtiny_SVG_ERROR
;
1114 if (path_d_str
== NULL
) {
1115 state
.diagram
->error_line
= -1; /* path->line; */
1116 state
.diagram
->error_message
= "path: missing d attribute";
1117 svgtiny_cleanup_state_local(&state
);
1118 return svgtiny_SVG_ERROR
;
1121 /* empty path is permitted it just disables the path */
1122 palloc
= dom_string_byte_length(path_d_str
);
1124 dom_string_unref(path_d_str
);
1125 svgtiny_cleanup_state_local(&state
);
1129 /* local copy of the path data allowing in-place modification */
1130 s
= path_d
= strndup(dom_string_data(path_d_str
), palloc
);
1131 dom_string_unref(path_d_str
);
1133 svgtiny_cleanup_state_local(&state
);
1134 return svgtiny_OUT_OF_MEMORY
;
1137 /* ensure path element allocation is sensibly bounded */
1140 } else if (palloc
> 64) {
1141 palloc
= palloc
/ 2;
1144 /* allocate initial space for path elements */
1145 p
= malloc(sizeof p
[0] * palloc
);
1148 svgtiny_cleanup_state_local(&state
);
1149 return svgtiny_OUT_OF_MEMORY
;
1152 /* parse d and build path */
1153 for (i
= 0; s
[i
]; i
++)
1160 float x
, y
, x1
, y1
, x2
, y2
, rx
, ry
, rotation
, large_arc
, sweep
;
1163 /* Ensure there is sufficient space for path elements */
1164 #define ALLOC_PATH_ELEMENTS(NUM_ELEMENTS) \
1166 if ((palloc - i) < NUM_ELEMENTS) { \
1168 palloc = (palloc * 2) + (palloc / 2); \
1169 tp = realloc(p, sizeof p[0] * palloc); \
1173 svgtiny_cleanup_state_local(&state); \
1174 return svgtiny_OUT_OF_MEMORY; \
1181 /* moveto (M, m), lineto (L, l) (2 arguments) */
1182 if (sscanf(s
, " %1[MmLl] %f %f %n", command
, &x
, &y
, &n
) == 3) {
1183 /*LOG(("moveto or lineto"));*/
1184 if (*command
== 'M' || *command
== 'm')
1185 plot_command
= svgtiny_PATH_MOVE
;
1187 plot_command
= svgtiny_PATH_LINE
;
1189 ALLOC_PATH_ELEMENTS(3);
1190 p
[i
++] = plot_command
;
1191 if ('a' <= *command
) {
1195 if (plot_command
== svgtiny_PATH_MOVE
) {
1196 subpath_first_x
= x
;
1197 subpath_first_y
= y
;
1199 p
[i
++] = last_cubic_x
= last_quad_x
= last_x
1201 p
[i
++] = last_cubic_y
= last_quad_y
= last_y
1204 plot_command
= svgtiny_PATH_LINE
;
1205 } while (sscanf(s
, "%f %f %n", &x
, &y
, &n
) == 2);
1207 /* closepath (Z, z) (no arguments) */
1208 } else if (sscanf(s
, " %1[Zz] %n", command
, &n
) == 1) {
1209 /*LOG(("closepath"));*/
1210 ALLOC_PATH_ELEMENTS(1);
1212 p
[i
++] = svgtiny_PATH_CLOSE
;
1214 last_cubic_x
= last_quad_x
= last_x
= subpath_first_x
;
1215 last_cubic_y
= last_quad_y
= last_y
= subpath_first_y
;
1217 /* horizontal lineto (H, h) (1 argument) */
1218 } else if (sscanf(s
, " %1[Hh] %f %n", command
, &x
, &n
) == 2) {
1219 /*LOG(("horizontal lineto"));*/
1221 ALLOC_PATH_ELEMENTS(3);
1223 p
[i
++] = svgtiny_PATH_LINE
;
1224 if (*command
== 'h')
1226 p
[i
++] = last_cubic_x
= last_quad_x
= last_x
1228 p
[i
++] = last_cubic_y
= last_quad_y
= last_y
;
1230 } while (sscanf(s
, "%f %n", &x
, &n
) == 1);
1232 /* vertical lineto (V, v) (1 argument) */
1233 } else if (sscanf(s
, " %1[Vv] %f %n", command
, &y
, &n
) == 2) {
1234 /*LOG(("vertical lineto"));*/
1236 ALLOC_PATH_ELEMENTS(3);
1238 p
[i
++] = svgtiny_PATH_LINE
;
1239 if (*command
== 'v')
1241 p
[i
++] = last_cubic_x
= last_quad_x
= last_x
;
1242 p
[i
++] = last_cubic_y
= last_quad_y
= last_y
1245 } while (sscanf(s
, "%f %n", &y
, &n
) == 1);
1247 /* curveto (C, c) (6 arguments) */
1248 } else if (sscanf(s
, " %1[Cc] %f %f %f %f %f %f %n", command
,
1249 &x1
, &y1
, &x2
, &y2
, &x
, &y
, &n
) == 7) {
1250 /*LOG(("curveto"));*/
1252 ALLOC_PATH_ELEMENTS(7);
1254 p
[i
++] = svgtiny_PATH_BEZIER
;
1255 if (*command
== 'c') {
1265 p
[i
++] = last_cubic_x
= x2
;
1266 p
[i
++] = last_cubic_y
= y2
;
1267 p
[i
++] = last_quad_x
= last_x
= x
;
1268 p
[i
++] = last_quad_y
= last_y
= y
;
1270 } while (sscanf(s
, "%f %f %f %f %f %f %n",
1271 &x1
, &y1
, &x2
, &y2
, &x
, &y
, &n
) == 6);
1273 /* shorthand/smooth curveto (S, s) (4 arguments) */
1274 } else if (sscanf(s
, " %1[Ss] %f %f %f %f %n", command
,
1275 &x2
, &y2
, &x
, &y
, &n
) == 5) {
1276 /*LOG(("shorthand/smooth curveto"));*/
1278 ALLOC_PATH_ELEMENTS(7);
1280 p
[i
++] = svgtiny_PATH_BEZIER
;
1281 x1
= last_x
+ (last_x
- last_cubic_x
);
1282 y1
= last_y
+ (last_y
- last_cubic_y
);
1283 if (*command
== 's') {
1291 p
[i
++] = last_cubic_x
= x2
;
1292 p
[i
++] = last_cubic_y
= y2
;
1293 p
[i
++] = last_quad_x
= last_x
= x
;
1294 p
[i
++] = last_quad_y
= last_y
= y
;
1296 } while (sscanf(s
, "%f %f %f %f %n",
1297 &x2
, &y2
, &x
, &y
, &n
) == 4);
1299 /* quadratic Bezier curveto (Q, q) (4 arguments) */
1300 } else if (sscanf(s
, " %1[Qq] %f %f %f %f %n", command
,
1301 &x1
, &y1
, &x
, &y
, &n
) == 5) {
1302 /*LOG(("quadratic Bezier curveto"));*/
1304 ALLOC_PATH_ELEMENTS(7);
1306 p
[i
++] = svgtiny_PATH_BEZIER
;
1309 if (*command
== 'q') {
1315 p
[i
++] = 1./3 * last_x
+ 2./3 * x1
;
1316 p
[i
++] = 1./3 * last_y
+ 2./3 * y1
;
1317 p
[i
++] = 2./3 * x1
+ 1./3 * x
;
1318 p
[i
++] = 2./3 * y1
+ 1./3 * y
;
1319 p
[i
++] = last_cubic_x
= last_x
= x
;
1320 p
[i
++] = last_cubic_y
= last_y
= y
;
1322 } while (sscanf(s
, "%f %f %f %f %n",
1323 &x1
, &y1
, &x
, &y
, &n
) == 4);
1325 /* shorthand/smooth quadratic Bezier curveto (T, t)
1327 } else if (sscanf(s
, " %1[Tt] %f %f %n", command
,
1329 /*LOG(("shorthand/smooth quadratic Bezier curveto"));*/
1331 ALLOC_PATH_ELEMENTS(7);
1333 p
[i
++] = svgtiny_PATH_BEZIER
;
1334 x1
= last_x
+ (last_x
- last_quad_x
);
1335 y1
= last_y
+ (last_y
- last_quad_y
);
1338 if (*command
== 't') {
1344 p
[i
++] = 1./3 * last_x
+ 2./3 * x1
;
1345 p
[i
++] = 1./3 * last_y
+ 2./3 * y1
;
1346 p
[i
++] = 2./3 * x1
+ 1./3 * x
;
1347 p
[i
++] = 2./3 * y1
+ 1./3 * y
;
1348 p
[i
++] = last_cubic_x
= last_x
= x
;
1349 p
[i
++] = last_cubic_y
= last_y
= y
;
1351 } while (sscanf(s
, "%f %f %n",
1354 /* elliptical arc (A, a) (7 arguments) */
1355 } else if (sscanf(s
, " %1[Aa] %f %f %f %f %f %f %f %n", command
,
1356 &rx
, &ry
, &rotation
, &large_arc
, &sweep
,
1360 double bzpoints
[6*4]; /* allow for up to four bezier segments per arc */
1362 if (*command
== 'a') {
1367 bzsegments
= svgarc_to_bezier(last_x
, last_y
,
1374 if (bzsegments
== -1) {
1376 ALLOC_PATH_ELEMENTS(3);
1377 p
[i
++] = svgtiny_PATH_LINE
;
1380 } else if (bzsegments
> 0) {
1382 ALLOC_PATH_ELEMENTS((unsigned int)bzsegments
* 7);
1383 for (bzpnt
= 0;bzpnt
< (bzsegments
* 6); bzpnt
+=6) {
1384 p
[i
++] = svgtiny_PATH_BEZIER
;
1385 p
[i
++] = bzpoints
[bzpnt
];
1386 p
[i
++] = bzpoints
[bzpnt
+1];
1387 p
[i
++] = bzpoints
[bzpnt
+2];
1388 p
[i
++] = bzpoints
[bzpnt
+3];
1389 p
[i
++] = bzpoints
[bzpnt
+4];
1390 p
[i
++] = bzpoints
[bzpnt
+5];
1393 if (bzsegments
!= 0) {
1394 last_cubic_x
= last_quad_x
= last_x
= p
[i
-2];
1395 last_cubic_y
= last_quad_y
= last_y
= p
[i
-1];
1400 } while (sscanf(s
, "%f %f %f %f %f %f %f %n",
1401 &rx
, &ry
, &rotation
, &large_arc
, &sweep
,
1405 /* fprintf(stderr, "parse failed at \"%s\"\n", s); */
1413 /* no real segments in path */
1415 svgtiny_cleanup_state_local(&state
);
1419 /* resize path element array to not be over allocated */
1423 /* try the resize, if it fails just continue to use the old
1426 tp
= realloc(p
, sizeof p
[0] * i
);
1432 err
= svgtiny_add_path(p
, i
, &state
);
1434 svgtiny_cleanup_state_local(&state
);
1441 * Parse a <rect> element node.
1443 * http://www.w3.org/TR/SVG11/shapes#RectElement
1446 svgtiny_code
svgtiny_parse_rect(dom_element
*rect
,
1447 struct svgtiny_parse_state state
)
1450 float x
, y
, width
, height
;
1453 svgtiny_setup_state_local(&state
);
1455 svgtiny_parse_position_attributes(rect
, state
,
1456 &x
, &y
, &width
, &height
);
1457 svgtiny_parse_paint_attributes(rect
, &state
);
1458 svgtiny_parse_transform_attributes(rect
, &state
);
1459 svgtiny_parse_styles(rect
, &state
);
1461 p
= malloc(13 * sizeof p
[0]);
1463 svgtiny_cleanup_state_local(&state
);
1464 return svgtiny_OUT_OF_MEMORY
;
1467 p
[0] = svgtiny_PATH_MOVE
;
1470 p
[3] = svgtiny_PATH_LINE
;
1473 p
[6] = svgtiny_PATH_LINE
;
1476 p
[9] = svgtiny_PATH_LINE
;
1479 p
[12] = svgtiny_PATH_CLOSE
;
1481 err
= svgtiny_add_path(p
, 13, &state
);
1483 svgtiny_cleanup_state_local(&state
);
1490 * Parse a <circle> element node.
1493 svgtiny_code
svgtiny_parse_circle(dom_element
*circle
,
1494 struct svgtiny_parse_state state
)
1497 float x
= 0, y
= 0, r
= -1;
1502 svgtiny_setup_state_local(&state
);
1504 exc
= dom_element_get_attribute(circle
, state
.interned_cx
, &attr
);
1505 if (exc
!= DOM_NO_ERR
) {
1506 svgtiny_cleanup_state_local(&state
);
1507 return svgtiny_LIBDOM_ERROR
;
1510 x
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1512 dom_string_unref(attr
);
1514 exc
= dom_element_get_attribute(circle
, state
.interned_cy
, &attr
);
1515 if (exc
!= DOM_NO_ERR
) {
1516 svgtiny_cleanup_state_local(&state
);
1517 return svgtiny_LIBDOM_ERROR
;
1520 y
= svgtiny_parse_length(attr
, state
.viewport_height
, state
);
1522 dom_string_unref(attr
);
1524 exc
= dom_element_get_attribute(circle
, state
.interned_r
, &attr
);
1525 if (exc
!= DOM_NO_ERR
) {
1526 svgtiny_cleanup_state_local(&state
);
1527 return svgtiny_LIBDOM_ERROR
;
1530 r
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1532 dom_string_unref(attr
);
1534 svgtiny_parse_paint_attributes(circle
, &state
);
1535 svgtiny_parse_transform_attributes(circle
, &state
);
1536 svgtiny_parse_styles(circle
, &state
);
1539 state
.diagram
->error_line
= -1; /* circle->line; */
1540 state
.diagram
->error_message
= "circle: r missing or negative";
1541 svgtiny_cleanup_state_local(&state
);
1542 return svgtiny_SVG_ERROR
;
1545 svgtiny_cleanup_state_local(&state
);
1549 p
= malloc(32 * sizeof p
[0]);
1551 svgtiny_cleanup_state_local(&state
);
1552 return svgtiny_OUT_OF_MEMORY
;
1555 p
[0] = svgtiny_PATH_MOVE
;
1558 p
[3] = svgtiny_PATH_BEZIER
;
1560 p
[5] = y
+ r
* KAPPA
;
1561 p
[6] = x
+ r
* KAPPA
;
1565 p
[10] = svgtiny_PATH_BEZIER
;
1566 p
[11] = x
- r
* KAPPA
;
1569 p
[14] = y
+ r
* KAPPA
;
1572 p
[17] = svgtiny_PATH_BEZIER
;
1574 p
[19] = y
- r
* KAPPA
;
1575 p
[20] = x
- r
* KAPPA
;
1579 p
[24] = svgtiny_PATH_BEZIER
;
1580 p
[25] = x
+ r
* KAPPA
;
1583 p
[28] = y
- r
* KAPPA
;
1586 p
[31] = svgtiny_PATH_CLOSE
;
1588 err
= svgtiny_add_path(p
, 32, &state
);
1590 svgtiny_cleanup_state_local(&state
);
1597 * Parse an <ellipse> element node.
1600 svgtiny_code
svgtiny_parse_ellipse(dom_element
*ellipse
,
1601 struct svgtiny_parse_state state
)
1604 float x
= 0, y
= 0, rx
= -1, ry
= -1;
1609 svgtiny_setup_state_local(&state
);
1611 exc
= dom_element_get_attribute(ellipse
, state
.interned_cx
, &attr
);
1612 if (exc
!= DOM_NO_ERR
) {
1613 svgtiny_cleanup_state_local(&state
);
1614 return svgtiny_LIBDOM_ERROR
;
1617 x
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1619 dom_string_unref(attr
);
1621 exc
= dom_element_get_attribute(ellipse
, state
.interned_cy
, &attr
);
1622 if (exc
!= DOM_NO_ERR
) {
1623 svgtiny_cleanup_state_local(&state
);
1624 return svgtiny_LIBDOM_ERROR
;
1627 y
= svgtiny_parse_length(attr
, state
.viewport_height
, state
);
1629 dom_string_unref(attr
);
1631 exc
= dom_element_get_attribute(ellipse
, state
.interned_rx
, &attr
);
1632 if (exc
!= DOM_NO_ERR
) {
1633 svgtiny_cleanup_state_local(&state
);
1634 return svgtiny_LIBDOM_ERROR
;
1637 rx
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1639 dom_string_unref(attr
);
1641 exc
= dom_element_get_attribute(ellipse
, state
.interned_ry
, &attr
);
1642 if (exc
!= DOM_NO_ERR
) {
1643 svgtiny_cleanup_state_local(&state
);
1644 return svgtiny_LIBDOM_ERROR
;
1647 ry
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1649 dom_string_unref(attr
);
1651 svgtiny_parse_paint_attributes(ellipse
, &state
);
1652 svgtiny_parse_transform_attributes(ellipse
, &state
);
1653 svgtiny_parse_styles(ellipse
, &state
);
1655 if (rx
< 0 || ry
< 0) {
1656 state
.diagram
->error_line
= -1; /* ellipse->line; */
1657 state
.diagram
->error_message
= "ellipse: rx or ry missing "
1659 svgtiny_cleanup_state_local(&state
);
1660 return svgtiny_SVG_ERROR
;
1662 if (rx
== 0 || ry
== 0) {
1663 svgtiny_cleanup_state_local(&state
);
1667 p
= malloc(32 * sizeof p
[0]);
1669 svgtiny_cleanup_state_local(&state
);
1670 return svgtiny_OUT_OF_MEMORY
;
1673 p
[0] = svgtiny_PATH_MOVE
;
1676 p
[3] = svgtiny_PATH_BEZIER
;
1678 p
[5] = y
+ ry
* KAPPA
;
1679 p
[6] = x
+ rx
* KAPPA
;
1683 p
[10] = svgtiny_PATH_BEZIER
;
1684 p
[11] = x
- rx
* KAPPA
;
1687 p
[14] = y
+ ry
* KAPPA
;
1690 p
[17] = svgtiny_PATH_BEZIER
;
1692 p
[19] = y
- ry
* KAPPA
;
1693 p
[20] = x
- rx
* KAPPA
;
1697 p
[24] = svgtiny_PATH_BEZIER
;
1698 p
[25] = x
+ rx
* KAPPA
;
1701 p
[28] = y
- ry
* KAPPA
;
1704 p
[31] = svgtiny_PATH_CLOSE
;
1706 err
= svgtiny_add_path(p
, 32, &state
);
1708 svgtiny_cleanup_state_local(&state
);
1715 * Parse a <line> element node.
1718 svgtiny_code
svgtiny_parse_line(dom_element
*line
,
1719 struct svgtiny_parse_state state
)
1722 float x1
= 0, y1
= 0, x2
= 0, y2
= 0;
1727 svgtiny_setup_state_local(&state
);
1729 exc
= dom_element_get_attribute(line
, state
.interned_x1
, &attr
);
1730 if (exc
!= DOM_NO_ERR
) {
1731 svgtiny_cleanup_state_local(&state
);
1732 return svgtiny_LIBDOM_ERROR
;
1735 x1
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1737 dom_string_unref(attr
);
1739 exc
= dom_element_get_attribute(line
, state
.interned_y1
, &attr
);
1740 if (exc
!= DOM_NO_ERR
) {
1741 svgtiny_cleanup_state_local(&state
);
1742 return svgtiny_LIBDOM_ERROR
;
1745 y1
= svgtiny_parse_length(attr
, state
.viewport_height
, state
);
1747 dom_string_unref(attr
);
1749 exc
= dom_element_get_attribute(line
, state
.interned_x2
, &attr
);
1750 if (exc
!= DOM_NO_ERR
) {
1751 svgtiny_cleanup_state_local(&state
);
1752 return svgtiny_LIBDOM_ERROR
;
1755 x2
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
1757 dom_string_unref(attr
);
1759 exc
= dom_element_get_attribute(line
, state
.interned_y2
, &attr
);
1760 if (exc
!= DOM_NO_ERR
) {
1761 svgtiny_cleanup_state_local(&state
);
1762 return svgtiny_LIBDOM_ERROR
;
1765 y2
= svgtiny_parse_length(attr
, state
.viewport_height
, state
);
1767 dom_string_unref(attr
);
1769 svgtiny_parse_paint_attributes(line
, &state
);
1770 svgtiny_parse_transform_attributes(line
, &state
);
1771 svgtiny_parse_styles(line
, &state
);
1773 p
= malloc(7 * sizeof p
[0]);
1775 svgtiny_cleanup_state_local(&state
);
1776 return svgtiny_OUT_OF_MEMORY
;
1779 p
[0] = svgtiny_PATH_MOVE
;
1782 p
[3] = svgtiny_PATH_LINE
;
1785 p
[6] = svgtiny_PATH_CLOSE
;
1787 err
= svgtiny_add_path(p
, 7, &state
);
1789 svgtiny_cleanup_state_local(&state
);
1796 * Parse a <polyline> or <polygon> element node.
1798 * http://www.w3.org/TR/SVG11/shapes#PolylineElement
1799 * http://www.w3.org/TR/SVG11/shapes#PolygonElement
1802 svgtiny_code
svgtiny_parse_poly(dom_element
*poly
,
1803 struct svgtiny_parse_state state
, bool polygon
)
1806 dom_string
*points_str
;
1812 svgtiny_setup_state_local(&state
);
1814 svgtiny_parse_paint_attributes(poly
, &state
);
1815 svgtiny_parse_transform_attributes(poly
, &state
);
1816 svgtiny_parse_styles(poly
, &state
);
1818 exc
= dom_element_get_attribute(poly
, state
.interned_points
,
1820 if (exc
!= DOM_NO_ERR
) {
1821 svgtiny_cleanup_state_local(&state
);
1822 return svgtiny_LIBDOM_ERROR
;
1825 if (points_str
== NULL
) {
1826 state
.diagram
->error_line
= -1; /* poly->line; */
1827 state
.diagram
->error_message
=
1828 "polyline/polygon: missing points attribute";
1829 svgtiny_cleanup_state_local(&state
);
1830 return svgtiny_SVG_ERROR
;
1833 s
= points
= strndup(dom_string_data(points_str
),
1834 dom_string_byte_length(points_str
));
1835 dom_string_unref(points_str
);
1836 /* read points attribute */
1838 svgtiny_cleanup_state_local(&state
);
1839 return svgtiny_OUT_OF_MEMORY
;
1841 /* allocate space for path: it will never have more elements than s */
1842 p
= malloc(sizeof p
[0] * strlen(s
));
1845 svgtiny_cleanup_state_local(&state
);
1846 return svgtiny_OUT_OF_MEMORY
;
1849 /* parse s and build path */
1850 for (i
= 0; s
[i
]; i
++)
1858 if (sscanf(s
, "%f %f %n", &x
, &y
, &n
) == 2) {
1860 p
[i
++] = svgtiny_PATH_MOVE
;
1862 p
[i
++] = svgtiny_PATH_LINE
;
1871 p
[i
++] = svgtiny_PATH_CLOSE
;
1875 err
= svgtiny_add_path(p
, i
, &state
);
1877 svgtiny_cleanup_state_local(&state
);
1884 * Parse a <text> or <tspan> element node.
1887 svgtiny_code
svgtiny_parse_text(dom_element
*text
,
1888 struct svgtiny_parse_state state
)
1890 float x
, y
, width
, height
;
1895 svgtiny_setup_state_local(&state
);
1897 svgtiny_parse_position_attributes(text
, state
,
1898 &x
, &y
, &width
, &height
);
1899 svgtiny_parse_font_attributes(text
, &state
);
1900 svgtiny_parse_transform_attributes(text
, &state
);
1902 px
= state
.ctm
.a
* x
+ state
.ctm
.c
* y
+ state
.ctm
.e
;
1903 py
= state
.ctm
.b
* x
+ state
.ctm
.d
* y
+ state
.ctm
.f
;
1904 /* state.ctm.e = px - state.origin_x; */
1905 /* state.ctm.f = py - state.origin_y; */
1907 exc
= dom_node_get_first_child(text
, &child
);
1908 if (exc
!= DOM_NO_ERR
) {
1909 return svgtiny_LIBDOM_ERROR
;
1910 svgtiny_cleanup_state_local(&state
);
1912 while (child
!= NULL
) {
1914 dom_node_type nodetype
;
1915 svgtiny_code code
= svgtiny_OK
;
1917 exc
= dom_node_get_node_type(child
, &nodetype
);
1918 if (exc
!= DOM_NO_ERR
) {
1919 dom_node_unref(child
);
1920 svgtiny_cleanup_state_local(&state
);
1921 return svgtiny_LIBDOM_ERROR
;
1923 if (nodetype
== DOM_ELEMENT_NODE
) {
1924 dom_string
*nodename
;
1925 exc
= dom_node_get_node_name(child
, &nodename
);
1926 if (exc
!= DOM_NO_ERR
) {
1927 dom_node_unref(child
);
1928 svgtiny_cleanup_state_local(&state
);
1929 return svgtiny_LIBDOM_ERROR
;
1931 if (dom_string_caseless_isequal(nodename
,
1932 state
.interned_tspan
))
1933 code
= svgtiny_parse_text((dom_element
*)child
,
1935 dom_string_unref(nodename
);
1936 } else if (nodetype
== DOM_TEXT_NODE
) {
1937 struct svgtiny_shape
*shape
= svgtiny_add_shape(&state
);
1938 dom_string
*content
;
1939 if (shape
== NULL
) {
1940 dom_node_unref(child
);
1941 svgtiny_cleanup_state_local(&state
);
1942 return svgtiny_OUT_OF_MEMORY
;
1944 exc
= dom_text_get_whole_text(child
, &content
);
1945 if (exc
!= DOM_NO_ERR
) {
1946 dom_node_unref(child
);
1947 svgtiny_cleanup_state_local(&state
);
1948 return svgtiny_LIBDOM_ERROR
;
1950 if (content
!= NULL
) {
1951 shape
->text
= strndup(dom_string_data(content
),
1952 dom_string_byte_length(content
));
1953 dom_string_unref(content
);
1955 shape
->text
= strdup("");
1959 state
.diagram
->shape_count
++;
1962 if (code
!= svgtiny_OK
) {
1963 dom_node_unref(child
);
1964 svgtiny_cleanup_state_local(&state
);
1967 exc
= dom_node_get_next_sibling(child
, &next
);
1968 dom_node_unref(child
);
1969 if (exc
!= DOM_NO_ERR
) {
1970 svgtiny_cleanup_state_local(&state
);
1971 return svgtiny_LIBDOM_ERROR
;
1976 svgtiny_cleanup_state_local(&state
);
1983 * Parse x, y, width, and height attributes, if present.
1986 void svgtiny_parse_position_attributes(dom_element
*node
,
1987 const struct svgtiny_parse_state state
,
1988 float *x
, float *y
, float *width
, float *height
)
1995 *width
= state
.viewport_width
;
1996 *height
= state
.viewport_height
;
1998 exc
= dom_element_get_attribute(node
, state
.interned_x
, &attr
);
1999 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2000 *x
= svgtiny_parse_length(attr
, state
.viewport_width
, state
);
2001 dom_string_unref(attr
);
2004 exc
= dom_element_get_attribute(node
, state
.interned_y
, &attr
);
2005 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2006 *y
= svgtiny_parse_length(attr
, state
.viewport_height
, state
);
2007 dom_string_unref(attr
);
2010 exc
= dom_element_get_attribute(node
, state
.interned_width
, &attr
);
2011 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2012 *width
= svgtiny_parse_length(attr
, state
.viewport_width
,
2014 dom_string_unref(attr
);
2017 exc
= dom_element_get_attribute(node
, state
.interned_height
, &attr
);
2018 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2019 *height
= svgtiny_parse_length(attr
, state
.viewport_height
,
2021 dom_string_unref(attr
);
2027 * Parse a length as a number of pixels.
2030 static float _svgtiny_parse_length(const char *s
, int viewport_size
,
2031 const struct svgtiny_parse_state state
)
2033 int num_length
= strspn(s
, "0123456789+-.");
2034 const char *unit
= s
+ num_length
;
2035 float n
= atof((const char *) s
);
2036 float font_size
= 20;
2042 } else if (unit
[0] == '%') {
2043 return n
/ 100.0 * viewport_size
;
2044 } else if (unit
[0] == 'e' && unit
[1] == 'm') {
2045 return n
* font_size
;
2046 } else if (unit
[0] == 'e' && unit
[1] == 'x') {
2047 return n
/ 2.0 * font_size
;
2048 } else if (unit
[0] == 'p' && unit
[1] == 'x') {
2050 } else if (unit
[0] == 'p' && unit
[1] == 't') {
2052 } else if (unit
[0] == 'p' && unit
[1] == 'c') {
2054 } else if (unit
[0] == 'm' && unit
[1] == 'm') {
2055 return n
* 3.543307;
2056 } else if (unit
[0] == 'c' && unit
[1] == 'm') {
2057 return n
* 35.43307;
2058 } else if (unit
[0] == 'i' && unit
[1] == 'n') {
2065 float svgtiny_parse_length(dom_string
*s
, int viewport_size
,
2066 const struct svgtiny_parse_state state
)
2068 char *ss
= strndup(dom_string_data(s
), dom_string_byte_length(s
));
2069 float ret
= _svgtiny_parse_length(ss
, viewport_size
, state
);
2075 * Parse paint attributes, if present.
2078 void svgtiny_parse_paint_attributes(dom_element
*node
,
2079 struct svgtiny_parse_state
*state
)
2084 exc
= dom_element_get_attribute(node
, state
->interned_fill
, &attr
);
2085 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2086 svgtiny_parse_color(attr
, &state
->fill
, &state
->fill_grad
, state
);
2087 dom_string_unref(attr
);
2090 exc
= dom_element_get_attribute(node
, state
->interned_stroke
, &attr
);
2091 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2092 svgtiny_parse_color(attr
, &state
->stroke
, &state
->stroke_grad
, state
);
2093 dom_string_unref(attr
);
2096 exc
= dom_element_get_attribute(node
, state
->interned_stroke_width
, &attr
);
2097 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2098 state
->stroke_width
= svgtiny_parse_length(attr
,
2099 state
->viewport_width
, *state
);
2100 dom_string_unref(attr
);
2103 exc
= dom_element_get_attribute(node
, state
->interned_style
, &attr
);
2104 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2105 /* Parse a few properties "by hand" until they can
2106 be supported in libcss. */
2107 char *style
= strndup(dom_string_data(attr
),
2108 dom_string_byte_length(attr
));
2111 if ((s
= strstr(style
, "fill:"))) {
2115 value
= strndup(s
, strcspn(s
, "; "));
2116 _svgtiny_parse_color(value
, &state
->fill
, &state
->fill_grad
, state
);
2119 if ((s
= strstr(style
, "stroke:"))) {
2123 value
= strndup(s
, strcspn(s
, "; "));
2124 _svgtiny_parse_color(value
, &state
->stroke
, &state
->stroke_grad
, state
);
2127 if ((s
= strstr(style
, "stroke-width:"))) {
2131 value
= strndup(s
, strcspn(s
, "; "));
2132 state
->stroke_width
= _svgtiny_parse_length(value
,
2133 state
->viewport_width
, *state
);
2137 dom_string_unref(attr
);
2146 static void _svgtiny_parse_color(const char *s
, svgtiny_colour
*c
,
2147 struct svgtiny_parse_state_gradient
*grad
,
2148 struct svgtiny_parse_state
*state
)
2150 unsigned int r
, g
, b
;
2152 size_t len
= strlen(s
);
2153 char *id
= 0, *rparen
;
2155 if (len
== 4 && s
[0] == '#') {
2156 if (sscanf(s
+ 1, "%1x%1x%1x", &r
, &g
, &b
) == 3)
2157 *c
= svgtiny_RGB(r
| r
<< 4, g
| g
<< 4, b
| b
<< 4);
2159 } else if (len
== 7 && s
[0] == '#') {
2160 if (sscanf(s
+ 1, "%2x%2x%2x", &r
, &g
, &b
) == 3)
2161 *c
= svgtiny_RGB(r
, g
, b
);
2163 } else if (10 <= len
&& s
[0] == 'r' && s
[1] == 'g' && s
[2] == 'b' &&
2164 s
[3] == '(' && s
[len
- 1] == ')') {
2165 if (sscanf(s
+ 4, "%u,%u,%u", &r
, &g
, &b
) == 3)
2166 *c
= svgtiny_RGB(r
, g
, b
);
2167 else if (sscanf(s
+ 4, "%f%%,%f%%,%f%%", &rf
, &gf
, &bf
) == 3) {
2171 *c
= svgtiny_RGB(r
, g
, b
);
2174 } else if (len
== 4 && strcmp(s
, "none") == 0) {
2175 *c
= svgtiny_TRANSPARENT
;
2177 } else if (5 < len
&& s
[0] == 'u' && s
[1] == 'r' && s
[2] == 'l' &&
2180 *c
= svgtiny_RGB(0, 0, 0);
2181 } else if (s
[4] == '#') {
2185 rparen
= strchr(id
, ')');
2188 svgtiny_find_gradient(id
, grad
, state
);
2190 if (grad
->linear_gradient_stop_count
== 0)
2191 *c
= svgtiny_TRANSPARENT
;
2192 else if (grad
->linear_gradient_stop_count
== 1)
2193 *c
= grad
->gradient_stop
[0].color
;
2195 *c
= svgtiny_LINEAR_GRADIENT
;
2199 const struct svgtiny_named_color
*named_color
;
2200 named_color
= svgtiny_color_lookup(s
, strlen(s
));
2202 *c
= named_color
->color
;
2206 void svgtiny_parse_color(dom_string
*s
, svgtiny_colour
*c
,
2207 struct svgtiny_parse_state_gradient
*grad
,
2208 struct svgtiny_parse_state
*state
)
2211 _svgtiny_parse_color(dom_string_data(s
), c
, grad
, state
);
2212 dom_string_unref(s
);
2216 * Parse font attributes, if present.
2219 void svgtiny_parse_font_attributes(dom_element
*node
,
2220 struct svgtiny_parse_state
*state
)
2222 /* TODO: Implement this, it never used to be */
2225 #ifdef WRITTEN_THIS_PROPERLY
2226 const xmlAttr
*attr
;
2230 for (attr
= node
->properties
; attr
; attr
= attr
->next
) {
2231 if (strcmp((const char *) attr
->name
, "font-size") == 0) {
2240 * Parse transform attributes, if present.
2242 * http://www.w3.org/TR/SVG11/coords#TransformAttribute
2245 void svgtiny_parse_transform_attributes(dom_element
*node
,
2246 struct svgtiny_parse_state
*state
)
2252 exc
= dom_element_get_attribute(node
, state
->interned_transform
,
2254 if (exc
== DOM_NO_ERR
&& attr
!= NULL
) {
2255 transform
= strndup(dom_string_data(attr
),
2256 dom_string_byte_length(attr
));
2257 svgtiny_parse_transform(transform
, &state
->ctm
.a
, &state
->ctm
.b
,
2258 &state
->ctm
.c
, &state
->ctm
.d
,
2259 &state
->ctm
.e
, &state
->ctm
.f
);
2261 dom_string_unref(attr
);
2266 * Parse element styles.
2268 * First we parse any inline "style" attributes. We then compose the
2269 * element's style with any parent styles. Finally, we compute any
2270 * styles that we support and set the corresponding fields in the
2273 void svgtiny_parse_styles(dom_element
*node
,
2274 struct svgtiny_parse_state
*state
)
2277 uint8_t fill_opacity_type
;
2278 css_fixed fill_opacity
;
2279 uint8_t stroke_opacity_type
;
2280 css_fixed stroke_opacity
;
2282 /* We store the result of svgtiny_parse_style_inline() in
2283 * inline_sheet, and that function returns NULL on error; in
2284 * particular you do not need to css_stylesheet_destroy() the
2285 * result if it is NULL, and css_stylesheet_destroy() checks
2287 css_stylesheet
*inline_sheet
= NULL
;
2289 /* Initialize this to NULL for the same reason: so that we can
2290 * safely destroy it later even if we never populated it. */
2291 css_select_results
*styles
= NULL
;
2297 exc
= dom_element_get_attribute(node
, state
->interned_style
, &attr
);
2298 if (exc
!= DOM_NO_ERR
) {
2302 inline_sheet
= svgtiny_parse_style_inline(
2303 (uint8_t *)dom_string_data(attr
),
2304 dom_string_byte_length(attr
));
2305 dom_string_unref(attr
);
2308 struct dom_element
*parent
;
2309 dom_element_parent_node(node
, &parent
);
2310 if (parent
== NULL
) {
2311 /* This is the root <svg> node, skip it.
2313 * While initialising its selection state, libcss sets its
2314 * node_data->bloom pointer using css__get_parent_bloom().
2315 * But if there is no parent, that function returns,
2317 * static css_bloom empty_bloom[CSS_BLOOM_SIZE];
2319 * A problem later arises because when libcss FINALISES its
2320 * selection state, it frees node_data->bloom! That obviously
2321 * won't work then node has no parent, i.e. if it's the root
2324 css_stylesheet_destroy(inline_sheet
);
2328 /* We only needed to know if it was NULL */
2329 dom_node_unref(parent
);
2332 code
= svgtiny_select_style(state
, node
, inline_sheet
, &styles
);
2333 css_stylesheet_destroy(inline_sheet
);
2334 if (code
!= CSS_OK
) {
2338 fill_opacity_type
= css_computed_fill_opacity(
2339 styles
->styles
[CSS_PSEUDO_ELEMENT_NONE
],
2341 stroke_opacity_type
= css_computed_stroke_opacity(
2342 styles
->styles
[CSS_PSEUDO_ELEMENT_NONE
],
2344 css_select_results_destroy(styles
);
2346 if (fill_opacity_type
== CSS_FILL_OPACITY_SET
) {
2347 state
->fill_opacity
= FIXTOFLT(fill_opacity
);
2349 if (stroke_opacity_type
== CSS_STROKE_OPACITY_SET
) {
2350 state
->stroke_opacity
= FIXTOFLT(stroke_opacity
);
2355 * Parse a transform string.
2358 void svgtiny_parse_transform(char *s
, float *ma
, float *mb
,
2359 float *mc
, float *md
, float *me
, float *mf
)
2361 float a
, b
, c
, d
, e
, f
;
2362 float za
, zb
, zc
, zd
, ze
, zf
;
2367 for (i
= 0; s
[i
]; i
++)
2376 if ((sscanf(s
, " matrix (%f %f %f %f %f %f ) %n",
2377 &a
, &b
, &c
, &d
, &e
, &f
, &n
) == 6) && (n
> 0))
2379 else if ((sscanf(s
, " translate (%f %f ) %n",
2380 &e
, &f
, &n
) == 2) && (n
> 0))
2382 else if ((sscanf(s
, " translate (%f ) %n",
2383 &e
, &n
) == 1) && (n
> 0))
2385 else if ((sscanf(s
, " scale (%f %f ) %n",
2386 &a
, &d
, &n
) == 2) && (n
> 0))
2388 else if ((sscanf(s
, " scale (%f ) %n",
2389 &a
, &n
) == 1) && (n
> 0))
2391 else if ((sscanf(s
, " rotate (%f %f %f ) %n",
2392 &angle
, &x
, &y
, &n
) == 3) && (n
> 0)) {
2393 angle
= angle
/ 180 * M_PI
;
2398 e
= -x
* cos(angle
) + y
* sin(angle
) + x
;
2399 f
= -x
* sin(angle
) - y
* cos(angle
) + y
;
2400 } else if ((sscanf(s
, " rotate (%f ) %n",
2401 &angle
, &n
) == 1) && (n
> 0)) {
2402 angle
= angle
/ 180 * M_PI
;
2407 } else if ((sscanf(s
, " skewX (%f ) %n",
2408 &angle
, &n
) == 1) && (n
> 0)) {
2409 angle
= angle
/ 180 * M_PI
;
2411 } else if ((sscanf(s
, " skewY (%f ) %n",
2412 &angle
, &n
) == 1) && (n
> 0)) {
2413 angle
= angle
/ 180 * M_PI
;
2417 za
= *ma
* a
+ *mc
* b
;
2418 zb
= *mb
* a
+ *md
* b
;
2419 zc
= *ma
* c
+ *mc
* d
;
2420 zd
= *mb
* c
+ *md
* d
;
2421 ze
= *ma
* e
+ *mc
* f
+ *me
;
2422 zf
= *mb
* e
+ *md
* f
+ *mf
;
2435 * Add a path to the svgtiny_diagram.
2438 svgtiny_code
svgtiny_add_path(float *p
, unsigned int n
,
2439 struct svgtiny_parse_state
*state
)
2441 struct svgtiny_shape
*shape
;
2443 if (state
->fill
== svgtiny_LINEAR_GRADIENT
)
2444 return svgtiny_add_path_linear_gradient(p
, n
, state
);
2446 svgtiny_transform_path(p
, n
, state
);
2448 shape
= svgtiny_add_shape(state
);
2451 return svgtiny_OUT_OF_MEMORY
;
2454 shape
->path_length
= n
;
2455 state
->diagram
->shape_count
++;
2462 * Add a svgtiny_shape to the svgtiny_diagram.
2465 struct svgtiny_shape
*svgtiny_add_shape(struct svgtiny_parse_state
*state
)
2467 struct svgtiny_shape
*shape
= realloc(state
->diagram
->shape
,
2468 (state
->diagram
->shape_count
+ 1) *
2469 sizeof (state
->diagram
->shape
[0]));
2472 state
->diagram
->shape
= shape
;
2474 shape
+= state
->diagram
->shape_count
;
2476 shape
->path_length
= 0;
2478 shape
->fill
= state
->fill
;
2479 shape
->stroke
= state
->stroke
;
2480 shape
->fill_opacity
= state
->fill_opacity
;
2481 shape
->stroke_opacity
= state
->stroke_opacity
;
2482 shape
->stroke_width
= lroundf((float) state
->stroke_width
*
2483 (state
->ctm
.a
+ state
->ctm
.d
) / 2.0);
2484 if (0 < state
->stroke_width
&& shape
->stroke_width
== 0)
2485 shape
->stroke_width
= 1;
2492 * Apply the current transformation matrix to a path.
2495 void svgtiny_transform_path(float *p
, unsigned int n
,
2496 struct svgtiny_parse_state
*state
)
2500 for (j
= 0; j
!= n
; ) {
2501 unsigned int points
= 0;
2503 switch ((int) p
[j
]) {
2504 case svgtiny_PATH_MOVE
:
2505 case svgtiny_PATH_LINE
:
2508 case svgtiny_PATH_CLOSE
:
2511 case svgtiny_PATH_BEZIER
:
2518 for (k
= 0; k
!= points
; k
++) {
2519 float x0
= p
[j
], y0
= p
[j
+ 1];
2520 float x
= state
->ctm
.a
* x0
+ state
->ctm
.c
* y0
+
2522 float y
= state
->ctm
.b
* x0
+ state
->ctm
.d
* y0
+
2533 * Free all memory used by a diagram.
2536 void svgtiny_free(struct svgtiny_diagram
*svg
)
2541 for (i
= 0; i
!= svg
->shape_count
; i
++) {
2542 free(svg
->shape
[i
].path
);
2543 free(svg
->shape
[i
].text
);
2551 #ifndef HAVE_STRNDUP
2552 char *svgtiny_strndup(const char *s
, size_t n
)
2557 for (len
= 0; len
!= n
&& s
[len
]; len
++)
2560 s2
= malloc(len
+ 1);