Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

System.Drawing - bad text rendering using DrawString on top of transparent pixels

When rendering text into a bitmap, I find that text looks very bad when rendered on top of an area with non-opaque alpha. The problem is progressively worse as the underlying pixels become more ...
6
votes
3answers
2k views

Why is DrawString exhibiting unexpected behavior in C# Winforms?

I have subclassed a control in C# WinForms, and am custom drawing text in my OnPaint() handler. The font is set to Courier New using the following code in my form: FontFamily family = new ...
5
votes
6answers
4k views

GDI+: MeasureString() pads the text on the left and the right

I'm using GDI+ in C++. (This issue might exist in C# too). I notice that whenever I call Graphics::MeasureString() or Graphics::DrawString(), the string is padded with blank space on the left and ...
5
votes
4answers
2k views

How can drawString method be used for writing diagonal way

I am using c# 2005 i want to write string diagonally on image. But by default c# provides the option to write horizontally or vertically. how we write diagonally? Thanks
4
votes
1answer
99 views

Why does DrawString look so crappy?

I am trying to add a text scale to a color image. The agcScale.jpg image (below) is 2 winform labels on the top and bottom and 2 winform pictureboxes on the left and right. The exact same code was ...
4
votes
4answers
482 views

How does Affine Transform really work in Java?

I have been using Affine Transform to rotate a String in my java project, and I am not an experienced programmer yet, so it has taking me a long time to do a seemingly small task.. To rotate a string. ...
4
votes
1answer
435 views

Fill text inside rectangle

I'm using GDI+ to draw a string on a Graphics object. I want the string to fit inside a pre-defined rectangle (without breaking any lines) Is there's anyway of doing this besides using ...
4
votes
1answer
2k views

Graphics DrawString with controlled Word Wrap

Basically my issue is that I need to word wrap a string when I want to. Not when .NET wants to. I understand that the DrawString method will automatically word wrap if I give it a rectangle to draw ...
3
votes
3answers
62 views

Center drawn text

I'm drawing text in VB.net by using: gfx.DrawString(_bText, New Font("Tahoma", 5), Brushes.Black, New Point(25, 5)) where gfx is a graphics object using my control. The x point is correct but I ...
3
votes
4answers
213 views

Drawing text in .NET

I'm doing some tests about drawing text in .Net and I had the following results. The first string is a native Label with the FlatStyle set to System The second string is drawn using ...
3
votes
0answers
549 views

Graphics.DrawString() vs TextRenderer.DrawText()

I am confused about these two methods. My understanding is that Graphics.DrawString() uses GDI+ and is a graphics-based implementation, while TextRenderer.DrawString() uses GDI and allows a large ...
3
votes
2answers
446 views

How to draw a rotated string as an image with System.Drawing?

I am drawing strings to images. The size of the images is dynamic, or in other words, the images are as large as necessary to display the strings. To achieve that I am measuring the size with ...
3
votes
3answers
1k views

Graphics.MeasureCharacterRanges giving wrong size calculations in C#.Net?

I'm trying to render some text into a specific part of an image in a Web Forms app. The text will be user entered, so I want to vary the font size to make sure it fits within the bounding box. I have ...
2
votes
1answer
80 views

tooltip text erases panel drawing in java

Having a JPanel on which some drawing is performed using paintComponent method and after that when ever a user clicks on the JPanel a string is drawn (or any drawing) on it and as the user moves mouse ...
2
votes
0answers
192 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
5answers
287 views

Drawing “transparent” text via C# Graphics, but in a way that it turns the drawn text to be “missing” so it's transparent in the resulting image

I am looking to draw a string on a DC (Graphics - I am using C#) - but I want the drawn text to be "deleted" from the image so that what's left is essentially a cut-out of the text. If I was to ...
2
votes
1answer
349 views

Graphics.DrawString() & leading padding spaces for Proportional Font

I've been using a monospaced font to render a table onto a graphics object, and to align the columns of text I'd been padding the text using space characters. I've been asked to change the font to a ...
2
votes
4answers
333 views

Graphics.drawString() Draws Over My Old String

I'm working on simple counter. My problem is that drawString() method draws new string over the old one. How to clear the old one before? Code... package foobar; import java.awt.Color; import ...
2
votes
2answers
190 views

Determining bitmap size to hold text string

What I am trying to do is use the DrawString() method to draw a string to a bitmap. To do this, I need to create a bitmap and get a Graphics object from the bitmap, then call DrawString() on that ...
2
votes
1answer
457 views

Ugly rendering of image with DrawString-Method (ASP.NET)

I want to render some text as image in ASP.NET. It is working well, but the text is rendered very ugly (with grey pixels around the text) even if I turn on AntiAlias (or ClearType) by changing the ...
2
votes
3answers
578 views

How to draw unicode string using C# graphics.DrawString

I'm trying to send khmer script(unicode) string to printer using PrintDocument provided by the .NET framework. Unfortunately it seems to me that the Graphics.DrawString() does not render khmer script ...
2
votes
2answers
641 views

Disable word breaking when wrapping lines in .NET DrawString

I am using .NET to draw a string into a limited space. I want the string to be as big as possible. I have no problem in the string breaking up into more lines (if it stays inside the rectangle). Now ...
1
vote
1answer
34 views

String formatted using String.Format not displaying in Print Preview

I'm trying to create a print function with a corresponding print preview. For some reason, any string I create with String.Format will NOT show up on the print preview! Use the code snippet below as ...
1
vote
2answers
59 views

How to use Graphics out side the paint() method in my Java applet?

I want to use drawString() once a button is pushed to draw the answer on my applet but I can't figure it out. I have try many ways to do and my program compiles but won't drawString() when the button ...
1
vote
1answer
30 views

Get the dimensions of a characters knowing all the details on the font

I need to create bitmaps of characters depending on a specified font. When they specify a font, they are specifying: Font (e.g. Microsoft Sans Serif) Font style (e.g. Bold) Size (e.g. 14) Effects ...
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
0answers
176 views

Why different font rendering with graphics.drawString() and a default JLabel with ClearType?

Why has the displayed GUI different font style/rendering with graphics.drawString() and a default JLabel with activated cleartype? And how can i fix it?
1
vote
0answers
164 views

Updating a string In paint while being painted drawString: uses html unit and awt/ java

I have made a program using htmlunit that takes an update from a page every 50 seconds or so. it is converted to a string in a method and is sent to a draw string which animates it across the string. ...
1
vote
1answer
946 views

c#, Rotated text align

I need to be able to rotate text in label and align it to left, right or center. So far I am able to do rotation with this code in derived label onPaint method: float width = ...
1
vote
1answer
449 views

User Placed Text on a picturebox in c#

I am trying to make a tool that allows me to choose a certain location on a picturebox to put text from a textbox on. It will need to be able to place multiple different texts on the picturebox and ...
1
vote
4answers
326 views

.Net DrawString font reference changes after calling, is this a potential problem

Given the following code. Is there any potential for the first DrawString method to draw in Arial rather than Times New Roman? protected override void OnPaint(PaintEventArgs pe) { Font f = new ...
1
vote
1answer
348 views

Compact Framework: drawing multi-line string with ellipses

I'm creating an owner-drawn control inherited from ListView for a Windows Mobile application. I'm using Graphics.DrawString to write out a two-line text string (using .NET CF 3.5). Problem is some ...
1
vote
2answers
490 views

C# Graphics.DrawString not rendering special characters?

I'm trying to write some arbitrary text to a custom control.My code works, but when I try to draw characters such as ΓΌ, it displays an empty square where the character would be.I need this to work as ...
1
vote
1answer
464 views

DrawString with character wrapping

I'm creating a fatal error dialog for a Windows Mobile Application using C#. The problem is when I try to draw the stacktrace using DrawString, half of my stacktrace is getting clipped off because ...
1
vote
1answer
723 views

Black border around characters when draw Image to a transparent Bitmap

I have to draw a String on a transparent bitmap at first, then draw A to destination canvas. However on certain case, there is black border around the characters. Bitmap* tempImg = new Bitmap(1000, ...
1
vote
2answers
4k views

PdfSharp: Text height/positioning problem

Whether I use XTextFormatter or not, I get the same error about the LayoutRectangle having to have a height of 0 or something like this. new ...
1
vote
1answer
875 views

Smallcaps / multiple fonts and bolding using 'DrawString' in GDI+

I want to write out some text using smallcaps in combination with different fonts for different words. To clarify I might want the message 'Welcome to our New Website' which is generated into a PNG ...
0
votes
1answer
45 views

Line Breaking and Tab Spacing in g.drawString in Java SE

I got the coding separately for these Line breaking & Tab Spacing. Line Spacing: private void drawString(Graphics g, String text, int x, int y) { for (String line : text.split("\n")) { ...
0
votes
1answer
64 views

Break lines in g.drawString in Java SE

This is exactly what I'm trying to do: Graphics2D g2 = (Graphics2D) g; g2.setFont(new Font("Serif", Font.PLAIN, 5)); g2.setPaint(Color.black); g2.drawString("Line 1\nLine 2", x, y); That line ...
0
votes
1answer
43 views

C#: Using drawstring to annotate images works but not able to get text in bottom left corner, only bottom right

I'm making a batch watermarking tool for myself and some others at work and using the following code allows me to annotate text on the bottom right of the image but I'm not able to make it annotate on ...
0
votes
0answers
18 views

Increase Character Spacing in XNA

Here is a picture of my problem: The problem is mostly evident in the words in the top left and the center. The characters are way to close and it makes it a lot harder to read. I can't find ...
0
votes
2answers
72 views

Centering an individual character with DrawString

I have tried all of the suggested ways to center text, but I can't seem to get the results I want while centering an individual character. I have a rectangle. In that rectangle I'm drawing a circle ...
0
votes
1answer
41 views

Displaying Strings on frame with drawString?

So my program is like this, I click a part of the frame and a JOptionPane comes out, asking for input. For example, I type in APPLES. Then, I click on another part of the frame, this time typing in ...
0
votes
0answers
91 views

How do I use a custom font with Slick's UnicodeFont class?

I am using this code, which was snipped and modified from the Slick Wiki Unicode tutorial: UnicodeFont menuFont = new UnicodeFont("/fonts/mailrays.ttf", 8, false, false); menuFont.addAsciiGlyphs(); ...
0
votes
0answers
30 views

Swing issue, drawing on a JTabbedPane

i'm having hard time trying to understand and solve a problem while drawing on a JPanel within a JTabbedPane Basically i have this small app that draws stats graphics, its a simple JFrame with a ...
0
votes
2answers
51 views

Strange behavior from a Java Graphics drawString call in a loop

I'm at a complete loss here. I have a method that goes through a Vector of TreePaths containing a custom FileNode class, and extracts the File contained in each last node. The result is a printed list ...
0
votes
2answers
110 views

Drawing a string with full justified in .NET

I need to sraw a string to a bitmap with full justified. I know that StringFormat.Alignment doesn't support full justified alignment. So, I'm looking for a solution to draw a string on a bitmap with ...
0
votes
3answers
193 views

XNA SpriteFont with multiple colors?

Is there a way to draw a text with multiple colored horizontal areas? As an example I want to draw the text "Hello" with the lower half in red and the upper in green. The text to use has to be ...
0
votes
0answers
95 views

.NET DrawString() different text layout when changing graphics scale

I'm using simple code to draw text inside specified rectangle. Everything works fine, except that sometimes text layout is different depending on graphics scale (set via Graphics.ScaleTransform ...
0
votes
1answer
450 views

C# Graphics.DrawString RectangleF Auto-Height: How to find that height?

I am writing text over an image using Graphics DrawString method, binding my text with a RectangleF. Here is my code: //Write header2 RectangleF header2Rect = new RectangleF(); header2Rect.Width = ...

1 2