Sponsored Content
Full Discussion: Categorisation of fonts
The Lounge What is on Your Mind? Categorisation of fonts Post 302464282 by figaro on Tuesday 19th of October 2010 04:23:01 PM
Old 10-19-2010
Thanks for your responses. Classification is a lot better in only the last 2 years or so, but still most companies have their own scheme.
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Printer fonts

Hi, I have a Barcode printer. It's defined as a remote printer on the system. The /etc/lp/interface/<printer> file is printing has a part that enables Hebrew printing. For some reason the Printer is printing in a very small font. I'll attach the interface file: #!/usr/bin/sh # /* @(#)... (3 Replies)
Discussion started by: sunbird
3 Replies

2. Linux

Installing new fonts

Hi All, I'm running RH 7.3 and wish to install new fonts on the box ? What are the steps in downloading and installing new fonts ? Thanks, KENT (3 Replies)
Discussion started by: kxchen_home
3 Replies

3. UNIX for Dummies Questions & Answers

Fonts?

NEWBIE HERE...by default, where are the font files located (ttf's) (1 Reply)
Discussion started by: geek01
1 Replies

4. Solaris

CDE Fonts

Hi gurus, Interesting little problem here. IVe got an Xmanager installed on my PC. I use it to connect to the DTlogin / CDE sessions I have running on a number of solaris servers. If I connect to server A, I get the login server, which I log into as root, I then start a terminal session,... (0 Replies)
Discussion started by: sbk1972
0 Replies

5. Solaris

Fonts on SunOS 5.6

I work in a SunOS server. I want to check which is the default font. Actually I need to check which font is using right now in Terminal and how to change it. Please help me suggesting the command set ---------- Post updated 08-23-09 at 12:35 AM ---------- Previous update was 08-22-09 at... (5 Replies)
Discussion started by: shoeb
5 Replies

6. UNIX Desktop Questions & Answers

Question about X fonts

Hi all! Why the cyrillic fonts which are inside the application window (Openwindows, CDE) displays correct, and the cyrillic font which are top of window (CaptionBar) displays not correct? This is caption of window. !#*?":"^& (1 Reply)
Discussion started by: wolfgang
1 Replies

7. UNIX for Advanced & Expert Users

Changing fonts with Acroread

Hello I am trying to print pdf on a solaris machine. The acroread works but the font are too big. I am printing on a HP printer. Can anyone advise on how to change the font size, and margins size? Thanks (5 Replies)
Discussion started by: lillyt2006
5 Replies
merge_fonts(3alleg4)						  Allegro manual					      merge_fonts(3alleg4)

NAME
merge_fonts - Merges two fonts into one font. Allegro game programming library. SYNOPSIS
#include <allegro.h> FONT *merge_fonts(FONT *f1, FONT *f2) DESCRIPTION
This function merges the character ranges from two fonts and returns a new font containing all characters in the old fonts. In general, you cannot merge fonts of different types (eg, TrueType fonts and bitmapped fonts), but as a special case, this function can promote a mono- chrome bitmapped font to a color font and merge those. Example: FONT *myfont; FONT *myfancy_font; FONT *lower_range; FONT *upper_range; FONT *capitals; FONT *combined_font; FONT *tempfont; ... /* Create a font that contains the capitals from */ /* the fancy font but other characters from myfont */ lower_range = extract_font_range(myfont, -1, 'A'-1); upper_range = extract_font_range(myfont, 'Z'+1, -1); capitals = extract_font_range(myfancy_font, 'A', 'Z'); tempfont = merge_fonts(lower_range, capitals); combined_font = merge_fonts(tempfont, upper_range); /* Clean up temporary fonts */ destroy_font(lower_range); destroy_font(upper_range); destroy_font(capitals); destroy_font(tempfont); RETURN VALUE
Returns a pointer to the new font or NULL on error. Remember that you are responsible for destroying the font when you are finished with it to avoid memory leaks. SEE ALSO
extract_font_range(3alleg4), is_trans_font(3alleg4), is_color_font(3alleg4), is_mono_font(3alleg4), exfont(3alleg4) Allegro version 4.4.2 merge_fonts(3alleg4)
All times are GMT -4. The time now is 09:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy