I have been using the CImg library, and have been pleased with how easy it is to integrate and use. However, I now want to draw thick lines (i.e., more than one pixel thick). It is not clear from the API documentation of the draw_line function (here) how this can be done. A second version of the function (just below the first in the documentation) even takes a texture as input, but again no width. It seems strange that such a comprehensive library would not have this feature. Perhaps it's supposed to be done using some kind of transformation? I know I could do it using a polygon (i.e., a rectangle where I would compute the corners of the polygon using a normal to the line), but I fear that would be significantly slower.

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Apparently, it is not possible 'out-of-the-box', but creating your own routine that calls multiple times the 'draw_line()' routine of CImg, with one or two pixels shifts should give you the result you want, without much work.

link|improve this answer
Thanks, but I don't believe this will work smoothly for an arbitrary angled line. I will have to compute the normal to the line and offset "one pixel" in that direction. But that will be a fractional amount in general, so due to rounding and also due to aliasing in the Bresenham algorithm I don't expect that the additional lines will spoon exactly with the first line, and I'll end up with a combination of gap pixels ("holes" in the line) and overlap pixels where the line is only one pixel thick. – M Katz Apr 15 '11 at 17:23
Actually, after thinking about this a bit more, I think your suggestion will work for me. Since I only want the ability to draw widths up to about 4 pixels, I can be more careful in how I choose the offsets for my lines. Instead of trying to match the normal angle exactly, I can offset by a limited set of choices ( (1,1), or (1,0) or (0, -1), and so on) based on the rough angle of my line, and if I keep my line lengths the same in theory (?) the Bresenham algorithm will make the offset lines "spoon" correctly with the original line. – M Katz Apr 15 '11 at 19:30
Actually, it turned out not to work by drawing several lines shifted by one or two pixels. The line-drawing algorithm is such that it was possible and fairly common to get unfilled pixels and streaks inside the filled line. I ended up using the draw_polygon() function in CImg, which worked pretty well for this purpose. E.g., to draw a two-pixel-wide line from (0, 0) to (10, 10), I fill the polygon outlined by (0, 0), (10,10), (11,10), (1,0). I have not compared the speed of doing things this way vs. drawing multiple lines, but it's working well enough for my purposes. – M Katz Oct 18 '11 at 21:38
Well, my method of drawing thick lines using polygons wasn't so good either. I ended up redoing it by drawing a rectangle at each point. That works well and is fast enough for my purposes. – M Katz May 8 at 9:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.