Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

Text rendering still blurry : Best font for WPF application?

I know this is a very subjective question but as text rendering in WPF is still an issue I have to make the best out of it. In WPF Application text tend to become blurry that is no secret. Also there ...
6
votes
3answers
609 views

TextRenderer.DrawText renders Arial differently on XP vs Vista

I have a c# application that does text rendering, something on par with a simple wysiwyg text editor. I'm using TextRenderer.DrawText to render the text to the screen and GetTextExtentPoint32 to ...
6
votes
6answers
3k views

TextRenderer.DrawText in Bitmap vs OnPaintBackground

If I use TextRenderer.DrawText() using the Graphics object provided in the OnPaintBackground my text looks perfect. If I create my own Bitmap and use the Graphics object obtained from my Bitmap my ...
3
votes
1answer
76 views

Why doesn't TextRenderer.MeasureText work properly?

I want to measure the height of the text given a certain width of available canvas. The text that I pass in is really long and I know will wrap. To that end, I call the following: using ...
2
votes
1answer
44 views

Use DrawText to draw end of a text

Is TextRenderer.DrawText() capable to draw the end of a text when destination rectangle is too small? TextFormatFlags.Bottom didn't helped me. In others words: how to clip text on its top edge?
2
votes
0answers
191 views

TextRenderer.DrawText using GDI to render OTF Fonts?

I'm trying to draw text over a bitmap image and I've done some research and found that .NET/GDI+ doesn't support OTF fonts. I read somewhere that you could use TextRenderer.DrawText to render OTF ...
2
votes
3answers
444 views

Rotating text using Textrenderer

Hey, I'd like to display text in a 2D szenario using JOGL. But I can't figure out, how to rotate text using com.sun.opengl.util.j2d.TextRenderer. It does not have any methods concerning the rotation. ...
1
vote
1answer
67 views

TextRenderer.MeasureText return Width=0 for character “&”

All is in the title. I try to create my own OpenGL font system, and I need to get the size of each character I want to include in a Sprite texture. All works well and accurately, except for the ...
1
vote
0answers
43 views

Compact long string with PathEllipsis in .Net

I have following string, which i am drawing in one of my treeview control using DrawString. @haTEST sadasd asd asd asd asd asd asd asd ### adssad asd asd asd asd asd asdasdasd The treeview is ...
1
vote
3answers
256 views

Calculate Windows Form Width for Displayed Text

I need to calculate Windows Form Width for displayed text. The form width is obviously in pixels so you would just want to obtain the width of the text in pixels but this doesn't work: ...
1
vote
2answers
308 views

Possible bug with Graphics.DrawString and TextRenderingHint in .Net Winforms

Here's the OnPaint method of a control that simply inherits from control and provides a property to get/set the textrenderinghint: Private _mode as TextRenderingHint = SystemDefault. Public ...
1
vote
2answers
675 views

Correlating Windows forms textbox text width to GDI width

I'm drawing the text from a textbox using GDI; however, I'm trying to create my textbox such that it reflects the same amount of space that I am drawing to in GDI. So, for some X amount of width in ...
1
vote
4answers
1k views

Format DataGridView Cell without changing underlying value?

I have an unbound DataGridView (in VS 2008), of which one column contains a file path. I'd like to format the string using the TextRenderer class on the ColumnWidthChanged event without actually ...
1
vote
4answers
3k views

Accuracy of TextRenderer.MeasureText results

Calling TextRenderer.MeasureText as follows: TextRenderer.MeasureText(myControl.Text, myControl.Font); and comparing the result to the size of the control to check if text fits. The results are ...
1
vote
4answers
779 views

LinkLabel needing more space than TextRenderer.MeasureText says

If I give TextRenderer.MeasureText some text to measure and width to use it will return the height needed to display that text. private static int CalculateHeight(string text, Font font, int width) { ...
0
votes
1answer
264 views

Why is UseCompatibleTextRendering needed here?

I think I'm missing something fundamental. Please tell me what it is, if you can. I have developed a little C++ WinForms app using VS2008. So it is built using .NET 3.5 SP1. My development box is ...
0
votes
3answers
798 views

Change UIWebView's color while loading content

I have a UIWebView in my app that shows some html-formatted text (loaded from a .plist file from my bundle). The UIWebView takes about 1 second to render the text on the screen and during that second ...
0
votes
0answers
118 views

maximum height-based Graphics::MeasureString?

how could one write a version of Graphics::MeasureString(String, Font, Int32) that takes a maximum height instead of width? the reason behind this question is that i have a label that i would like to ...