⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 glnames.py

📁 一个Xpdf应用的例子
💻 PY
📖 第 1 页 / 共 5 页
字号:
#!/usr/bin/env python### FreeType 2 glyph name builder## Copyright 1996-2000 by# David Turner, Robert Wilhelm, and Werner Lemberg.## This file is part of the FreeType project, and may only be used, modified,# and distributed under the terms of the FreeType project license,# LICENSE.TXT.  By continuing to use, modify, or distribute this file you# indicate that you have read the license and understand and accept it# fully."""\usage: %s <output-file>  This very simple python script is used to generate the glyph names  tables defined in the PSNames module.  Its single argument is the name of the header file to be created."""import sys, string# This table is used to name the glyph according to the Macintosh# specification.  It is used by the TrueType Postscript names table## see http://fonts.apple.com/TTRefMan/RM06/Chap6post.html# for the official list#mac_standard_names = \[  # 0  ".notdef", ".null", "nonmarkingreturn", "space", "exclam",  "quotedbl", "numbersign", "dollar", "percent", "ampersand",  # 10  "quotesingle", "parenleft", "parenright", "asterisk", "plus",  "comma", "hyphen", "period", "slash", "zero",  # 20  "one", "two", "three", "four", "five",  "six", "seven", "eight", "nine", "colon",  # 30  "semicolon", "less", "equal", "greater", "question",  "at", "A", "B", "C", "D",  # 40  "E", "F", "G", "H", "I",  "J", "K", "L", "M", "N",  # 50  "O", "P", "Q", "R", "S",  "T", "U", "V", "W", "X",  # 60  "Y", "Z", "bracketleft", "backslash", "bracketright",  "asciicircum", "underscore", "grave", "a", "b",  # 70  "c", "d", "e", "f", "g",  "h", "i", "j", "k", "l",  # 80  "m", "n", "o", "p", "q",  "r", "s", "t", "u", "v",  # 90  "w", "x", "y", "z", "braceleft",  "bar", "braceright", "asciitilde", "Adieresis", "Aring",  # 100  "Ccedilla", "Eacute", "Ntilde", "Odieresis", "Udieresis",  "aacute", "agrave", "acircumflex", "adieresis", "atilde",  # 110  "aring", "ccedilla", "eacute", "egrave", "ecircumflex",  "edieresis", "iacute", "igrave", "icircumflex", "idieresis",  # 120  "ntilde", "oacute", "ograve", "ocircumflex", "odieresis",  "otilde", "uacute", "ugrave", "ucircumflex", "udieresis",  # 130  "dagger", "degree", "cent", "sterling", "section",  "bullet", "paragraph", "germandbls", "registered", "copyright",  # 140  "trademark", "acute", "dieresis", "notequal", "AE",  "Oslash", "infinity", "plusminus", "lessequal", "greaterequal",  # 150  "yen", "mu", "partialdiff", "summation", "product",  "pi", "integral", "ordfeminine", "ordmasculine", "Omega",  # 160  "ae", "oslash", "questiondown", "exclamdown", "logicalnot",  "radical", "florin", "approxequal", "Delta", "guillemotleft",  # 170  "guillemotright", "ellipsis", "nonbreakingspace", "Agrave", "Atilde",  "Otilde", "OE", "oe", "endash", "emdash",  # 180  "quotedblleft", "quotedblright", "quoteleft", "quoteright", "divide",  "lozenge", "ydieresis", "Ydieresis", "fraction", "currency",  # 190  "guilsinglleft", "guilsinglright", "fi", "fl", "daggerdbl",  "periodcentered", "quotesinglbase", "quotedblbase", "perthousand",    "Acircumflex",  # 200  "Ecircumflex", "Aacute", "Edieresis", "Egrave", "Iacute",  "Icircumflex", "Idieresis", "Igrave", "Oacute", "Ocircumflex",  # 210  "apple", "Ograve", "Uacute", "Ucircumflex", "Ugrave",  "dotlessi", "circumflex", "tilde", "macron", "breve",  # 220  "dotaccent", "ring", "cedilla", "hungarumlaut", "ogonek",  "caron", "Lslash", "lslash", "Scaron", "scaron",  # 230  "Zcaron", "zcaron", "brokenbar", "Eth", "eth",  "Yacute", "yacute", "Thorn", "thorn", "minus",  # 240  "multiply", "onesuperior", "twosuperior", "threesuperior", "onehalf",  "onequarter", "threequarters", "franc", "Gbreve", "gbreve",  # 250  "Idotaccent", "Scedilla", "scedilla", "Cacute", "cacute",  "Ccaron", "ccaron", "dcroat"]# the list of standard "SID" glyph names. For the official list,# see Annex A of document at# http://partners.adobe.com/asn/developer/pdfs/tn/5176.CFF.pdf#sid_standard_names = \[  # 0  ".notdef", "space", "exclam", "quotedbl", "numbersign",  "dollar", "percent", "ampersand", "quoteright", "parenleft",  # 10  "parenright", "asterisk", "plus", "comma", "hyphen",  "period", "slash", "zero", "one", "two",  # 20  "three", "four", "five", "six", "seven",  "eight", "nine", "colon", "semicolon", "less",  # 30  "equal", "greater", "question", "at", "A",  "B", "C", "D", "E", "F",  # 40  "G", "H", "I", "J", "K",  "L", "M", "N", "O", "P",  # 50  "Q", "R", "S", "T", "U",  "V", "W", "X", "Y", "Z",  # 60  "bracketleft", "backslash", "bracketright", "asciicircum", "underscore",  "quoteleft", "a", "b", "c", "d",  # 70  "e", "f", "g", "h", "i",  "j", "k", "l", "m", "n",  # 80  "o", "p", "q", "r", "s",  "t", "u", "v", "w", "x",  # 90  "y", "z", "braceleft", "bar", "braceright",  "asciitilde", "exclamdown", "cent", "sterling", "fraction",  # 100  "yen", "florin", "section", "currency", "quotesingle",  "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi",  # 110  "fl", "endash", "dagger", "daggerdbl", "periodcentered",  "paragraph", "bullet", "quotesinglbase", "quotedblbase", "quotedblright",  # 120  "guillemotright", "ellipsis", "perthousand", "questiondown", "grave",  "acute", "circumflex", "tilde", "macron", "breve",  # 130  "dotaccent", "dieresis", "ring", "cedilla", "hungarumlaut",  "ogonek", "caron", "emdash", "AE", "ordfeminine",  # 140  "Lslash", "Oslash", "OE", "ordmasculine", "ae",  "dotlessi", "lslash", "oslash", "oe", "germandbls",  # 150  "onesuperior", "logicalnot", "mu", "trademark", "Eth",  "onehalf", "plusminus", "Thorn", "onequarter", "divide",  # 160  "brokenbar", "degree", "thorn", "threequarters", "twosuperior",  "registered", "minus", "eth", "multiply", "threesuperior",  # 170  "copyright", "Aacute", "Acircumflex", "Adieresis", "Agrave",  "Aring", "Atilde", "Ccedilla", "Eacute", "Ecircumflex",  # 180  "Edieresis", "Egrave", "Iacute", "Icircumflex", "Idieresis",  "Igrave", "Ntilde", "Oacute", "Ocircumflex", "Odieresis",  # 190  "Ograve", "Otilde", "Scaron", "Uacute", "Ucircumflex",  "Udieresis", "Ugrave", "Yacute", "Ydieresis", "Zcaron",  # 200  "aacute", "acircumflex", "adieresis", "agrave", "aring",  "atilde", "ccedilla", "eacute", "ecircumflex", "edieresis",  # 210  "egrave", "iacute", "icircumflex", "idieresis", "igrave",  "ntilde", "oacute", "ocircumflex", "odieresis", "ograve",  # 220  "otilde", "scaron", "uacute", "ucircumflex", "udieresis",  "ugrave", "yacute", "ydieresis", "zcaron", "exclamsmall",  # 230  "Hungarumlautsmall", "dollaroldstyle", "dollarsuperior", "ampersandsmall",    "Acutesmall",  "parenleftsuperior", "parenrightsuperior", "twodotenleader",    "onedotenleader", "zerooldstyle",  # 240  "oneoldstyle", "twooldstyle", "threeoldstyle", "fouroldstyle",    "fiveoldstyle",  "sixoldstyle", "sevenoldstyle", "eightoldstyle", "nineoldstyle",    "commasuperior",  # 250  "threequartersemdash", "periodsuperior", "questionsmall", "asuperior",    "bsuperior",  "centsuperior", "dsuperior", "esuperior", "isuperior", "lsuperior",  # 260  "msuperior", "nsuperior", "osuperior", "rsuperior", "ssuperior",  "tsuperior", "ff", "ffi", "ffl", "parenleftinferior",  # 270  "parenrightinferior", "Circumflexsmall", "hyphensuperior", "Gravesmall",    "Asmall",  "Bsmall", "Csmall", "Dsmall", "Esmall", "Fsmall",  # 280  "Gsmall", "Hsmall", "Ismall", "Jsmall", "Ksmall",  "Lsmall", "Msmall", "Nsmall", "Osmall", "Psmall",  # 290  "Qsmall", "Rsmall", "Ssmall", "Tsmall", "Usmall",  "Vsmall", "Wsmall", "Xsmall", "Ysmall", "Zsmall",  # 300  "colonmonetary", "onefitted", "rupiah", "Tildesmall", "exclamdownsmall",  "centoldstyle", "Lslashsmall", "Scaronsmall", "Zcaronsmall",    "Dieresissmall",  # 310  "Brevesmall", "Caronsmall", "Dotaccentsmall", "Macronsmall", "figuredash",  "hypheninferior", "Ogoneksmall", "Ringsmall", "Cedillasmall",    "questiondownsmall",  # 320  "oneeighth", "threeeighths", "fiveeighths", "seveneighths", "onethird",  "twothirds", "zerosuperior", "foursuperior", "fivesuperior",    "sixsuperior",  # 330  "sevensuperior", "eightsuperior", "ninesuperior", "zeroinferior",    "oneinferior",  "twoinferior", "threeinferior", "fourinferior", "fiveinferior",    "sixinferior",  # 340  "seveninferior", "eightinferior", "nineinferior", "centinferior",    "dollarinferior",  "periodinferior", "commainferior", "Agravesmall", "Aacutesmall",    "Acircumflexsmall",  # 350  "Atildesmall", "Adieresissmall", "Aringsmall", "AEsmall", "Ccedillasmall",  "Egravesmall", "Eacutesmall", "Ecircumflexsmall", "Edieresissmall",    "Igravesmall",  # 360  "Iacutesmall", "Icircumflexsmall", "Idieresissmall", "Ethsmall",    "Ntildesmall",  "Ogravesmall", "Oacutesmall", "Ocircumflexsmall", "Otildesmall",    "Odieresissmall",  # 370  "OEsmall", "Oslashsmall", "Ugravesmall", "Uacutesmall",    "Ucircumflexsmall",  "Udieresissmall", "Yacutesmall", "Thornsmall", "Ydieresissmall",    "001.000",  # 380  "001.001", "001.002", "001.003", "Black", "Bold",  "Book", "Light", "Medium", "Regular", "Roman",  # 390  "Semibold"]# this table maps character code of the Adobe Standard Type 1# encoding to glyph indexes in the sid_standard_names table#t1_standard_encoding = \[    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0,   0,   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,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -