1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
//
// This header file contains the lookup table used for converting between
// FCIs (font characterization integers) and font names for the standard
// 35 type 1 fonts.
//
// Copyright (C) 2005-2010 Alan W. Irwin
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// This file only relevant to device drivers (currently just pdf and
// ps) that use Type1 fonts.
// There are no good choices for script fonts for Type1 so default to
// the Helvetica (sans) variants in that case.
// Default to Helvetica (sans) variants for symbol fonts to follow
// what is done for all modern unicode-aware TrueType font devices.
// N.B. if the glyph lookup comes up blank for any of the fonts below,
// then an additional search of the Type1 Symbol font glyphs is
// implemented in the Type1 device drivers as a fallback.
// N.B. When updating this table by hand be sure to keep it in
// ascending order in fci!
#define N_Type1Lookup 30
static const FCI_to_FontName_Table Type1Lookup[N_Type1Lookup] = {
{ PL_FCI_MARK | 0x000, (const unsigned char *) "Helvetica" },
{ PL_FCI_MARK | 0x001, (const unsigned char *) "Times-Roman" },
{ PL_FCI_MARK | 0x002, (const unsigned char *) "Courier" },
{ PL_FCI_MARK | 0x003, (const unsigned char *) "Helvetica" },
{ PL_FCI_MARK | 0x004, (const unsigned char *) "Helvetica" },
{ PL_FCI_MARK | 0x010, (const unsigned char *) "Helvetica-Oblique" },
{ PL_FCI_MARK | 0x011, (const unsigned char *) "Times-Italic" },
{ PL_FCI_MARK | 0x012, (const unsigned char *) "Courier-Oblique" },
{ PL_FCI_MARK | 0x013, (const unsigned char *) "Helvetica-Oblique" },
{ PL_FCI_MARK | 0x014, (const unsigned char *) "Helvetica-Oblique" },
{ PL_FCI_MARK | 0x020, (const unsigned char *) "Helvetica-Oblique" },
{ PL_FCI_MARK | 0x021, (const unsigned char *) "Times-Italic" },
{ PL_FCI_MARK | 0x022, (const unsigned char *) "Courier-Oblique" },
{ PL_FCI_MARK | 0x023, (const unsigned char *) "Helvetica-Oblique" },
{ PL_FCI_MARK | 0x024, (const unsigned char *) "Helvetica-Oblique" },
{ PL_FCI_MARK | 0x100, (const unsigned char *) "Helvetica-Bold" },
{ PL_FCI_MARK | 0x101, (const unsigned char *) "Times-Bold" },
{ PL_FCI_MARK | 0x102, (const unsigned char *) "Courier-Bold" },
{ PL_FCI_MARK | 0x103, (const unsigned char *) "Helvetica-Bold" },
{ PL_FCI_MARK | 0x104, (const unsigned char *) "Helvetica-Bold" },
{ PL_FCI_MARK | 0x110, (const unsigned char *) "Helvetica-BoldOblique" },
{ PL_FCI_MARK | 0x111, (const unsigned char *) "Times-BoldItalic" },
{ PL_FCI_MARK | 0x112, (const unsigned char *) "Courier-BoldOblique" },
{ PL_FCI_MARK | 0x113, (const unsigned char *) "Helvetica-BoldOblique" },
{ PL_FCI_MARK | 0x114, (const unsigned char *) "Helvetica-BoldOblique" },
{ PL_FCI_MARK | 0x120, (const unsigned char *) "Helvetica-BoldOblique" },
{ PL_FCI_MARK | 0x121, (const unsigned char *) "Times-BoldItalic" },
{ PL_FCI_MARK | 0x122, (const unsigned char *) "Courier-BoldOblique" },
{ PL_FCI_MARK | 0x123, (const unsigned char *) "Helvetica-BoldOblique" },
{ PL_FCI_MARK | 0x124, (const unsigned char *) "Helvetica-BoldOblique" },
};
|