Tagged Questions

6
votes
3answers
523 views

Font smoothing in Delphi

I had cause to need a label with a large font on a Delphi form and noticed that its curves were still slightly jagged. I compared this with the same size and font in MSWord which was much smoother. …
2
votes
1answer
254 views

php and true type collection in gd

I try to use a true type collection "gulim.ttc" with 4 fonts in the GD libary. Like this: $font = "fonts/gulim.ttc"; imagettftext($im, 20, 0, 0, 25, $white, $font, $string); The Problem is, PHP/GD …
1
vote
6answers
51 views

How do I determine the “narrowest” font on Windows?

Hello I am looking for a way to find the font that uses the least average horizontal space per letter, since I have a few buttons in my application that need to show a rather long text in it, and …
1
vote
2answers
78 views

writing a font viewer - getting font properties, loading ttf dynamically

I'm trying to write a font viewer for TrueType / OpenType fonts with VB6 / VB5 code (under Windows). it is surprisingly difficult: 1) in VB / winAPI, i did not find how to extract the font's name, …
0
votes
0answers
76 views

Convert TrueType Font (or JPG image) to PNG image with Alpha Transparency in .NET?

Anyone know how to convert either a TrueType Font or JPG image into a PNG image with Alpha Transparency in .NET? I basically want to create a script-looking signature image that has a transparent …
0
votes
4answers
87 views

Font name not found on Linux

In Java I have code that works well on OSX but not in linux. This code loads a font file and uses Font.createFont(). Here's the code: log.debug("Loading ttf file AmericanTypewriter.ttf"); InputStream …
0
votes
3answers
135 views

TrueType font antialiased? Bitmap fonts

I'm using this tutorial, but the font isn't antialiased. The font size is big, so it should antialiased it, but it doesn't. Do I need to enable something in openGL to make it antialiased?
0
votes
1answer
22 views

Visual Studios: Getting standard font… files?

I've run into another problem while fixing up my game to use this library. SDL.NET, the library I'm using for graphics and input in my VB.NET app, has its own special Font class which is entirely …
0
votes
1answer
216 views

How do you change the name of a .ttf font

How do you change the name of the font embedded in the .ttf file? (It's for a device that's expecting a hard coded font name that I'd like to swap w/ another more readable openly licensed font). I'd …
0
votes
1answer
70 views

How to determine if a TrueType font is italic?

How can I determine if a TrueType file is italic? Ideally this would be a way via PHP, Ruby, or the linux command line. I am currently running ttf2pt1 to generate an afm file for the ttf file, and the …
0
votes
2answers
98 views

Combine several bitmaps into (TrueType) font

I have several (~200) small bitmap files with glyph images. How can I combine them to a single bitmap font file? Actually, I need a TrueType font created from these bitmaps (with no curves, …
0
votes
2answers
249 views

Corrupt TrueType Font Detection

I am at present dealing with a corrupt TrueType font. Programs available to me tell me there is a problem with the maxp table -- the maxContours member has a value that is too large. Is there a …
0
votes
6answers
577 views

How to get a list of installed True Type Fonts on Linux using C or C++?

How can my app get a list of the True Type Fonts that are available on Linux. Is there a standard directory where they are stored across different distributions? Or some other standard way to locate …