Bug in DrawSetTextInterwordSpacing

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
osolo

Bug in DrawSetTextInterwordSpacing

Post by osolo »

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!
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Bug in DrawSetTextInterwordSpacing

Post by magick »

Thanks, we'll get a patch into the Subversion trunk by sometime tomorrow.
Post Reply