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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? font2c.ps

?? 遺傳算法工具箱 希望高手指點 GATOOLS
?? 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.

% 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
	    ws (_new\(&r_.value.refs[) ws exch wt

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人在线视频网站| 日韩一卡二卡三卡国产欧美| 五月天久久比比资源色| 亚洲成人精品一区| 日韩avvvv在线播放| 欧美在线观看一区| 日韩欧美卡一卡二| 久久久精品黄色| 曰韩精品一区二区| 亚洲福利一二三区| 国产成人欧美日韩在线电影| av网站一区二区三区| 色菇凉天天综合网| 欧美一区永久视频免费观看| 精品国产凹凸成av人网站| 国产精品久久久久久福利一牛影视| 成人免费在线播放视频| 美女www一区二区| 成人av在线播放网址| 欧美性色黄大片手机版| 欧美极品xxx| 久久精品久久99精品久久| 色狠狠av一区二区三区| 国产无遮挡一区二区三区毛片日本| 亚洲人xxxx| 91一区二区在线观看| 久久久久九九视频| 老司机一区二区| 777精品伊人久久久久大香线蕉| 国产精品乱子久久久久| 久草这里只有精品视频| 欧美午夜宅男影院| 亚洲成人在线网站| 欧美午夜精品免费| 亚洲黄色免费电影| 在线观看中文字幕不卡| 亚洲电影一区二区| 91偷拍与自偷拍精品| 成人欧美一区二区三区黑人麻豆 | 91麻豆精品国产91久久久久久久久 | 精品亚洲porn| 日韩欧美国产wwwww| 老司机精品视频导航| 精品国产一区二区三区四区四| 日韩黄色免费网站| 精品粉嫩aⅴ一区二区三区四区| 麻豆中文一区二区| 亚洲精品在线网站| 国产91对白在线观看九色| 国产精品二三区| 欧美日韩一区二区三区四区五区| 亚洲18色成人| 99精品欧美一区二区三区小说 | 日韩精品专区在线| 日本vs亚洲vs韩国一区三区二区| 欧美影院一区二区| 九色综合狠狠综合久久| 亚洲欧洲av在线| 7777精品伊人久久久大香线蕉完整版 | 午夜精品福利视频网站| 91精品国产麻豆国产自产在线| 精品一区二区三区香蕉蜜桃| 国产精品乱码一区二区三区软件| 91精品福利在线| 岛国av在线一区| 午夜精品一区二区三区免费视频 | 国产高清在线精品| 午夜精品久久久久久久久久久| 国产欧美一区二区精品性| 欧美天堂亚洲电影院在线播放| 丁香婷婷综合色啪| 美国十次综合导航| 亚洲福利视频一区二区| 亚洲色图19p| 国产精品卡一卡二| 国产精品毛片a∨一区二区三区| 精品国产一区久久| 日本一区二区久久| 日韩精品自拍偷拍| 色一情一乱一乱一91av| 久久九九久久九九| 成人黄页在线观看| 午夜精品视频在线观看| 精品福利一区二区三区免费视频| 久久影院电视剧免费观看| 91福利国产成人精品照片| 国产精品亚洲一区二区三区妖精| 青青草国产成人av片免费| 日本亚洲一区二区| 亚洲精品一二三四区| 亚洲国产经典视频| 精品处破学生在线二十三| 欧美不卡一区二区三区四区| 精品区一区二区| 色域天天综合网| 欧美在线观看视频一区二区| 欧美综合视频在线观看| 精品入口麻豆88视频| 成人欧美一区二区三区在线播放| 自拍偷自拍亚洲精品播放| 亚洲成年人影院| 日韩精品一区二区三区视频播放| 欧美一区中文字幕| 欧美国产精品一区二区三区| 亚洲免费色视频| 国产一区二区三区在线观看免费视频| 国产经典欧美精品| 欧美三片在线视频观看| 中文字幕欧美日本乱码一线二线| 最近日韩中文字幕| 麻豆高清免费国产一区| 91性感美女视频| 日韩一级在线观看| 亚洲福利一区二区| 国产精品一二三在| 日韩欧美在线1卡| 亚洲精品乱码久久久久久日本蜜臀| 日本亚洲三级在线| 在线亚洲人成电影网站色www| 日韩三级在线观看| 亚洲国产日韩精品| 99久久精品免费| 精品电影一区二区| 美女视频一区在线观看| 欧美日本一区二区三区四区| 中文字幕亚洲综合久久菠萝蜜| 日本免费在线视频不卡一不卡二| 色综合激情五月| 亚洲影院久久精品| 91亚洲午夜精品久久久久久| 自拍偷拍国产精品| 91免费精品国自产拍在线不卡| 国产精品每日更新| 91美女片黄在线观看91美女| 一区二区欧美国产| 欧美亚洲另类激情小说| 日韩黄色免费网站| 精品国产91乱码一区二区三区| 黄色小说综合网站| 国产亚洲综合性久久久影院| 国产精品一二三区| 日本一区二区高清| 欧美视频完全免费看| 麻豆精品在线观看| 成人欧美一区二区三区| 欧美精品精品一区| 国产aⅴ综合色| 亚洲第一搞黄网站| 日韩亚洲欧美中文三级| 奇米精品一区二区三区在线观看一 | 精品国产乱码久久久久久蜜臀 | 亚洲日本一区二区| 欧美日韩夫妻久久| 国产不卡视频一区| 国产精品自拍网站| 久久久精品免费网站| 岛国av在线一区| 亚洲一区二区三区中文字幕| 国产午夜一区二区三区| 777久久久精品| 欧美日韩电影一区| 91欧美激情一区二区三区成人| 国产成人精品综合在线观看| 日韩影院精彩在线| 亚洲国产视频一区| 亚洲免费av在线| 亚洲蜜臀av乱码久久精品| 中文字幕精品—区二区四季| 久久久噜噜噜久噜久久综合| 欧美大度的电影原声| 日韩欧美国产高清| 日韩免费电影一区| 日韩免费视频一区二区| 精品国产一区二区三区av性色| 日韩午夜在线影院| 日韩免费高清电影| ㊣最新国产の精品bt伙计久久| 97久久久精品综合88久久| 日韩av一二三| 国产精品美女www爽爽爽| 日韩欧美美女一区二区三区| 欧美天堂亚洲电影院在线播放| 狂野欧美性猛交blacked| 亚洲欧美日韩国产综合在线| 欧美精品色综合| 国产一区 二区| 成人动漫一区二区在线| 99这里只有精品| 日本道色综合久久| 欧美日韩免费一区二区三区 | 欧美一二三区在线观看| 精品久久久久99| 欧美极品另类videosde| 爽爽淫人综合网网站| 成人午夜大片免费观看| 国产成人久久精品77777最新版本| 国产99久久久国产精品免费看| 欧美性猛交一区二区三区精品| 日韩一区二区精品在线观看| 久久久久久97三级|