亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? font2c.ps

?? GhostScript的源代碼
?? PS
?? 第 1 頁 / 共 2 頁
字號:
%    Copyright (C) 1992, 1993, 1994, 1995 Aladdin Enterprises.  All rights reserved.
% 
% This file is part of Aladdin Ghostscript.
% 
% Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
% or distributor accepts any responsibility for the consequences of using it,
% or for whether it serves any particular purpose or works at all, unless he
% or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
% License (the "License") for full details.
% 
% Every copy of Aladdin Ghostscript must include a copy of the License,
% normally in a plain ASCII text file named PUBLIC.  The License grants you
% the right to copy, modify and redistribute Aladdin Ghostscript, but only
% under certain conditions described in the License.  Among other things, the
% License requires that the copyright notice and this notice be preserved on
% all copies.

% $Id: font2c.ps $
% font2c.ps
% Write out a PostScript Type 0 or Type 1 font as C code
% that can be linked with the interpreter.
% This even works on protected fonts, if you use the -dWRITESYSTEMDICT
% switch in the command line.  The code is reentrant and location-
% independent and has no external references, so it can be put into
% a sharable library even on VMS.

% Define the maximum string length that all compilers will accept.
% This must be approximately
%	min(max line length, max string literal length) / 4 - 5.

/font2cdict 100 dict dup begin

/max_wcs 50 def

% Define a temporary file for writing out procedures.
/wtempname (_.tmp) def

% ------ Protection utilities ------ %

% Protection values are represented by a mask:
/a_noaccess 0 def
/a_executeonly 1 def
/a_readonly 3 def
/a_all 7 def
/prot_names
 [ (0) (a_execute) null (a_readonly) null null null (a_all)
 ] def
/prot_opers
 [ {noaccess} {executeonly} {} {readonly} {} {} {} {}
 ] def

% Get the protection of an object.
   /getpa
    { dup wcheck
       { pop a_all }
       {	% Check for executeonly or noaccess objects in protected.
         dup protected exch known
	  { protected exch get }
	  { pop a_readonly }
	 ifelse
       }
      ifelse
    } bind def

% Get the protection appropriate for (all the) values in a dictionary.
   /getva
    { a_noaccess exch
       { exch pop
         dup type dup /stringtype eq 1 index /arraytype eq or
	 exch /packedarraytype eq or
	  { getpa a_readonly and or }
	  { pop pop a_all exit }
	 ifelse
       }
      forall
    } bind def

% Keep track of executeonly and noaccess objects,
% but don't let the protection actually take effect.
.currentglobal
false .setglobal	% so protected can reference local objs
/protected		% do first so // will work
  systemdict wcheck { 1500 dict } { 1 dict } ifelse
def
systemdict wcheck not
 { (Warning: you will not be able to convert protected fonts.\n) print
   (If you need to convert a protected font, please\n) print
   (restart the program and specify the -dWRITESYSTEMDICT switch.\n) print
   flush
   (%end) .skipeof
 }
if
userdict begin
  /executeonly
   { dup //protected exch //a_executeonly put readonly
   } bind def
  /noaccess
   { dup //protected exch //a_noaccess put readonly
   } bind def
end
true .setglobal
systemdict begin
  /executeonly
   { userdict /executeonly get exec
   } bind odef
  /noaccess
   { userdict /noaccess get exec
   } bind odef
end
%end
.setglobal

% ------ Output utilities ------ %

% By convention, the output file is named cfile.

% Define some utilities for writing the output file.
   /wtstring 100 string def
   /wb {cfile exch write} bind def
   /ws {cfile exch writestring} bind def
   /wl {ws (\n) ws} bind def
   /wt {wtstring cvs ws} bind def

% Write a C string.  Some compilers have unreasonably small limits on
% the length of a string literal or the length of a line, so every place
% that uses wcs must either know that the string is short,
% or be prepared to use wcca instead.
   /wbx
    { 8#1000 add 8 (0000) cvrs dup 0 (\\) 0 get put ws
    } bind def
   /wcst
    [
      32 { /wbx load } repeat
      95 { /wb load } repeat
      129 { /wbx load } repeat
    ] def
   ("\\) { wcst exch { (\\) ws wb } put } forall
   /wcs
    { (") ws { dup wcst exch get exec } forall (") ws
    } bind def
   /can_wcs	% Test if can use wcs
    { length max_wcs le
    } bind def
   /wncs	% name -> C string
    { wtstring cvs wcs
    } bind def
% Write a C string as an array of character values.
% We only need this because of line and literal length limitations.
   /wca		% <string> <prefix> <suffix> wca -
    { 0 4 -2 roll exch
       {	% Stack: suffix n prefix char
	 exch ws
	 exch dup 19 ge { () wl pop 0 } if 1 add
	 exch dup 32 ge 1 index 126 le and
	  { 39 wb dup 39 eq 1 index 92 eq or { 92 wb } if wb 39 wb }
	  { wt }
	 ifelse (,)
       } forall
      pop pop ws
    } bind def
   /wcca	% <string> wcca -
    { ({\n) (}) wca
    } bind def

% Write object protection attributes.  Note that dictionaries and arrays are
% the only objects that can be writable.
   /wpa
    { dup xcheck { (a_executable|) ws } if
      dup type dup /dicttype eq exch /arraytype eq or
       { getpa }
       { getpa a_readonly and }
      ifelse prot_names exch get ws
    } bind def
   /wva
    { getva prot_names exch get ws
    } bind def

% ------ Object writing ------ %

   /wnstring 128 string def

% Convert an object to a string to be scanned at a later time.
   /cvos		% <obj> cvos <string>
    {		% We'd like to use == and write directly to a string,
		% but we can't do the former because of operators,
		% and we can't do the latter because we can't predict
		% how long the string would have to be....
	 wtempname (w) file dup 3 -1 roll wproc closefile
	 wtempname status pop pop pop exch pop string
	 wtempname (r) file dup 3 -1 roll readstring pop exch closefile
    } bind def

% Write a string/name or null as an element of a string/name/null array.
% Convert any other kind of value to a token to be read back in.
   /wsn
    { dup null eq
       { pop (\t255,255,) wl
       }
       { dup type /nametype eq { wnstring cvs } if
	 dup type /stringtype ne { cvos (255,) ws } if
	 dup length 256 idiv wt (,) ws
	 dup length 256 mod wt
	 (,) (,\n) wca
       }
      ifelse
    } bind def
% Write a packed string/name/null array.
   /wsna	% <name> <(string|name|null)*> wsna -
    { (\tstatic const char ) ws exch wt ([] = {) wl
      { wsn } forall
      (\t0\n};) wl
    } bind def

% Write a number or an array of numbers, as refs.
/isnumber
 { type dup /integertype eq exch /realtype eq or
 } bind def
/wnums
 { dup isnumber
    { (real_v\() ws wt (\),) ws }
    { { wnums } forall }
   ifelse
 } bind def

% Test whether a procedure or unusual array can be written (printed).
/iswx 4 dict dup begin
  /arraytype { { iswproc } isall } def
  /nametype { pop true } def
  /operatortype { pop true } def	% assume it has been bound in
  /packedarraytype /arraytype load def
end def
/iswnx 6 dict dup begin
  /arraytype { { iswproc } isall } def
  /integertype { pop true } def
  /nametype { pop true } def
  /realtype { pop true } def
  /stringtype { pop true } def
  /packedarraytype /arraytype load def
end def
/iswproc	% <obj> iswproc <bool>
 { dup xcheck { iswx } { iswnx } ifelse
   1 index type .knownget { exec } { pop false } ifelse
 } bind def

% Write a printable procedure (one for which iswproc returns true).
/wproca 3 dict dup begin
  /arraytype
   { 1 index ({) writestring
      { 1 index ( ) writestring 1 index exch wproc } forall
     (}) writestring
   } bind def
  /packedarraytype /arraytype load def
  /operatortype { .writecvs } bind def	% assume binding would work
end def
/wproc		% <file> <proc> wproc -
 { dup type wproca exch .knownget { exec } { write==only } ifelse
 } bind def

% Write a named object.  Return true if this was possible.
% Legal types are: boolean, integer, name, real, string,
% array of (integer, integer+real, name, null+string),
% and certain procedures and other arrays (see iswproc above).
% All other objects are either handled specially or ignored.
   /isall	% <array> <proc> isall <bool>
    { true 3 -1 roll
       { 2 index exec not { pop false exit } if }
      forall exch pop
    } bind def
   /wott 8 dict dup begin
      /arraytype
       { woatt
          { aload pop 2 index 2 index exec
	     { exch pop exec exit }
	     { pop pop }
	    ifelse
	  }
	 forall
       } bind def
      /booleantype
       { { (\tmake_true\(&) } { (\tmake_false\(&) } ifelse ws
         wt (\);) wl true
       } bind def
      /integertype
       { (\tmake_int\(&) ws exch wt (, ) ws
         wt (\);) wl true
       } bind def
      /nametype
       { (\tcode = (*pprocs->name_create)\(&) ws exch wt
         (, ) ws wnstring cvs wcs	% OK, names are short
	 (\);) wl
	 (\tif ( code < 0 ) return code;) wl
	 true
       } bind def
      /packedarraytype
	/arraytype load def
      /realtype
       { (\tmake_real\(&) ws exch wt (, ) ws
         wt (\);) wl true
       } bind def
      /stringtype
       { ({\tstatic const char s_[] = ) ws
         dup dup can_wcs { wcs } { wcca } ifelse
	 (;) wl
	 (\tmake_const_string\(&) ws exch wt
	 (, a_readonly, ) ws length wt (, (const byte *)s_\);) wl
	 (}) wl true
       } bind def
   end def
% Write some other kind of object, if known.
   /wother
    { dup otherobjs exch known
       { otherobjs exch get (\t) ws exch wt ( = ) ws wt (;) wl true }
       { pop pop false }
      ifelse
    } bind def
% Top-level procedure.
   /wo		% name obj -> OK
    { dup type wott exch .knownget { exec } { wother } ifelse
    } bind def

% Write an array (called by wo).
   /wap		% <name> <array> wap -
    { dup xcheck not 1 index wcheck not and 1 index rcheck and
       { pop pop }
       { (\tr_set_attrs\(&) ws exch wt (, ) ws wpa (\);) wl }
      ifelse
    } bind def
   /wnuma	% <name> <array> <element_C_type> <<type>_v> wnuma -
    { 2 index wcheck
       {	% Allocate an array and copy the values into it.
		% We can't define new callback procedures, so we must
		% do this the hard way.
	 pop pop
	 ({\tstatic const byte z_[) ws dup length 1 .max 2 mul wt
	 (] = {0}; ref r_;) wl
	 (\tcode = (*pprocs->string_array_create)\(&r_, z_, ) ws
	 dup length wt (, 0\);) wl
	 (\tif ( code < 0 ) return code;) wl
	 (\tr_set_attrs\(&r_, ) ws dup wpa (\);) wl
	 (\t) ws exch wt ( = r_;) wl
	 0 1 2 index length 1 sub
	  { 2 copy get
		% Stack: array index value
	    dup type /integertype eq { (\tmake_int) } { (\tmake_real) } ifelse

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
视频一区在线播放| 在线亚洲人成电影网站色www| 成人黄色综合网站| 日韩一区二区三区观看| 亚洲欧洲无码一区二区三区| 麻豆精品视频在线观看免费| 欧美主播一区二区三区| 中文字幕一区二区视频| 国产乱码精品一区二区三| 在线不卡欧美精品一区二区三区| 国产精品美女www爽爽爽| 精品一区二区三区蜜桃| 91麻豆精品久久久久蜜臀| 一个色妞综合视频在线观看| 不卡一区中文字幕| 国产欧美一区二区在线| 国内精品视频666| 欧美一卡2卡3卡4卡| 亚洲h在线观看| 欧美日韩中文另类| 一区二区三区久久| 色婷婷激情久久| 一区二区成人在线观看| 色综合色狠狠综合色| 亚洲色图制服诱惑 | 91国产视频在线观看| 国产欧美日韩在线看| 国产一区二区女| 国产亚洲欧美中文| 成人精品视频一区二区三区 | 亚洲激情av在线| 99久久婷婷国产精品综合| 国产精品美女久久久久久2018| 东方欧美亚洲色图在线| 国产精品美女久久久久久久网站| 成人一区在线观看| 国产精品不卡一区| 91免费在线看| 午夜精品久久久久影视| 欧美日本免费一区二区三区| 日韩av电影天堂| 日韩欧美一级特黄在线播放| 久久国产精品色婷婷| 久久久精品2019中文字幕之3| 国产成人8x视频一区二区| 亚洲欧洲综合另类| 欧美精品99久久久**| 久久av资源网| 国产精品久久久久aaaa| 在线免费不卡视频| 日本成人在线看| 久久久精品欧美丰满| 99视频精品在线| 亚洲h精品动漫在线观看| 欧美大片在线观看一区二区| 顶级嫩模精品视频在线看| 亚洲精品综合在线| 91精品国产综合久久久久久久| 久久精品99国产精品日本| 亚洲国产成人在线| 欧美午夜精品久久久久久孕妇| 日韩中文字幕区一区有砖一区 | 精品国产一区二区三区不卡| 国产成人一区在线| 一区二区高清在线| 2021中文字幕一区亚洲| 91福利视频网站| 精品无人码麻豆乱码1区2区| 亚洲日本va午夜在线电影| 日韩丝袜美女视频| 一本色道久久综合亚洲精品按摩| 日本午夜精品视频在线观看| 国产精品五月天| 3d成人h动漫网站入口| 成人免费毛片a| 蜜桃久久久久久久| 亚洲欧美另类久久久精品 | 国产精品一区二区免费不卡| 亚洲一区二区影院| 国产欧美精品一区| 欧美一区二区视频网站| 91碰在线视频| 成人性视频免费网站| 青椒成人免费视频| 亚洲精品成人在线| 国产亚洲午夜高清国产拍精品| 欧美二区三区的天堂| 99riav一区二区三区| 国产精品一品视频| 日本网站在线观看一区二区三区| 亚洲精品欧美在线| 国产精品国产三级国产专播品爱网| 51精品国自产在线| 色就色 综合激情| 成人一区二区在线观看| 国产一区不卡在线| 蜜臀av一区二区在线免费观看| 亚洲国产综合色| 一区二区三区电影在线播| 亚洲欧洲日韩在线| 中文字幕不卡的av| 欧美国产丝袜视频| 国产午夜精品福利| 国产日韩影视精品| 久久蜜臀精品av| 国产亚洲福利社区一区| 精品国产乱码久久久久久图片| 3d动漫精品啪啪1区2区免费| 欧美日韩免费不卡视频一区二区三区| 91毛片在线观看| 色综合亚洲欧洲| 日本丰满少妇一区二区三区| 白白色亚洲国产精品| 成人一级片网址| 99久久久久久| 欧美伊人精品成人久久综合97| 在线免费精品视频| 欧美疯狂性受xxxxx喷水图片| 欧美日韩精品综合在线| 欧美老年两性高潮| 91精品国产麻豆国产自产在线 | 亚洲靠逼com| 亚洲国产视频在线| 五月天亚洲婷婷| 日韩激情视频在线观看| 日韩av电影免费观看高清完整版在线观看| 午夜精品久久久久久久久| 首页综合国产亚洲丝袜| 久久丁香综合五月国产三级网站| 久久超碰97人人做人人爱| 精品在线观看视频| heyzo一本久久综合| 欧美午夜理伦三级在线观看| 欧美一区二区视频在线观看| 精品国产一区二区三区久久久蜜月| 久久亚区不卡日本| 亚洲女人****多毛耸耸8| 香蕉影视欧美成人| 国产麻豆精品久久一二三| 91蜜桃免费观看视频| 欧美久久一区二区| 中文字幕高清一区| 亚洲成在人线在线播放| 国产精品资源站在线| 色综合视频在线观看| 精品日韩成人av| 亚洲欧洲性图库| 免费观看在线综合| 成人av电影在线观看| 欧美久久久影院| 国产欧美日韩视频在线观看| 亚洲在线视频网站| 国产成人精品www牛牛影视| 欧美在线一区二区三区| 欧美精品一区二区三区蜜臀| 一区二区三区在线视频播放| 久久99精品久久久久久| 色婷婷综合视频在线观看| 精品国产乱码久久久久久老虎 | 欧美日韩你懂得| 国产午夜精品久久久久久免费视| 亚洲r级在线视频| av在线综合网| 久久综合久久鬼色| 丝袜亚洲另类丝袜在线| 91小宝寻花一区二区三区| 26uuu色噜噜精品一区二区| 亚洲一区自拍偷拍| 成人动漫精品一区二区| 欧美xxxx在线观看| 日韩精品一二三| 在线免费观看日本一区| 国产精品久久久久久一区二区三区| 日日噜噜夜夜狠狠视频欧美人| 色综合久久综合| 日本一区二区三区电影| 国产在线精品不卡| 日韩一区二区三区电影在线观看| 亚洲影院在线观看| 一本大道综合伊人精品热热 | av不卡免费电影| 国产网站一区二区三区| 久久99精品国产.久久久久| 欧美精品色一区二区三区| 一区二区久久久| 色视频成人在线观看免| 最新中文字幕一区二区三区| 国产91精品一区二区麻豆网站| 日韩精品一区二区三区蜜臀| 性做久久久久久久久| 欧美日韩aaaaaa| 午夜精品成人在线| 欧美肥胖老妇做爰| 日av在线不卡| 91精品国产91久久综合桃花| 天天亚洲美女在线视频| 欧美一区二区视频观看视频| 麻豆传媒一区二区三区| 精品国产乱码久久久久久浪潮 | 青青草国产精品亚洲专区无|