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 sure-fire way to detect when a maxContours value is too high or too low (yes that too can be a problem)? (Fonts are programs so one way to detect a font fil
it1352
5
2019-05-17
I'm trying to write a Java program that finds the TTF for a font face given its name. For example, inputting "Times New Roman" on my Windows machine would return the path "C:\Windows\Fonts\times.ttf".
Most other font face names are abbreviated in a similar manner in the name of their TTF file. Is there a standard somewhere that I can use to map fo
it1352
1
2019-05-17
The following font is missing the @ sign. I would like to create a copy of the font file with my own @ symbol added to it:
http://www.fonts2u.com/sixty-four-dollar-question-medium.font
Solution Fontforge should be able to do that. http://fontforge.github.io
it1352
12
2019-05-17
Is there any java library that can be used to extract each character from a true type font (.ttf)?
Each character of the font, I want to:
Convert it to the image
Extract its code (ex: Unicode value)
Anyone can help to show me some tips on above purpose?
P.S: I want to figure out, how such this app made: http://www.softpedia.com/progScreenshot
it1352
3
2019-05-17
I'm trying to write a Poweshell script that installs all fonts (in formats .ttf and .otf) from a given directory. However I want to ignore fonts that are already installed. For that purpose I need to get the names (not the filenames) of the fonts.
How can I do that?
Solution EDITED from comments from @LotPings
You can use .NET for that. In the f
it1352
0
2020-11-09
For getting glyph widths, I convert a TTF font to AFM, and then parse the content of AFM file to get the width of each glyph.
Since technically, fontforge is capturing the glyph widths from the binary TTF file, and then create a AFM font file based on the AFM standard template. I wonder if it is possible to directly convert a TTF file to a list of
it1352
0
2020-11-09
What kind of support do the PlayN or supporting libraries (like TriplePlay and others) provide in regards to non-standard fonts -- custom TrueType fonts in particular.
Solution You have to register the font differently on each backend that you intend to use, but once the font is registered by name, you can use it like any built-in font by simply c
it1352
0
2019-05-17
What is the difference between true type and open type font? Does the latter suggest openness as in open-source? Does the OS use a different "engine" for rendering those two?
Edit:
Sorry, wasn't really clear in my original question. I was actually looking for more explanation regarding the visual difference (if any) between the two; maybe one has
it1352
1
2019-05-17
I am creating a game. I have some UI with text. Recently we wanted to add Japanese language version but I have problem with fonts. I use stb_freetype to rasterize fonts and I support Unicode so it should not be a problem. But most fonts doesn't seem to contain Janapese characters, on Windows I've found that Arial Unicode does. But its size is 26 MB
it1352
0
2020-11-09
I have C# winform, I installed a couple of ttf fonts, but when i set the text box font to any of the ones i downloaded, i get this error Even though I'm 100% sure that the font I installed is ttf ..
why ? and how to fix this ?
Solution I found the solution here and it works for me :
http://www.idautomation.com/kb/TrueTypeErrorDotNet.html
it1352
64
2019-05-10