src/t1.h

/* [<][>]
[^][v][top][bottom][index][help] */

FUNCTIONS

This source file includes following functions.

   1 /*
   2  * t1.h - a heder file for Type 1 driver with t1lib.
   3  * by Hirotsugu Kakugawa
   4  *
   5  */
   6 /*
   7  * Copyright (C) 1998-2001 Hirotsugu Kakugawa. 
   8  * All rights reserved.
   9  *
  10  * This file is part of the VFlib Library.  This library is free
  11  * software; you can redistribute it and/or modify it under the terms of
  12  * the GNU Library General Public License as published by the Free
  13  * Software Foundation; either version 2 of the License, or (at your
  14  * option) any later version.  This library is distributed in the hope
  15  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
  16  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  17  * PURPOSE.  See the GNU Library General Public License for more details.
  18  * You should have received a copy of the GNU Library General Public
  19  * License along with this library; if not, write to the Free Software
  20  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21  */
  22 
  23 #ifndef __VFLIB_T1_H__
  24 
  25 #define __VFLIB_T1_H__
  26 
  27 
  28 #define FONTCLASS_NAME                "type1"
  29 
  30 #define VF_CAPE_TYPE1_LOG_LEVEL          "log-level"
  31 #define VF_CAPE_TYPE1_AFM_DIRECTORIES    "afm-directories"
  32 #define VF_CAPE_TYPE1_ENC_DIRECTORIES    "encoding-vector-directories"
  33 #define VF_CAPE_TYPE1_ENC_VECT           "encoding-vector"
  34 #define VF_CAPE_TYPE1_TFM                "tfm"
  35 
  36 #define TTF_ENV_FONT_DIR            "VFLIB_TYPE1_FONTS"
  37 
  38 #ifndef  DEFAULT_EXTENSIONS
  39 #  define   DEFAULT_EXTENSIONS      ".pfa, .pfb"
  40 #endif
  41 
  42 
  43 #define   TYPE1_DEFAULT_DPI        72
  44 #define   TYPE1_POINTS_PER_INCH    72
  45 
  46 #define   DEFAULT_POINT_SIZE       12.0
  47 #define   DEFAULT_PIXEL_SIZE       24
  48 
  49 
  50 #endif /*__VFLIB_T1_H__*/
  51 
  52 /*EOF*/

/* [<][>][^][v][top][bottom][index][help] */