Description: If you want to download incredibly-high quality true type fonts, then you may want to check those available on the site: http://www.clipserver.de/Fonts/
I presume you can not redistribute these fonts due to some licence restriction. But you can archive them (17 Mo).
Tip: to give understandable names of the fonts, there's an utility for Wine, named True Type renamer, available here: http://web.ticino.com/Sagittarius/
Here is a quick python script to download them all.. stick in get.py and do python get.py.. requires wget
import os
url="http://www.clipserver.de/Fonts/"
dlurl="http://www.clipserver.de/Fonts/TTFonts/"
for letter in map(chr,range(65,91)):
print chr(27) + '[36m'+'moving to letter: '+letter+chr(27)+'[0m'
os.system("wget --wait 3 "+url+letter+".htm")
file=open(letter+'.htm')
data=file.read()
fonts=data.split('')[1:]
for font in fonts:
fontname=font[:font.find('')]
fontname=fontname.replace(' ','_')
path=font[font.find('
Ratings & Comments
3 Comments
The link to the script is broken. However,
wget -l 2 -r -A TTF,htm http://www.clipserver.de/Fonts/A.htm
will suffice.
Here is a quick python script to download them all.. stick in get.py and do python get.py.. requires wget import os url="http://www.clipserver.de/Fonts/" dlurl="http://www.clipserver.de/Fonts/TTFonts/" for letter in map(chr,range(65,91)): print chr(27) + '[36m'+'moving to letter: '+letter+chr(27)+'[0m' os.system("wget --wait 3 "+url+letter+".htm") file=open(letter+'.htm') data=file.read() fonts=data.split('')[1:] for font in fonts: fontname=font[:font.find('')] fontname=fontname.replace(' ','_') path=font[font.find('
sorry.. this site clobbers the script.. try d/ling from http://halted.net/get.py