Searching for fixed width BitmapFont Creator OSX
Monkey Archive Forums/Monkey Discussion/Searching for fixed width BitmapFont Creator OSX
| ||
Hi folks, I am searching for a fixed width Bitmap Font creator for OSX and can't find one. Any suggestions? Michael |
| ||
Try searching for GlyphDesigner from 71Squared |
| ||
I thought it can only to variable width fonts. Will give it a try. Thanks! |
| ||
I think it can't create fixed width font bitmaps which you could use with the SetFont statement. |
| ||
i got one which i downloaded from the dark basic website called fontimage which works great with the setfont statement.Ive been and looked for the link but cant find it now sorry but it was either in the magazine section or the forume section.It was created by norman e perry.Im sorry i cant be more helpfull but if you can find it then its a very nice program and very small.I use it sometimes instead of ziggys as its much smaller and faster. |
| ||
The problem is, i need it for OSX. |
| ||
I used Glyph Designer for my monkey games, it outputs 2 files. You can load the sprite atlas in and then read in the data (save it in txt editor for .txt) and extract the useful bits of information. e.g the texture co-ords for each character and the xSpace for the start of the next letter. I stored all this in a dictionary which I use as a lookup for the each letter of a string for drawing to screen. Works well and only took a few mins to knock up :) |
| ||
Hiero: http://slick.cokeandcode.com/ I use this one. EDIT: You can adept this code to fit your own game. |
| ||
Thanks guys, I was looking for something that I can use with the plain DrawText statement. I am sure it is helpfull for others too. Thank you! |