Rank: Member Groups: Member
Joined: 4/25/2005 Posts: 15 Points: 0
|
Hello!!
It's me again ^_^! I have another problem : I want to draw a multiline text on a image. When the width of the text is longer than the image, I divide the text until it fits in my image. To do so, I store the dimension of my text with the MeasureText method but depending on the length of the words in my text, the cuts are different. Is there any methods or functions which allow to know if the text fits in the rectangle? or to know the length of each line in the rectangle?
I tried with the different values of TextTrimmingMode but it didn't work.
Thank you,
Michel
|
Rank: Advanced Member Groups: Administration
, Member
Joined: 1/31/2005 Posts: 386 Points: 403
|
Hello, Michel! Unfortunately Graphics Mill for .NET doesn't support measuring of multi-line text. In the case when your task is just to draw text on the image - you may try to set bounding rectangle equal to the image's dimensions using the following method: Code:
GdiGraphics.DrawString(String, Font, SolidBrush, Rectangle, TextTrimmingMode, HotkeyPrefix, Clipping, WordWrap)
With Clipping = true and WordWrap = true.
Best wishes, Alex.
|
Rank: Member Groups: Member
Joined: 4/25/2005 Posts: 15 Points: 0
|
ok thank you!
|