User-1136466523 posted
Hi,
From your description, it seems that what you are using is the drawText method with a “DT_WORDBREAK” uFormat parameter, right?
If you though the space between the lines of the text is too big, then you have to wrap the words manually. After you got the string to be draw, you have to split the string into a string array according to a proper width (length per word * word numbers),
and draw each string item to the image in the specific position you defined manually. In this way, you can control the space between two lines.
Thanks.