Tagged Questions
The inter-glyph distance of two characters rendered with a font
8
votes
1answer
319 views
kerning problem in GD and php 5.3
Knowing this problem has been adressed before at
PHP update kerning problem with imagettftext() and imagefttext() functions
but witout solution;
PHP5.3 seem to have kerning problems when printing ...
7
votes
7answers
400 views
.NET library for typesetting documents (PDF or similar)?
EDIT: Better explanation:
Before setting a bounty for this question I want to state clearer what I need:
I need .NET library for generating printable documents. Users should be able to print exactly ...
4
votes
1answer
221 views
Qt kerning issue
In my application I'm using a QTextEdit to display some text, using HTML for formatting. The displayed document can be printed. And here's the issue: while on screen the kerning is correct, when ...
4
votes
3answers
306 views
Kerning problems when drawing text character by character
I'm trying to draw strings character by character to add lighting effects to shapes composed of text.
while (i != line.length()) {
c = line.substring(i, i + 1);
cWidth = ...
4
votes
2answers
2k views
How to adjust text kerning in Android TextView?
Is there a way to adjust the spacing between characters in an Android TextView? I believe this is typically called "kerning".
I'm aware of the android:textScaleX attribute, but that compresses the ...
4
votes
1answer
442 views
Uniscribe Kerning
At work, I have been tasked with improving the text rendering of our application to better support text character kerning. Our application generates images that appear on Television, so image quality ...
3
votes
2answers
347 views
Silverlight letter-spacing
What's the easiest way to manage letter-spacing, kerning or tracking in Silverlight?
I currently have big titles in Arial that just have too much space between the letters.
thanks
3
votes
1answer
262 views
Modifying the kerning in System.Drawing.Graphics.DrawString()
I'm rendering text onto an image using the System.Drawing.Graphics class, and the DrawString() method.
I need to generate the text for this image in a very specific way so that it exactly - pixel for ...
2
votes
1answer
143 views
OpenType font kerning with itext
I am using itext and ColdFusion (java) to write text strings to a PDF document. I have both trueType and openType fonts that I need to use. Truetype fonts seem to be working correctly, but the kerning ...
2
votes
2answers
351 views
How to change character spacing in XAML in a textbox?
How do I change the character spacing in a WPF application within a textblock. Also known as kerning or tracking for characters.
2
votes
0answers
187 views
Get kerning offset value for given character pair and font in .NET
How can I get kerning adjustment of space between 2 given chars in .NET? In WPF application?
For example, lets say I have font Times New Roman of size 22 that is bold. What kerning will be used for ...
2
votes
2answers
641 views
How do I enable kerning in WPF?
I am trying to enable kerning in my WPF TextBlock as in
<TextBlock FontFamily="Garamond" FontSize="120" Typography.Kerning="True">Table</TextBlock>
<TextBlock FontFamily="Garamond" ...
2
votes
5answers
2k views
How to stop rxvt from spacing fonts miles apart?
I installed the latest release of MinGW/MSYS, and I like to use rxvt terminal over the boring windows command prompt. But this new build spaces the letters too much: most fonts I have tried are messed ...
2
votes
2answers
908 views
Accessing font kerning information in Java2D
Little background..
I'm in the process of making an OpenGL game using Java and LWJGL. I've written a TextRenderer-class that renders text using cached pages of glyphs. The glyphs itself are rendered ...
1
vote
1answer
133 views
Winform character spacing
I am trying to use Graphics.DrawString and TextRenderer.DrawText to laydown on a fixed rectangle some strings with variable number of characters.
However, even using the GDI+ wrapping methods I am ...
1
vote
2answers
67 views
Change console text kerning in vb.net
I'm trying to make each letter a "square" essentially, so each letter is no more tall than it is wide, in vb.net. Is this possible? If so, how? I can't seem to find anything, and I've been searching ...
1
vote
1answer
441 views
How can I specify letter spacing or kerning, in a WPF TextBox?
I'd like to modify the spacing between characters in a WPF TextBox.
Something like the letter-spacing: 5px thing that is available in CSS.
I think it is possible in XAML; what's the simplest way?
I ...
1
vote
0answers
117 views
How do applications like Firefox calculate text height efficiently?
I'm curious about what technique fast applications (maybe Safari is a better example here) do to calculate the height of a terribly long page of text (for example, a chat log or a huge document).
...
1
vote
1answer
271 views
iPad/iphone font leading and kerning
I've searched on the Internet but can't find definite details.
Is there anyway to specify leading and keening for uilabels, textfields or textviews?
I could create custom fonts for each leading and ...
1
vote
1answer
972 views
Extracting Glyph Kerning Information C++
After asking my previous question about Uniscribe glyph kerning, and not yet receiving an answer, plus further reading on google etc, it seems Uniscribe may not support extracting glyph kerning ...
0
votes
1answer
42 views
FT_Get_Kerning returns 0 vector
I check if my TTF file has kerning information using FT_HAS_KERNING, and this returns true.
I then use:
FT_Vector delta;
FT_Get_Kerning( face, prev, next, FT_KERNING_DEFAULT, &delta );
to ...
0
votes
1answer
281 views
How to set kerning in iPhone UILabel
I am developing an iPhone app, and I want to set kerning in UILabel. The code I've written (possibly around kCTKernAttributeName) seems to be in error. How might I approach fixing this?
...
0
votes
1answer
360 views
can you adjust the kerning between individual letters with Cufon?
Hey all..
exactly as it sounds.
currently using @fontface, lettering.js, and kern.js to get this word pretty and scalable.
would love to do all that and throw a pretty gradient on top.
thanks!
0
votes
2answers
606 views
Kerning in vb.net
Does anyone know how to change the kerning (space between characters) in vb.net? For example, i would like to change "STRING" to "S T R I N G". If possible i would like to be able to create my own ...