X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fdrawer.c;fp=lib%2Fdrawer.c;h=801ff38b318c3441d29f51b91ee4c6f57950d935;hp=329daa8f2fb5a5778d1e9ae957da5ee9051515e5;hb=f85f15bfe0ead8d5eb4490df5747c49c46e661ea;hpb=277e6c70c2c6d1776f103aff4c584d3a1eb75b92 diff --git a/lib/drawer.c b/lib/drawer.c index 329daa8..801ff38 100644 --- a/lib/drawer.c +++ b/lib/drawer.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "drawer.h" static char* getToken(const char**p) @@ -35,7 +36,18 @@ static char* getToken(const char**p) (*p)++; } start = *p; - while(**p && !strchr(" ,()\t\n\r", **p)) { + + /* + SVF pathdata can exclude whitespace after L and M commands. + Ref: http://www.w3.org/TR/SVG11/paths.html#PathDataGeneralInformation + This allows us to use svg files output from gnuplot. + Also checks for relative MoveTo and LineTo (m and l). + 051106 Magnus Lundin, lundin@mlu.mine.nu + */ + if (strchr("LMlm", **p) && (isdigit(*(*p+1))||strchr("+-", *(*p+1)))) { + (*p)++; + } + else while(**p && !strchr(" ,()\t\n\r", **p)) { (*p)++; } result = malloc((*p)-start+1);