Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Justifying text using DrawString in C#

I'm drawing text on a System.Drawing.Graphics object. I'm using the DrawString method, with the text string, a Font, a Brush, a bounding RectangleF, and a StringFormat as arguments.

Looking into StringFormat, I've found that I can set it's Alignment property to Near, Center or Far. However I haven't found a way to set it to Justified. How can I achieve this?

Thank you for your help!

like image 619
ahpoblete Avatar asked Sep 21 '11 03:09

ahpoblete


1 Answers

I FOUND IT :)

http://csharphelper.com/blog/2014/10/fully-justify-a-line-of-text-in-c/

in brief - you can justify text in each separate line when you know the given width of the entire paragraph:

float extra_space = rect.Width - total_width; // where total_width is the sum of all measured width for each word
int num_spaces = words.Length - 1; // where words is the array of all words in a line
if (words.Length > 1) extra_space /= num_spaces; // now extra_space has width (in px) for each space between words

the rest is pretty intuitive:

float x = rect.Left;
float y = rect.Top;
for (int i = 0; i < words.Length; i++)
{
    gr.DrawString(words[i], font, brush, x, y);

    x += word_width[i] + extra_space; // move right to draw the next word.
}
like image 77
ymz Avatar answered Oct 08 '22 21:10

ymz