
Collection of Bitstream Fonts
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
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/
Many Bitstream fonts:
- Swiss 721
- Dutch 801
- Zurich ...
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/
rutger
16 years ago
will suffice.
Report
shm
16 years ago
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('
Report
shm
16 years ago
Report