Bug in DrawSetTextInterwordSpacing
Posted: 2009-12-03T14:31:32-07:00
Hi All,
In wand/drawing-wand.c, online 5983 we see:
(void) MvgPrintf(wand,"interword_spacing %lf\n",interword_spacing);
It should really be:
(void) MvgPrintf(wand,"interword-spacing %lf\n",interword_spacing);
(Notice the dash instead of an underscore between the words interword and spacing in the string).
We see a similar bug on line 5942 where "interline_spacing" needs to change to "interline-spacing"
Cheers!
In wand/drawing-wand.c, online 5983 we see:
(void) MvgPrintf(wand,"interword_spacing %lf\n",interword_spacing);
It should really be:
(void) MvgPrintf(wand,"interword-spacing %lf\n",interword_spacing);
(Notice the dash instead of an underscore between the words interword and spacing in the string).
We see a similar bug on line 5942 where "interline_spacing" needs to change to "interline-spacing"
Cheers!