Last active
July 18, 2018 10:03
-
-
Save anthrotype/6c3dce176314ec6ffb116b0f8561bee0 to your computer and use it in GitHub Desktop.
Compare fonts with fonttools ttx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# compare fonts with ttx | |
ttdiff () { | |
if [ "$#" -lt 2 ] | |
then | |
echo "Usage: ttdiff FONT1.ttf FONT2.ttf [tables ...]" | |
return 1 | |
fi | |
first="$1" | |
if [ ! -f "$first" ]; then | |
echo "File $first not found" | |
return 1 | |
fi | |
second="$2" | |
if [ ! -f "$second" ]; then | |
echo "File $second not found" | |
return 1 | |
fi | |
tables="" | |
for i in ${@:3} | |
do | |
if [ ! -z "$i" ] | |
then | |
table="-t " | |
if [ ${#i} -eq 3 ]; then | |
# add trailing space to pad tag to four chars | |
table+="'"$i" '" | |
else | |
table+=$i | |
fi | |
tables+="$table " | |
fi | |
done | |
cmd1="ttx -q -o - $tables \"$first\" 2>/dev/null" | |
cmd2="ttx -q -o - $tables \"$second\" 2>/dev/null" | |
echo $cmd1 | |
echo $cmd2 | |
# colorize output if colordiff is installed | |
if `command -v colordiff >/dev/null 2>&1`; then | |
diff -u <(eval $cmd1) <(eval $cmd2) | colordiff | less -R | |
else | |
diff -u <(eval $cmd1) <(eval $cmd2) | less -R | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment