home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL v3'
- __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
- import os
-
- try:
- from PIL import ImageFont
- ImageFont
- except ImportError:
- import ImageFont
-
- SYSTEM_FONT_PATH = '/usr/share/fonts/truetype/ttf-liberation/'
- FONT_MAP = {
- 'Swis721 BT Roman': 'tt0003m_',
- 'Dutch801 Rm BT Roman': 'tt0011m_',
- 'Courier10 BT Roman': 'tt0419m_' }
- LIBERATION_FONT_MAP = {
- 'Swis721 BT Roman': 'LiberationSans-Regular',
- 'Dutch801 Rm BT Roman': 'LiberationSerif-Regular',
- 'Courier10 BT Roman': 'LiberationMono-Regular' }
- FONT_FILE_MAP = { }
- SYSTEM_FONT_MAP = { }
- for key, val in LIBERATION_FONT_MAP.items():
- SYSTEM_FONT_MAP[key] = SYSTEM_FONT_PATH + val + '.ttf'
-
-
- def get_font_path(name):
- if FONT_FILE_MAP.has_key(name) and os.access(FONT_FILE_MAP[name], os.R_OK):
- return FONT_FILE_MAP[name]
- for m, s in ((FONT_MAP, 'prs500'), (LIBERATION_FONT_MAP, 'liberation')):
- fname = m[name] + '.ttf'
- etc_file = os.path.join(os.path.sep, 'etc', 'calibre', 'fonts', fname)
- if os.access(etc_file, os.R_OK):
- return etc_file
- f = P('fonts/%s/%s' % (s, fname))
- if os.path.exists(f):
- return f
-
- if SYSTEM_FONT_MAP.has_key(name) and os.access(SYSTEM_FONT_MAP[name], os.R_OK):
- return SYSTEM_FONT_MAP[name]
- raise SystemError('font %s (in file %s) not installed' % (name, fname))
-
-
- def get_font(name, size, encoding = 'unic'):
- if name in FONT_MAP.keys():
- path = get_font_path(name)
- return ImageFont.truetype(path, size, encoding = encoding)
- if name in FONT_FILE_MAP.keys():
- return ImageFont.truetype(FONT_FILE_MAP[name], size, encoding = encoding)
-
-