Tagged Questions
The drawtext tag has no wiki summary.
4
votes
2answers
2k views
How to align text vertically?
Target: Android >= 1.6 on a pure Canvas.
Suppose I want to write a function that will draw a (width, height) large red rectangle and then draw a black Hello World text inside. I want the text to be ...
3
votes
1answer
239 views
DrawText with DT_CALCRECT - Is there a way to calculate the height of the rect WITHOUT modifying the width (with large strings)?
I have a string that i need to calculate the Rect size (text height) when drawing. My implementation uses the DrawTextW() function with DT_WORDBREAK or DT_CALCRECT flags.
An example of my string:
...
3
votes
1answer
243 views
Delphi TextRect in Windows GDI
Is there an analogue of Delphi TextRect in GDI? I looked at DrawText, DrawTextEx, but I didn't find what I needed. I need to draw a percent text of a progress bar that is divided in two color parts, ...
3
votes
1answer
272 views
Making DrawText break a string
So i can make drawtext break a string if the string has spaces, or if i put in \r\n at the end of the string. However, a long string that has no spaces or line breaks in it continues past the drawing ...
3
votes
2answers
440 views
Delphi: How to draw some text in requested width and number of lines, with ending ellipsis?
I need to draw some text in a table cell with fixed width (in pixels) and fixed number of text lines. If the text is clipped by cell rectangle, it must end with ellipsis. The problem is I can't ...
3
votes
2answers
3k views
Android: Canvas.drawText() text size on different screen resolutions
For my Android game I have some calls to Canvas.drawText().
For testing, I use the standard font size which seems to be working fine.
However, when I bump up the resolution to a higher density, the ...
2
votes
1answer
78 views
How do I drawtext superscript -1 (unicode)?
Unfortunately, I need to directly drawText on a button and I have to put -1 superscript on it.
Problem is that drawText prints small square instead of '\u207b' or ⁻ while it correctly prints ...
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
1answer
288 views
android (Advanced)Saving a Bitmap Canvas with DrawText but textsize calculation needed
I have a Canvas that i draw text on.
(this is quite advanced i think hope you can follow me)
See attached image below.
The functionality is that I can tap on the screen to change the textsize.
Tap ...
2
votes
3answers
1k views
How to position StaticLayout in android?
I want to created a wrapping text ontop of google maps api. I have been able to do this with a lot of code, but have been working on a better way. My latest attempt is to use the StaticLayout class ...
2
votes
2answers
10k views
Android Canvas.drawText
I have a view, I'm drawing with the Canvas object in the onDraw(Canvas canvas) method. My code is:
Paint paint = new Paint();
paint.setColor(Color.WHITE);
paint.setStyle(Style.FILL);
...
1
vote
1answer
63 views
Center fixed text during canvas scroll in Android
I am trying to create a watermark text to my custom view, but the problem is when I scroll the canvas, I am unable to determine the exact co-ordinates of the screen's center.
I tried tracking the ...
1
vote
1answer
61 views
DrawThemeTextEx and clipped glow
Using this complete example I could draw text on Aero Glass. The rendering is perfectly fine, but there is a visual problem: the glow is clipped on the text-alignment side.
FYI, text format is ...
1
vote
1answer
168 views
Text below rectangle painted by using drawTextOnPath
I'm trying to create a custom view, which has a rectangle, and some text right above and below it. So far I am successful at getting text above the rectangle painted, using drawTextOnPath method. ...
1
vote
0answers
62 views
Divide String over 2 custom Rect shapes in onDraw();
I'm having issues dividing my String object over 2 Rect shapes.
Firstly i have no idea how to set canvas.drawtext to a specified region.
Like you would do if you use textview.
Secondly I can only ...
1
vote
3answers
172 views
How can I get the new height of a wrapedtext of DrawText();?
code sample
procedure TForm1.Button1Click(Sender: TObject);
var
r: Trect;
s: String;
begin
R := Rect(0,0, 300, 100);
s := 'WordWrapTextOut(TargetCanvas: TCanvas; var x, y: integer; S: string; ...
1
vote
2answers
174 views
ExtTextOut not displaying subscript characters
I'm attempting to render the following text using the ExtTextOut function with the Courier New font:
C₁C₂C²C³
The superscript characters show up fine, but the subscript characters show up as ...
1
vote
1answer
410 views
Android: Text not visible on writing using drawText()
@Override
protected void onDraw(Canvas canvas)
{
//Note:I do not want to use the canvas object from this function param
//If i do so its ...
1
vote
4answers
151 views
DrawText only displays the first call
I'm using the DrawText function in a Win32 program to display "Local" at the top center of the screen and "Server" in the center. When I run the program it displays "Local" but not "Server". Here is ...
1
vote
2answers
690 views
custom textview using custom font
I'm trying to implement a custom textview that uses my own custom font.
is there a way to set the typeface before doing a Super.onDraw()?
So as to replace the usual font to the custom font that I ...
1
vote
1answer
219 views
Android - drawText invalidate
I am drawing on Canvas about who is on turn now. I am using validate() twice to invalidate the screen and drawing text again. But with invalidate() I am redrawing all board, which last quite a long, ...
1
vote
1answer
456 views
why my invoke of Canvas.drawText() just doesn't work
Hi all:
I'm writing a class that inherit from TextView, and override its onDraw() method, but in the method, my invoke of canvas.drawText() doesn't seems to work, the code just like below:
...
1
vote
1answer
231 views
When using DrawText, what does TextFormatFlags.Internal (a.k.a. DT_INTERNAL) do?
When using TextRenderer.DrawText(), what does setting the TextFormatFlags.Internal flag actually do?
Equivalently, what does setting the DT_INTERNAL flag to Win32's DrawTextEx() function do?
More to ...
1
vote
2answers
2k views
Drawing text at an angle (e.g. upside down) in Android
I'm trying to build a custom clock view in Android. See image http://twitpic.com/1devk7
So far to draw the time and hour markers I have been using the Canvas.rotate method to get the desired effect. ...
0
votes
1answer
59 views
DrawText Strange behavior
I want to draw a second string adjacent to first string on the screen canvass. The starting point of the second string should be the width of the first string.I used paint.measuretext() method of ...
0
votes
1answer
21 views
IOS5 Getting better performance in a moving text display
I am creating a moving text display with a huge font size.
The faster the text moves, the less smooth the text transition becomes.
I am calling NSString drawAtPoint evere 0.01 second (NSTimer) and ...
0
votes
1answer
109 views
FFmpeg drawtext over multiple lines
I have the code:
import subprocess , os
ffmpeg = "C:\\ffmpeg_10_6_11.exe"
inVid = "C:\\test_in.avi"
outVid = "C:\\test_out.avi"
if os.path.exists( outVid ):
os.remove( outVid )
proc = ...
0
votes
1answer
127 views
How to add text to a video with ffmpeg and python
I've been trying to add text to an avi with ffmpeg and I can't seem to get it right.
Please help:
import subprocess
ffmpeg = "C:\\ffmpeg_10_6_11.exe"
inVid = "C:\\test_in.avi"
outVid = ...
0
votes
2answers
83 views
error C2665, can't resolve between 2 overloads for System::Windows::Forms::TextRenderer::DrawText
Windows::Forms::TextRenderer::DrawText(gT, numTo100, sfo, Rectangle(2, 2, 12, 12), SystemColors::ControlText);
is giving the error
1>error C2665: ...
0
votes
2answers
366 views
Android Canvas - Position text with drawText in the same location on all screen resolutions
I can't seem to get text positioned in the same places on screens of different resolution. The problem is the text is floating, it's not part of any layout type of control.
I try to position the text ...
0
votes
2answers
109 views
Android text looks really fuzzy and impoperly drawn
When drawing the text to the screen the text itself is getting chopped off and certain characters for example the n looks like an r. and overall very hard to read. I have drawn text before and it ...
0
votes
2answers
85 views
Why some characters aren't completely shown when rendering italic text with Direct X
I am rendering some italic text using ID3DXFont::DrawText. Although i specify DT_NOCLIP and the rectangle is big enough, usually, but not only, last character of the text isn't show completely, but it ...
0
votes
0answers
239 views
Android Honeycomb - low level drawText
In versions of android prior to 3.0, I had no problems implementing RTL support by drawing out text manually (and reversing it myself). The problem is that on Android 3.0 it appears that the drawText ...
0
votes
2answers
349 views
canvas.drawText - many times vs. once overhead
Is there a significant difference between calling drawText once on an entire string vs. calling drawText for each character (or word) in the string?
0
votes
1answer
421 views
Text color with DrawText in vc++ mfc
I'm using DrawText to print a message in my application form. how can I change the text color to RGB(255,0,0) ?
Even a change in background will be usefull.
Thank you all
0
votes
2answers
643 views
Trouble using Gdiplus::Graphics::DrawText to draw white text on a black background
I'm trying to find a way to use the Gdiplus::Graphics.DrawString method to create a bitmap having white text on a black background.
(Why? Because I need to be able to rotate the text, and the ...
0
votes
2answers
403 views
How to know the size of a text when using Canvas.drawText()
I'm using the Canvas.drawText() to write text on a custom view.
I want to add a background 9-patch drawable behind the text, so I need to know the boundaries of the text drawn.
The text is given by ...
0
votes
2answers
921 views
Displaying text in multiple lines in Android
I have a graphical Android project and my primary trick for providing user interface functionality is to use drawrect and drawtext to draw a rectangle with a label on the screen. Then, I capture ...
0
votes
4answers
315 views
Canvas.drawText(“+5”) Doesn't show “+” symbol at all in Android?
I am sure this has something to do with needing an escape character or something - but I cannot figure it out. When I try to draw +5 to my canvas the + sign never shows up - I noly see the 5.
Anyone ...
0
votes
2answers
421 views
android drawText set width?
Is there a way to draw text on the android with a set width.
I'm trying to draw text inside a box that is 300px wide. I want to set the text box to 300px and right align it. That way it lines up with ...
0
votes
1answer
288 views
DrawText(), DT_LEFT and colons moving to beginning of text?
on some PCs I am finding that my calls to DrawText() result in colons being placed at the start of the text.
dc.DrawText( "Name:", &rText, DT_LEFT | DT_VCENTER | DT_WORDBREAK );
The output on ...
0
votes
1answer
2k views
Android: Canvas.drawText when button click
How to drawText when button click? How can i setContentView(R.layout.main) to see the button and draw the text when button click? I cannot make it, and below is my code for drawing text.public void ...
0
votes
2answers
2k views
Android Canvas.drawString display problem
I encounter this problem when displaying text on SurfaceView, some chars can climb up on others, code is here:
private static void fakeDraw(Canvas c)
{
Paint mPaint = new Paint();
int color = ...
0
votes
1answer
471 views
How do I make a triangle space with text written for the iPhone?
I want to draw a triangle and elide text in the shape. I can restrict the triangle to an equilateral triangle and a fixed orientation ('upside down' or 'upside up'). Then I want to insert arbitrary ...
0
votes
1answer
177 views
I3D3XFont::DrawTextW - Expanding tabs wrong?
I'm wondering if it's an issue with I3D3XFont::DrawTextW, I pass it a string with \t in it, which it expands. However, it doesn't always do it correctly. If I print the same string that I pass to it, ...
0
votes
1answer
740 views
Qt, Getting the text when QPainter::drawText() is called
Hey,
I have a QPainter object and would like to obtain the string that is drawn whenever QPainter::drawText is called, as I would if I could connect a slot to that signal (which doesn't exist, so I ...
0
votes
1answer
170 views
How do you apply a Scale Translation to a DrawingContext?
I have a Canvas with a scale translation applied in XAML. Using DrawingContext I draw lines on the Canvas. I now need to add text to the screen. I thought with formatted text I could apply a ...