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

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

?? pdf_draw.ps

?? 遺傳算法工具箱 希望高手指點 GATOOLS
?? PS
字號:
%    Copyright (C) 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.

% pdf_draw.ps
% PDF drawing operations (graphics, text, and images).

% We don't handle the following PDF elements yet (identified by
% page number in the reference manual):
%	style strings (63-64), except in a few known fonts
%	font descriptor resources (71-75), except for MissingWidth
%	text clipping modes (104)
%		What do these mean??

/.setlanguagelevel where { pop 2 .setlanguagelevel } if
.currentglobal true .setglobal
/pdfdict where { pop } { /pdfdict 100 dict def } ifelse
GS_PDF_ProcSet begin
pdfdict begin

% For simplicity, we use a single interpretation dictionary for all
% PDF graphics operations, even though this is too liberal.
/drawopdict 100 dict def

% ================================ Graphics ================================ %

% ---------------- Graphics state management ---------------- %

drawopdict begin
			% Graphics state stack
  /q { q } def
  /Q { Q } def
			% Graphics state setting
  /cm { cm } def
  /i { i } def
  /J { J } def
  /d { d } def
  /j { j } def
  /w { w } def
  /M { M } def
end

% ---------------- Color setting ---------------- %

/csgray			% <op> <csop> csgray -
 { Page /Resources pget
    { /ColorSpace knownoget
       { /DefaultGray knownoget { 3 -1 roll exch 3 1 roll } if }
      if
    }
   if pop cvx exec
 } bdef
/csrgb			% <op> <csop> csrgb -
 { Page /Resources pget
    { /ColorSpace knownoget
       { /DefaultRGB knownoget { 3 -1 roll exch 3 1 roll } if }
      if
    }
   if pop cvx exec
 } bdef
/cscmyk			% <op> <csop> cscmyk -
 { pop cvx exec
 } bdef
/csresolve		% <csresource> csresolve <colorspace>
 { Page /Resources pget not { 0 dict } if
   /ColorSpace oget exch oget resolvecolorspace
   dup type /nametype ne { dup length 1 eq { 0 get } if } if
 } bdef
/cset		% <c0> ... [- <sc1> - <sc3> <sc4>] <colorspace> cset -
 { gsave setcolorspace mark currentcolor counttomark
   grestore dup 2 add 1 roll cleartomark get exec
 } bdef

%**************** sc and SC don't work, because the color space information
%**************** isn't available at conversion time.
drawopdict begin
  /g { /g { cs sc1 } csgray } bdef
  /rg { /rg { cs sc3 } csrgb } bdef
  /k { /k { cs sc4 } cscmyk } bdef
  /cs { csresolve cs } bdef
  /sc { { null sc1 null sc3 sc4 } FillColorSpace cset } bdef
  /G { /G { CS SC1 } csgray } bdef
  /RG { /RG { CS SC3 } csrgb } bdef
  /K { /K { CS SC4 } cscmyk } bdef
  /CS { csresolve CS } bdef
  /SC { { null SC1 null SC3 SC4 } StrokeColorSpace cset } bdef
end

% ---------------- Paths ---------------- %

drawopdict begin
			% Path construction
  /m { m } def
  /l { l } def
  /c { c } def
  /v { v } def
  /y { y } def
  /re { re } def
  /h { h } def
			% Path painting and clipping
  /n { n } def
  /S { S } def
  /s { s } def
  /f { f } def
  /f* { f* } def
  /B { B } def
  /b { b } def
  /B* { B* } def
  /b* { b* } def
  /W { W } def
  /W* { W* } def
end

% ---------------- XObjects ---------------- %

/xobjectprocs mark		% <dict> -proc- -
  /Image { DoImage }
  /Form { DoForm }
.dicttomark readonly def

/ncompdict mark
  /DeviceGray 1
  /CalGray 1
  /DeviceRGB 3
  /CalRGB 3
  /Lab 3
  /DeviceCMYK 4
  /CalCMYK 4
.dicttomark readonly def
/defaultdecodedict mark
  /DeviceGray [0 1] readonly
  /CalGray 1 index
  /DeviceRGB [0 1 0 1 0 1] readonly
  /CalRGB 1 index
  /Lab
   { 0 100 2 index 1 get /Range .knownget not { {-100 100 -100 100} } if
     aload pop 6 array astore readonly
   } bind
  /DeviceCMYK [0 1 0 1 0 1 0 1] readonly
  /CalCMYK 1 index
.dicttomark readonly def
/resolvecolorspace	% <cspace> resolvecolorspace <cspace>
 { dup type /arraytype eq
    { dup 0 get /Indexed eq
       { dup 3 oget dup type /stringtype eq
	  { pop
	  }
	  {	% The color lookup table is a stream.
		% Get its contents.
	    true resolvestream
	    1 index 2 get 1 add
	    ncompdict 3 index 1 get get mul
	    string readstring pop
	    1 index 3 3 -1 roll put
	  }
	 ifelse
       }
      if
    }
   if
 } bdef
/DoImage
 { dup length dict
   1 index /ColorSpace knownoget
    { resolvecolorspace
      dup type /arraytype eq { dup length 1 eq { 0 get } if } if
      exch begin /ColorSpace exch def
    }
    { begin
    }
   ifelse
   /ImageType 1 def
		% Always define ImageMask appropriately.
   dup /ImageMask knownoget dup { and } if
     /ImageMask exch def
   /Width 2 copy oget def
   /Height 2 copy oget def
   /BitsPerComponent 2 copy oget def
   /Decode 2 copy knownoget not
    {		% Decode is required for the PostScript image operators.
      ImageMask
       { [0 1]
       }
       { ColorSpace dup type /arraytype eq { 0 get } if dup /Indexed eq
	  { pop [ 0 1 BitsPerComponent bitshift 1 sub ] }
	  { defaultdecodedict exch get exec }
	 ifelse
       }
      ifelse
    }
   if def
   /Interpolate 2 copy knownoget { def } { pop } ifelse
   /ImageMatrix Width 0 0 Height neg 0 Height 6 array astore def
		% Define DataSource as the width of the row buffer,
		% which is what is needed if we're writing PostScript.
   /DataSource 
     Width BitsPerComponent mul
     ImageMask not { Decode length 2 idiv mul } if
     7 add 8 idiv
   def
		% Even though we're going to read data,
		% pass false to resolvestream so that
		% it doesn't try to use Length (which may not be present).
   false resolvestream /Is_stream exch store
   currentdict end ID
 } bdef
% Redefine Is, which constructs the data source for the image,
% to retrieve the stream.  (pdf_2ps.ps redefines Is to copy the data too.)
userdict /Is_stream null put
/Is		% <imagedict> Is <imagedict> <datasource>
 { Is_stream
 } bdef

/DoForm
 { dup [ /pop load 2 index
    { false resolvestream pdfopdict .pdfrun }
   aload pop ] cvx /PaintProc exch put
   execform
 } bdef

drawopdict begin
  /Do
    { PDFfile fileposition exch
      Page /Resources pget not { 0 dict } if
      /XObject oget exch oget
      dup /Subtype get xobjectprocs exch get exec
      PDFfile exch setfileposition
    } bdef
end

% ---------------- In-line images ---------------- %

% Undo the abbreviations in an in-line image dictionary.
% Note that these can appear as keys, values, or members of array values.
% /I is ambiguous; we check specially for it below.
/unabbrevdict mark
	% Top-level dictionary keys
  /BPC /BitsPerComponent  /CS /ColorSpace  /D /Decode  /DP /DecodeParms
  /F /Filter  /H /Height  /IM /ImageMask  /W /Width
	% Values
  /AHx /ASCIIHexDecode  /A85 /ASCII85Decode  /CC /CalCMYK
  /CCF /CCITTFaxDecode  /CG /CalGray  /CR /CalRGB
  /DCT /DCTDecode  /CMYK /DeviceCMYK  /G /DeviceGray  /RGB /DeviceRGB
  /I /Indexed  /LZW /LZWDecode  /RL /RunLengthDecode
.dicttomark readonly def
/unabbrev		% <obj> unabbrev <obj'>
 { dup type /nametype eq
    { unabbrevdict 1 index .knownget { exch pop } if
    }
    { dup type /arraytype eq
       { dup 0 1 2 index length 1 sub
	  { 2 copy get unabbrev put dup
	  }
	 for pop
       }
      if
    }
   ifelse
 } bdef

drawopdict begin
  /BI { mark } bdef
  /ID
    { counttomark
       { counttomark 1 roll
	 dup /I eq { pop /Interpolate } { unabbrev } ifelse
       }
      repeat
      /File PDFsource
      .dicttomark DoImage
      PDFsource token pop /EI ne { /ID cvx /syntaxerror signalerror } if
    } bdef
end

% ================================ Text ================================ %

drawopdict begin
			% Text control
  /BT { BT } def
  /ET { ET } def
  /Tc { Tc } def
  /TL { TL } def
  /Tr { Tr } def
  /Ts { Ts } def
  /Tw { Tw } def
  /Tz { Tz } def
			% Text positioning
  /Td { Td } def
  /TD { TD } def
  /Tm { Tm } def
  /T* { T* } def
			% Text painting
  /Tj { Tj } def
  /' { ' } def
  /" { " } def
  /TJ { mark exch aload pop TJ } def
end

end			% pdfdict
end			% GS_PDF_ProcSet
.setglobal

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃视频一区二区三区| 久久亚洲影视婷婷| 成人丝袜高跟foot| 狠狠色2019综合网| 精品无人区卡一卡二卡三乱码免费卡| 国产精品欧美一区二区三区| 9191久久久久久久久久久| 欧美日韩在线播放三区四区| 丝袜美腿亚洲一区| 国内久久婷婷综合| 免费视频一区二区| 国产91精品免费| 在线一区二区三区四区| 欧美一级夜夜爽| 国产视频一区不卡| 亚洲风情在线资源站| 久久国产精品无码网站| 99久久精品情趣| 精品国产乱码91久久久久久网站| 精品国产第一区二区三区观看体验 | 在线视频你懂得一区二区三区| 欧美亚洲丝袜传媒另类| 日韩欧美一二区| 亚洲另类在线视频| 国产91在线|亚洲| 欧美一卡二卡在线| 国产精品久久久一本精品| 亚洲1区2区3区视频| 一区二区成人在线观看| 日韩黄色片在线观看| 成人av在线影院| 精品国产乱码久久久久久免费| 亚洲图片另类小说| 精品一区二区三区在线播放视频| va亚洲va日韩不卡在线观看| 这里只有精品免费| 亚洲成人av免费| 日本韩国一区二区三区视频| 欧美极品aⅴ影院| 国产成人亚洲精品青草天美| 欧洲av在线精品| 中文字幕亚洲区| 色呦呦网站一区| 亚洲黄网站在线观看| 在线这里只有精品| 一区二区三区四区高清精品免费观看| 国产成人精品一区二区三区四区| 久久亚洲精品国产精品紫薇| 激情欧美一区二区三区在线观看| 日韩你懂的在线播放| 国产精品羞羞答答xxdd| 在线视频一区二区三区| 天堂午夜影视日韩欧美一区二区| 欧美亚洲自拍偷拍| 天堂va蜜桃一区二区三区| 51久久夜色精品国产麻豆| 免费在线视频一区| 日韩手机在线导航| 成人免费看视频| 午夜精品福利一区二区三区av| 欧洲日韩一区二区三区| 国产精品一区二区在线观看网站| 国产午夜精品一区二区三区视频| 成人午夜免费电影| 香蕉成人伊视频在线观看| 久久久久久久精| 欧美日韩精品一区二区| 国产精品18久久久久久久久久久久 | 亚洲国产日韩a在线播放性色| 99久久精品国产观看| 欧美亚洲尤物久久| 99视频超级精品| 国产综合久久久久久鬼色| 亚洲精品五月天| 亚洲视频网在线直播| 久久精品亚洲精品国产欧美 | 亚洲综合久久久| 国产精品国产三级国产aⅴ原创| 91成人在线观看喷潮| eeuss鲁一区二区三区| 久久99国内精品| 麻豆91在线播放免费| 亚洲成人av一区二区| 亚洲精品欧美专区| 亚洲精品视频观看| 亚洲精品乱码久久久久久久久| 日韩免费成人网| 欧美电影免费观看高清完整版| 欧美高清视频一二三区| 欧美精品日韩精品| 欧美二区在线观看| 国产激情偷乱视频一区二区三区| 国产在线乱码一区二区三区| 秋霞成人午夜伦在线观看| 一区二区三区中文字幕精品精品 | 欧美影视一区二区三区| 欧美日韩久久不卡| 久久婷婷久久一区二区三区| 国产亚洲精品免费| 亚洲色图清纯唯美| 婷婷丁香激情综合| 精品无码三级在线观看视频 | 日本一区二区三区在线不卡| 国产欧美精品在线观看| 亚洲欧美成人一区二区三区| 一区二区三区 在线观看视频| 日韩av一区二区三区四区| 精品一区二区在线免费观看| 国产·精品毛片| 日韩一二在线观看| 亚洲日本护士毛茸茸| 精品一区二区三区在线播放视频 | 成人午夜碰碰视频| 日韩午夜在线播放| 亚洲欧美综合网| 国产一区在线看| 日韩三级电影网址| 亚洲一本大道在线| 另类小说综合欧美亚洲| 成人精品免费视频| 久久久久国色av免费看影院| 亚洲一卡二卡三卡四卡五卡| 国产盗摄精品一区二区三区在线| 精品视频在线看| 一区二区三区在线免费视频| 国产精品88888| 欧美色网站导航| 亚洲精品日韩一| 成人午夜在线免费| 国产亚洲精品7777| 国产成人午夜高潮毛片| 精品国产髙清在线看国产毛片| 天堂一区二区在线| 日韩一区二区免费高清| 亚洲乱码国产乱码精品精的特点 | 亚洲va欧美va天堂v国产综合| 91色.com| 美国av一区二区| 日韩欧美资源站| 精品一区二区三区影院在线午夜| 91精品国产综合久久久久| 麻豆成人免费电影| 国产欧美日韩综合| 色呦呦网站一区| 午夜伦欧美伦电影理论片| 日韩免费成人网| 91影院在线免费观看| 亚洲制服丝袜在线| 日韩精品中文字幕在线不卡尤物| 麻豆精品在线观看| 亚洲免费观看高清完整| 678五月天丁香亚洲综合网| 伦理电影国产精品| 亚洲精品综合在线| 久久婷婷成人综合色| eeuss鲁片一区二区三区在线观看| 一区二区三区四区不卡视频| 日韩欧美成人激情| 欧美午夜理伦三级在线观看| 国产一区中文字幕| 三级影片在线观看欧美日韩一区二区 | 色欧美片视频在线观看| 国产中文字幕精品| 日本成人中文字幕| 一区二区欧美国产| 18欧美亚洲精品| 久久久www成人免费无遮挡大片| 色吊一区二区三区| www.欧美日韩| 国产成人精品一区二区三区四区| 一区二区三区在线免费观看| 国产精品成人一区二区艾草| 欧美日韩视频专区在线播放| 99精品久久免费看蜜臀剧情介绍| 国产福利精品导航| 国产专区综合网| www.欧美.com| 色综合av在线| 91精品国产色综合久久ai换脸| 色先锋aa成人| 欧美老女人第四色| 欧美精品在线视频| 欧洲av在线精品| 欧美成人一区二区| 26uuuu精品一区二区| 欧美精彩视频一区二区三区| 国产精品美女www爽爽爽| 国产精品麻豆99久久久久久| 国产精品久久久久久久蜜臀| 亚洲精品网站在线观看| 男女男精品网站| 成人丝袜高跟foot| 欧美日韩中文国产| 26uuu久久综合| 亚洲综合视频网| 国产成人啪免费观看软件| 日本道色综合久久| 欧美一区中文字幕| 国产精品视频第一区| 亚洲一区二区在线观看视频|