fantasque-sans/Scripts/generate-css-decl

56 lines
1.2 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2013-11-27 21:47:39 +01:00
# Generate a CSS declaration for the given font
2013-12-22 13:49:16 +01:00
if ! type fontforge &> /dev/null; then echo "ERROR: Missing dependency: fontforge" 1>&2; exit 1; fi
fullname=$1
basename=$(basename "$fullname" .sfdir)
2013-11-27 21:47:39 +01:00
output=$(fontforge --quiet -lang=py -script - "$fullname" <<EOF
2013-11-27 21:47:39 +01:00
import fontforge;
import sys;
2013-11-27 21:47:39 +01:00
font = fontforge.open(sys.argv[1]);
2013-11-27 21:47:39 +01:00
# Extract interesting informations
print("---")
2015-05-24 16:04:45 +02:00
print(font.fontname)
print(font.familyname)
print(font.fullname)
print(font.os2_weight)
print(font.italicangle)
2013-11-27 21:47:39 +01:00
EOF
) || exit 1
2013-11-27 21:47:39 +01:00
output="${output##*---
}"
old_IFS="$IFS"
IFS='
'
output=($output)
IFS="$old_IFS"
fontname=${output[0]}
familyname=${output[1]}
fullname=${output[2]}
fontweight=${output[3]}
slope=${output[4]}
if [ x"$slope" = "x0.0" ]; then
fontstyle=normal
else
fontstyle=italic
fi
cat > "Webfonts/${basename}-decl.css" <<EOF
2013-12-22 13:49:16 +01:00
@font-face {
font-family: '${familyname}';
2019-11-16 17:56:56 +01:00
src: url('${basename}.woff2') format('woff2'),
url('${basename}.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
url('${basename}.ttf') format('truetype'), /* Safari, Android, iOS */
url('${basename}.svg#${fontname}') format('svg'); /* Chrome < 4, Legacy iOS */
font-weight: ${fontweight};
font-style: ${fontstyle};
2013-12-22 13:49:16 +01:00
}
EOF