summaryrefslogtreecommitdiff
path: root/fonts/fpl/source/TeXPalladioL-BoldOsF.pe
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /fonts/fpl/source/TeXPalladioL-BoldOsF.pe
Initial commit
Diffstat (limited to 'fonts/fpl/source/TeXPalladioL-BoldOsF.pe')
-rwxr-xr-xfonts/fpl/source/TeXPalladioL-BoldOsF.pe51
1 files changed, 51 insertions, 0 deletions
diff --git a/fonts/fpl/source/TeXPalladioL-BoldOsF.pe b/fonts/fpl/source/TeXPalladioL-BoldOsF.pe
new file mode 100755
index 0000000000..65810ba4e8
--- /dev/null
+++ b/fonts/fpl/source/TeXPalladioL-BoldOsF.pe
@@ -0,0 +1,51 @@
+#!/usr/bin/env fontforge
+# Time-stamp: <2005-02-11 13:16:49 ralf>
+# Copyright 2004, 2005 Ralf Stubner
+# See the file COPYING (GNU General Public License) for license
+# conditions.
+
+Open("uplb8a.pfb");
+# proper setup with names etc
+fontname="TeXPalladioL-BoldOsF";
+fontfamily="TeX Palladio L";
+fullname="TeX Palladio L Bold Old Style Figures";
+copyright=$copyright+", Copyright 2004, 2005 Ralf Stubner.";
+copyright=AddGPL(copyright);
+copyright=AddException(copyright);
+fontversion="1.003";
+
+SetFontNames(fontname,fontfamily,fullname,"",copyright,fontversion);
+# No UniqueID (needs recent ff to work properly)
+SetUniqueID(-1);
+# use OtherSubrs from URW (needs recent ff to work properly)
+ReadOtherSubrsFile("URW-OtherSubrs.ps");
+
+# copy OsF and SC
+Select("zero","nine");
+Clear();
+MergeFonts("Palladio-BoldOsF.sfd");
+
+# underscore
+Select("underscore");
+Scale(100,116,0,0);
+Move(0,-15);
+
+# emdash
+Select("emdash");
+Scale(75,100,0,0);
+Move(125,0);
+SetWidth(1000);
+RoundToInt();
+
+# kerning
+RemoveAllKerns();
+MergeKern("pplb9d-kern.afm");
+
+Save("TeXPalladioL-BoldOsF.sfd");
+# generte Type1, scale generate TTF
+Generate("fplbj8a.pfb","",3);
+# ScaleToEm(2048);
+# Generate("fplbj8a.ttf","",0x80);
+
+Quit(0);
+