i wanted to know if i can draw a text in Cimg graphic library draw_text function and change the font of the text to another font ?

link|improve this question

43% accept rate
feedback

2 Answers

Assuming you mean this Cimg library, a couple of the overloads of draw_text take parameters named "font". Those seem like a reasonable starting point...

link|improve this answer
feedback

No. CImg's text drawing is very simplistic.

CImg<T>& draw_text(const int x0, const int y0,
                   const char *const text,
                   const int, const tc *const background_color,
                   const float opacity, const CImgList<t>& font, ...)

font is just a CImgList of letters (i.e. font[letter-'a'] is an image of "letter"). Either make your own or use one of the built-in options:

static const CImgList<T>& font(const unsigned int font_height, 
                               const bool variable_size=true);

or

static CImgList<T> _font(const unsigned int *const font, 
                         const unsigned int w, const unsigned int h, 
                         const bool variable_size)

where font here is one of the predefined fonts at the top of CImg.h such as font12x24.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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