fonts

What font do you use for your code editor?

For a long time I used Courier New as default font for my code editor, until I got more into typography and found this new fixed-width font called Triskweline: The font is beautiful, but unfortunately it works only at size 10pt. This made me wonder: what (custom) font do you use for your code editor? ...

BaileySansITCStd-Book and UniversLT-CondensedLight Fonts, these are default with what?

Osx or adobe fonts? I have some ai files and im trying to run them on another computer. I need to locate these font files. ...

Font selection for codes in a book

Which font or fonts should be used while writing code lines inside a book? I'm especially dealing with C code, but I'd also like to know what fonts are used for the codes of popular programming languages in books. ...

Count max rectangles number, that can be placed inside character

Hi, I need a solution for quite complex problem. Exactly, I need to calculate the number of rectangles that can be placed inside letter/character with given size, considering that all rectangles are the same size, but it(the size) and the letter/character(of some regular specific font) itself can be changed by user(this will be used as w...

How do I fix a font compatibilty issue from Mac to Windows, using Adobe Flash CS4?

Hi, I need to edit a Flash movie that somebody else developed in Adobe Flash CS3 on a Mac. I'm using Adobe Flash CS4 on Windows (Vista). However, the font that shows up on my computer is much bigger than on the .SWF that he produced. He used a custom font, which I had to add to my system Fonts folder. Because Adobe Flash now detects th...

Issues with the [embed] tag and fonts

Hi, I have some issue with the [embed] tag. Even if I set the embedFonts property of the textfield to true the text doesn't show up. The thing is that it worked previously and after some changes (not related to fonts) it doesn't. I'd like to understand how the embed process for font works to find the error in my code. I declare : [Em...

Text characteristics identifier

I need an app where I can just copy a block of text and have it identify the typeface, color, size, etc. Is there such a thing? ...

Fitting Text into an Image

Hello all, I have a function which takes in a font (ttf or otf file) and generates an image of text in different fonts. The problem I have is trying to work out how I can make the text fit in the image regardless of the font-size, type of font, and amount of text. I have tried to make the image rectangle variable so that it contains t...

javascript font size not working

why this don´t work: function rp_insertTable() { FM_log(3,"rp_insertTable() called"); var farmTable = dom.cn("table"); var ftableBody = dom.cn("tbody"); var i; var maximize = GM_getValue("Maximize_" + suffixGlobal, 0); farmTable.className = "FMtbg"; farmTable.id = "farmMachineTable"; farmTable.setAttribute('cellpadding', 2); fa...

What's the default font that flex uses?

If I don't declare any font family in my flex application what's the default font that it uses? ...

Img tags inside an Anchor in an Flash/AS3 HTMLtextfield with embedFonts = true, and a css file for styles behaves unexpected? Any solution?

when the embedFonts is removed, it works perfectly as expect. Otherwise when an image is clicked, it selects the whole text around it. Alternatively can anyone suggest a method to style dynamic textfields instead of using html? ...

Displaying Hebrew text in a console

How to add a new font to the console (win7), and where can I find the right font in hebrew? I'm already find it http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q247815, but it not helps me. thanks, Dani. ...

Antialiased fonts in emacs 23.2 on Windows

I'm having trouble getting antialiased fonts to work correctly in emacs 23.2, to the extent that it appears that it doesn't actually support antialised fonts. If I do the following in emacs 23.1: (set-face-font 'default "DejaVu Sans Mono-9.0:antialias=subpixel") (describe-font nil) Then this reports the full name as "DejaVu Sans Mono...

How do I tell if a font is a symbol font?

Given an HFONT, how do I tell if it's a symbol font? A pdf library I'm using needs to treat symbol fonts differently, so I need a way to programatically tell if any given font is a symbol font or not. ...

How to use Norwegian language iphone?

How can i use Norwegian characters to show them in UILabel in my application. if i use it directly it shows garbage value. ...

DirectWrite with hinting

Can I get glyph outline with hinting in DirectWrite? In GDI, if I call GetGlyphOutline without specifying GGO_UNHINTED, I get the outline with hinting applied. The counterpart in DirectWrite is IDWriteFontFace::GetGlyphRunOutline, but there is not such a switch. From what I see, the outline is raw and no hinting is applied. Is there a wa...

Internet explorer, Safari and Chrome problems with displaying @font-face rules.

Hy guys, I've a problem with IExplorer, Chrome, Safari etc.. Only Firefox works perfectly with all of this @font-face rules: In Css: @font-face { font-family: Calibri; src: url('Calibri.ttf'); } @font-face { font-family: HAND; src: url('http://www.mydomain.org/css/HAND.eot'); src: url("HAND.ttf"); } #side_text { position:relati...

Proper MIME type for fonts

Searching the web, I find heaps of different suggestions for what the proper MIME type for a font is, but I have yet to try any MIME type that rids me of a Chrome warning such as the following: Resource interpreted as font but transferred with MIME type font/otf The font is an OTF. I've tried the following MIME types so far font...

Android develop LCD font

How to add additional font in android environment? I need to make a font like LCD with pale background numbers like this: http://www.androidfreeware.net/img2/gps_speedometer_android_1.png ...

PHP-GD: Dealing with Unicode characters

I am developing a web service that renders characters using the PHP GD extension, using a user-selected TTF font. This works fine in ASCII-land, but there are a few problems: The string to be rendered comes in as UTF-8. I would like to limit the list of user-selectable fonts to be only those which can render the string properly, as so...