fonts

Unicode characters in XeLatex

This is my LaTex script: \documentclass[a4paper]{article} \usepackage{fontspec} \usepackage{xunicode} \usepackage{xltxtra} \setmainfont[Mapping=tex-text]{Jenson Classico} \begin{document} ąęśćłó \end{document} I compile this using xelatex through eclipse plugin. As Jenson Classico has no polish characters I have edited this font to a...

C#/WinForms: how to prevent font changing based on OS language

I have written a WinForms program in C# and left the default font for all form controls (labels, checkboxes...) (The font is Tahoma I think, not sure though). When I compile the program and then run it on a Japanese language computer, all the fonts switch to "MS UI Gothic" (a Japanese font). Is there anyway I can force the font to be th...

iPhone UIFont boldFont With name

Hi, I have looked at the headers for UIFont but it has all class methods and only one instance method and some useless properties. I would like to know how to set the font to have a font name, and bold font weight kinda like [[UIFont alloc] initWithFontName:@"Courier New" weight:@"Bold" size:14];. Thanks for any help in advance! ~Thommy...

iphone / ipad: Font problem for non-latin languages

Hello All. I have a problem about the font in iphone/ipad Everyone knows UILabel can't do rich text. So I choose FrontLabel http://github.com/zynga/FontLabel/blob/master/README I guess what FrontLabel is doing is something like NSAttributedString and core text framework, and also, it is quite low level. But anyway, I have a problem....

Flex: Embedding fonts at runtime only works locally?

I'm trying to change the text format in a TextField I get from a .swf. I'm embedding my font in a myFont.swf: public class TemplateFont extends Sprite { [Embed(source='../fontFiles/geogrotesque/Geogrotesque-Regular.ttf', fontName='theFontName')] public static var FONT_TEXT:Class; } Then I'm loading it where I ne...

Flexreport fonts cant show in my project after I load a swf in runtime

In my project I use Flexreport to preview and print the view. It works well before I load new swf file in runtime. But after load swf file, I cant see any words in the preview. I can see them in thumbnails list , also can print them out. I use flash builder 4 for my project and use flex 3 to build flexreport,and make SWC file. anyone ...

How would you calculate the point size of a font necessary to best fit a predefined area?

I have an interesting problem. I'm almost there but am curious how others would tackle it. I want to display some multi-line text in a predefined area. I don't know what the text will be or how big the area will be so the function would have to be written generically. You can assume a standard font is always used but the point size is...

suppressing font mapping window in Flash CS5

I have what is essentially the same font but but it's otf instead of ttf or something similar. Is there a way to suppress the font mapping dialog that pops up that doesn't include switching the fonts or installing the other font format? ...

How can I convert TTF glyphs to .png files on the Mac for free?

How can I convert TTF glyphs to .png files on the Mac for free? If there's some way to do this programmatically within a program, that would work too. ...

How to set color for a font class- object in VB.NET..?

How to set color for a font class- object in VB.NET..? i mean.. Dim MYfONT As New Font("Microsoft Sans Serif", 16, FontStyle.Bold) e.Graphics.DrawString(TabMain.TabPages(e.Index).Text, MYfONT, SystemBrushes.HighlightText, paddedBounds) how can i set this font class object(MYfONT) - color to Black. ? ...

How to get non-standard font with effect in use of web site?

Problem is, that I need to get non-standard font (not everyone has it on his computer) with effect (from Photoshop: Outer Glow) in web site. I can use Javascript (including jQuery) and CSS3 for it, but that font should be able to highlight like any text in web. Any solutions? P.S. Font: Titillium. ...

Fonts and character encodings

a) Do fonts know anything about coded character sets (Unicode, ASCII, etc.)? In other words, does a font file specify which coded character sets may use the font? b) I assume if a font supports certain coded character sets, then any character encoding (aka code page) for that coded character set can use this font? a) Does a font's file ...

HTML how to use different fonts

if i place my ttf font file in my websites root folder lets say named AMC.tff and in my website use <font face="AMC"> is it going to work... if not than what is the method to use unusual fonts in your website ...

Font turns jagged and blurs when site is displayed in IE Compatibility View

Hi, While testing my site in Internet Explorer Compatibility View, I've noticed the font of a set of small, one-line paragraphs seems to distort, and I can't figure out why. It's fine in all other browsers, and this doesn't appear to be happening anywhere else on the site. Thanks for any help. ...

using specific fonts in iphone 4 but not before version 3.2

Hi, I am using the external fonts capability for my application. As external fonts are not supported in 3.1 version I would like to define the font name in relation with the IOS that is executing the program. I have defined MY_FONT_NAME variable in a Constants.h file like this: //#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2 ...

Why RichTextBox with ProggyClean font changes to Arial?

Hi, I try to use ProggyClean font in RichTextBox. Setting Font property (design time) and filling with text (runtime) works fine. When I start writing the text, font changes to default Arial. I have installed three different languages in the system: EN English (American) FR French (France) PL Polish What I have observed: Prog...

Fonts on OpenJDK vs. Sun JDK 1.6 [Linux Platform]

I noticed that the Fonts on OpenJDK vs. Sun JDK look different. Java JDK has a better font set that accompanies it. Does anyone know what package the 'font' is and how I can have it on OpenJDK installations? Thanks ...

Open source fonts

Are there any good open source fonts to use in CSS. ...

"Could not find/open font" when using PHP gd

I am getting this error Could not find/open font When trying imagettftext() in PHP. The font file is there. What is the problem? ...

How-To Implement Cross-Browser @font-face Support in rails

I am developing a small rails app to serve fonts to other sites say a request http://url/fonts/fontname will return woff,eot or ttf font based on the browser type. This app is working fine in my localhost but not in other ip... I know the problem is something to do with Cross-Origin Resource Sharing restriction but don't know how to so...