Limited use of fonts on Mac OSX?
in
Integration and Hardware
•
3 months ago
Hi,
I noticed a strange font problem. I need to use Univers 75 (Univers Black) in a program. But when I use:
MyFont = loadFont ("UniversLTStd-Black-48.vlw");
It loads the Univers Black but it displays Univers Light (aka Univers 45). And when I replace that program line by for instance:
MyFont = loadFont ("UniversLTStd-BoldObl-48.vlw");
It loads UniversLTStd-BoldObl but it displays Univers Bold (aka Univers 65). And that is not the Italic version which I asked for.
In general it seems that Processing loads the total Univers family but it only displays Univers 45 and 65 versions.
I converted a few of the Univers.ttf fonts to Univers.otf but the otf format is not recognized by the Create Font Tool.
Why is this? These fonts are legal. They are from the Adobe Font Library and are copyrighted: Copyright © 1987, 1991, 1993, 1994, 1999, 2002 Adobe Systems Incorporated. All Rights Reserved. © 1981, 1999, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
By the way I used the PFont.list () method to check if the fonts are available and compatible for createFont (). And they are. But maybe there are different rules for loadFont ()?
[545] "UniversLTStd"
[546] "UniversLTStd-Black"
[547] "UniversLTStd-BlackEx"
[548] "UniversLTStd-BlackExObl"
[549] "UniversLTStd-BlackObl"
[550] "UniversLTStd-Bold"
[551] "UniversLTStd-BoldCn"
[552] "UniversLTStd-BoldCnObl"
[553] "UniversLTStd-BoldEx"
[554] "UniversLTStd-BoldExObl"
[555] "UniversLTStd-BoldObl"
[556] "UniversLTStd-Cn"
[557] "UniversLTStd-CnObl"
[558] "UniversLTStd-Ex"
[559] "UniversLTStd-ExObl"
[560] "UniversLTStd-Light"
[561] "UniversLTStd-LightCn"
[562] "UniversLTStd-LightCnObl"
[563] "UniversLTStd-LightObl"
[564] "UniversLTStd-LightUltraCn"
[565] "UniversLTStd-Obl"
[566] "UniversLTStd-ThinUltraCn"
[567] "UniversLTStd-UltraCn"
[568] "UniversLTStd-XBlack"
[569] "UniversLTStd-XBlackEx"
[570] "UniversLTStd-XBlackExObl"
[571] "UniversLTStd-XBlackObl"
Greetings,
Henk
1