Graphics.DrawString is a method in the .Net Framework's System.Drawing namespace, by which code can draw text onto an image in .Net code. This is mainly used in ASP.Net, as TextRenderer.DrawText (from System.Windows.Forms) provides more reliable functionality in Windows Forms applications.
2
votes
1answer
29 views
XNA - How to change orientation of Drawing a List of Strings
How do you Draw a list of strings with a spritebatch so that it looks like this;
Item1 Item2
Item3 Item4
Instead of Item 1 Item 2 Item 3 Item 4 or instead of:
Item1
Item2
Item3
Item4
-4
votes
0answers
22 views
Create object of class `Image` containing a string [closed]
Is there a possibility of creating an object of class Image containing a string, the same which would be drawn when invoke g.drawString(...)? How to do it?
0
votes
2answers
31 views
centering individual letters in a vertical string in java
Okay so I have a vertical string but when it contains I's or L's they are offset from the rest of the string because of how they are typographically written they are in a sense left justified in the ...
0
votes
1answer
86 views
C# progressbar drawstring on form load
is there a way to write a default text on a progressbar in C# ?
this isn't working in Form_Load, but works fine on button click...
using (Graphics gr = progressBar1.CreateGraphics())
{
...
2
votes
2answers
141 views
java Graphics2D quality of drawString
I have a question regarding the quality of the drawString function, currently I have this image:
Basically what you see in the bottom middle is a card drawn on 125% of it's size. The cards in the ...
0
votes
0answers
61 views
draw listview columns and alignment the columns seperatly
i am drawing my listview before i print it and i can align columns to the right with StringAlignment.Far but it draws all column to the right, can i draw my first description column to the left and ...
1
vote
1answer
51 views
Looped drawString not appearing in JFrame
I am trying to create a JFrame that displays a string in every even-numbered font size from 4 to 24. To do this I am trying to do a for loop that creates a drawString that uses a Font that increases ...
0
votes
0answers
48 views
Thermal printer issue by g2d.drawString alignment using Java
How to align the below formatted data in g2d.drawString()
Particulars |Rate |Qty |Amount |
Dhayaseelan | 123.45| 2.00| 260.60|
GoodDay ...
2
votes
0answers
55 views
How to use Graphics.DrawString with a font not installed in C# [duplicate]
Environment: Windows 7 Pro, C#, WinForms
I am successfully using Drawstring to write a text string to a PictureBox if the font is installed. <== Code below is working just fine...
I also want to ...
0
votes
0answers
29 views
How to detect a click on a text created by g.DrawGraphics()
I am creating a text onto a PictureBox using this code:
Font newfont = new Font(labelik.Font, FontStyle.Bold);
StringFormat a = new StringFormat(StringFormatFlags.NoClip);
g.DrawString(callsign, ...
0
votes
1answer
54 views
DrawString across multiple JPanels within a JFrame
I've got somePanel1, somePanel2, and somePanel3 instantiated within someFrame.
If I do a drawString in somePanel form, how can I get the output to be different in somePanel1, somePanel2, and ...
0
votes
2answers
80 views
How do I use nonstatic methods?
I have been searching for a while, and the documentation nor Google return a good answer. I just started using java, so help me out here. I am getting an error with
Graphics.drawString('hello',10, ...
1
vote
1answer
72 views
SpriteBatch with DrawIndexedPrimitives
This is my first 3D application that I have created so sorry if this seems like such a simple question but I have searched the internet and these forums to try and find an answer.
I am attempting to ...
0
votes
1answer
68 views
How does spriteBatch.DrawString draw text from compiled spritesheet texture?
Does each spriteBatch.DrawString(spriteFont, "text", new Vector2(10, 20), Color.White) call draw every letter of the text string separately (calls spriteBatch.Draw for each letter each frame), or does ...
1
vote
1answer
167 views
Java - Display Text OpenGL
I am following a youtube tutorial about making an rpg in Java with OpenGL.
Now I am slowly getting ahead, and there is no GUI type tutorial yet so I want to add some text to say my stats and other ...
0
votes
3answers
363 views
How do I make drawString() text bold?
I have a drawString() method in my paintComponent method. Is there a way to make the text drawn by the drawString() bold? Also, is there a way to make the text bigger? I would like to avoid using ...
0
votes
3answers
380 views
Java center text in rectangle [duplicate]
Possible Duplicate:
Centering Text in a JTextArea or JTextPane - Horizontal Text Alignment
I use drawString() method to draw string using Graphics, but I want to center my text in a ...
1
vote
1answer
197 views
XNA C# Drawstring weird boxes
Image: http://i.imgur.com/dJseH.png
I have been working with XNA some time now and this is the first time this has accured
The blacktext is supposed to say "Orc" and the purple "1 / 100" as in ...
0
votes
1answer
324 views
Using DrawString to top align text
I want to use DrawString to vertically align text with different size fonts. Basically I am trying to print a sell price on a report with the cents printed in a smaller font than than the dollars. ...
2
votes
2answers
249 views
Trying to use drawString method to print a name
I'm just going through some basic tutorials at the moment. The current one wants a graphics program that draws your name in red. I've tried to make a NameComponent Class which extends JComponent, ...
2
votes
2answers
119 views
Passing a string from database to drawString()
I have a database with all the values stored in a table. I want to print a name from the table using drawString() method. I hv created a resultset and the arraylist. Is there any way to pass a string ...
0
votes
2answers
127 views
How can I draw things using this Java GUI API?
My instructor has defined this API for graphics.
It's very simple but I've spent an hour or two now trying to figure out how to make simple Graphics manipulations show up.
So I have a class T which ...
1
vote
1answer
161 views
Using Java Swing, mouseEntered is being overshadowed by mouseMoved. Is there an easy fix for this?
Basically, I have to simply paint the text "Mouse entered at" followed by its coordinates. My code does this successfully when mouseMoved is not implemented. When it is, it never shows that the ...
4
votes
2answers
380 views
Gdiplus DrawString draws transparent text over Remote Desktop
I'm drawing text into a DIB section off-screen bitmap, which is 32bit deep and uses the alpha channel (ARGB). I draw pixels directly to memory. Then, I create a Gdiplus Graphics object, pass my memory ...
0
votes
1answer
180 views
DrawString only works in top-left part of form vb.net
Here is my code
Public Class Form1
Public MyFormObject As Graphics = Me.CreateGraphics
Public objFont = New System.Drawing.Font("arial", 20)
Public a, b As Integer
Private Sub Button1_Click(ByVal ...
2
votes
1answer
298 views
How to color individual characters and maintain proper spacing / kerning / alignment?
I want to use Graphics.DrawString to draw characters using individual colors.
The problem is that each time I call DrawString, I have to know where to position it (either using a Point or a ...
2
votes
1answer
151 views
Java Swing's drawString shows an echo
I am not sure what I am doing wrong...
I wanted to make a JComponent showing a string with custom font, custom colors (including gradient background), etc. It works fine, but I see the bottom of the ...
0
votes
1answer
237 views
Change the color of a String using DrawString?
I'm in vb.net and I'm trying to format a print document. One of the non-negotiable attributes of it in one corner I have to a have a string with a black background and white text. I'm trying to use ...
0
votes
2answers
113 views
Draw string on ellipse
I'm happy with the output of my clock, however - I am not sure how to properly align my drawString for the numbers which should appear at the tip of each tick mark on the clock.
I am hoping someone ...
2
votes
0answers
240 views
DrawString EllipsisCharacter has different behavior in test program than production library?
I was drawing on a bitmap in a test program using the following code. The ellipsis worked as expected. I moved the code to a .dll called on our webserver, and the ellipsis behavior changed to have no ...
0
votes
1answer
330 views
Trying to draw Rotated text with CGAffineTransform and MakeRotation appears at wrong location
I'm trying to draw some rotated texts by using the CGAffineTransform.MakeRotation method at specifc location. I also make use of the TranslateCTM, but something must be wrong as rotated texts do not ...
2
votes
0answers
113 views
Using text attributes for picture in Graphics2D object JAVA
I have a weird problem - I'm trying to write a text string over a transparent GIF picture.
I'm using awt Graphics2D object, and for some reason, I cannot affect the way the text looks - its color, its ...
0
votes
0answers
94 views
Why repainting of that take so much time?
I have something like that (the time is now displayed correctly). I have added KeyListener to the JFrame in which these JPanels are. When I press ->(right key) I want to time to increment by one and ...
0
votes
1answer
159 views
How to draw string so it is not overlay old one
I am drawing some signs in my JPanel(hh:mm -> time), but when I update it and call repaint it covers old letters(they don't dissapear). How to fix this?
0
votes
2answers
655 views
Change color during writing a string into an image with drawstring
I'm creating a string out of three smaller strings which I read in from three different text-files and then write the string into an image. I'd like to change the color for the paragraph in the middle ...
2
votes
1answer
97 views
How does one Read an external applications DrawText drawn text
I have been struggeling a long time with this question: "How does one Read an external applications DrawText drawn text?".
Im coding in C# right now.
It is not possible for me to use Optical ...
1
vote
1answer
434 views
Make drawstring partially bold
Good morning.
I have created a custom treeview control that paints a normal treeview onto the screen, plus various other things. During the paint event I draw the node.text string to the treeview ...
1
vote
1answer
1k views
how to improve printed text quality after using “graphics.DrawString”?
I have a problem with my text quality after printing ! it's not smooth and antialiases!
This is the story :
I create a graphic from a bitmap (Graphics.FromImage(MyBitmap)) and I think it's the start ...
0
votes
0answers
376 views
draw a bar chart in java linking with array
so, basically i need to get my code to draw a bar chart when it displays its answer. the code checks word length frequency to assess patterns in writing e.g. i am a man would give 2, 1, 1.
what i need ...
-1
votes
1answer
117 views
Drawstring refuses to stay on screen (XNA)
been fighting with this problem for a good 3 hours now, and i figured it was finally time to ask some professionals.
My problem is that i want to make a scrollbar, and I've figured out that i want to ...
2
votes
2answers
162 views
drawstring onclick method C#
I have some strings that I have drawn using DrawString
for (int j = 0; j < dt.Rows.Count; j++)
{
e.Graphics.DrawString(Convert.ToString(dt.Rows[j]["ID"]), drawFont, ...
0
votes
2answers
162 views
Replicate label with DrawString method
I need to draw a string over a Infragistics toolbar, and I cannot use a label since it's background will not be actually transparent (see in image).
I've managed to overlay the text as desired using ...
1
vote
1answer
172 views
How to achieve fine font scaling in .NET?
Microsoft Office does a very nice job when it comes to scaling of fonts. They can almost linearly be scaled in steps of 0.5 points (see image below).
Using Graphics.DrawString I was not able to ...
0
votes
1answer
93 views
Character style influenced by background while painting it with Graphics.DrawString() (.NET 4.0)
Background: I am working on a legacy map application using WinForms and .NET4.0. The labels, roads, icons are painted to a separate bitmap called "overlay" apart from the terrain. The background of ...
0
votes
2answers
314 views
PdfSharp XGraphics.DrawString not working for Right-To-Left Languages like Persian
I'm working with PdfSharp to create some pdf files. Everything works fine except when I try to put some text into the file in a right-to-left language (e.g., Persian) using Drawstring method. Although ...
1
vote
1answer
478 views
JFrame won't let me drawString();
I need help because I am trying to code a game in Java.
I was stopped in my tracks when I found out that it would not draw a string to the JFrame.
I have tried several methods of getting around this ...
0
votes
2answers
1k views
Justify text with DrawString right -and- left
Let's say I have 200 pixels of space and I want to draw two strings into it:
- the first string should be left justified
- right second string should be right justified
- But not overlap if they ...
1
vote
1answer
739 views
Java drawString is drawing string above bounds
I have a Jpanel which for example is 500 width and 100 height. i have the formula to calculate the center of the screen vertically (y) and horizontally (x). Which i use to drawString(myText, x, y) ...
2
votes
2answers
685 views
Windows DPI setting affects Graphics.DrawString
I have created a new Bitmap object and now want do draw some text to it using GDI+.
So I call Graphics.DrawString(...).
The problem is that the size of the string depends on Windows 7's DPI settings.
...
0
votes
2answers
1k views
Adding text to a JPG image in ASP.net C# and save to file on server
I'm using the following code (credit to Dolph Larson) to take a pre-made image file in bitmap format on an ASP.net server, draw a string on it and save it to file on the server. In the original code, ...
