%!PS-Adobe-3.0 EPSF-3.0 OE62F0NA.PS/OK0X_FRAME_DH.PS 20111201 %%BoundingBox: 0 0 842 595 /pdfmarkF where {pop} {userdict /pdfmarkF /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put } if [ /Title (PostScript pictures: http://130.149.60.445/~farbmetrik/OE62) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.445/~farbmetrik) /Keywords (image reproduction, colour devices) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmarkF [ /View [ /Fit ] /DOCVIEW pdfmarkF %line 20 %Early definition of FF_LM_setgrayF0 identical to former setgray /FF_LM_setgrayF0 {setgray} bind def /FF_LM_setrgbcolorF0 {setrgbcolor} bind def /FF_LM_setcmykcolorF0 {setcmykcolor} bind def /FF_LM_transferF0 {settransfer} bind def /FF_LM_colortransferF0 {setcolortransfer} bind def /FF_LM_xchart_gammaF {/xchart where {pop /xchartN xchart 8 idiv def /xchartP xchart xchart 8 idiv 8 mul sub def} {/xchartN 2.0 def %default /xchartP 0.5 def} ifelse /gammaF 2.4 xchartP 0.18 mul sub 2.4 div 1 2.4 xchartN 0.18 mul sub 2.4 div div mul def gammaF exp } def /FF_LM_setrgbcolorF {%FF_LM_setrgbcolorF /FF_LM_b0L exch def /FF_LM_g0L exch def /FF_LM_r0L exch def FF_LM_r0L 0 le {/FF_LM_r0L 0.0001 def} if FF_LM_g0L 0 le {/FF_LM_g0L 0.0001 def} if FF_LM_b0L 0 le {/FF_LM_b0L 0.0001 def} if /FF_LM_r1F FF_LM_r0L FF_LM_xchart_gammaF def /FF_LM_g1F FF_LM_g0L FF_LM_xchart_gammaF def /FF_LM_b1F FF_LM_b0L FF_LM_xchart_gammaF def FF_LM_r1F FF_LM_g1F FF_LM_b1F FF_LM_setrgbcolorF0 } def %FF_LM_setrgbcolorF /FF_LM_transferF {{FF_LM_xchart_gammaF} FF_LM_transferF0} def /FF_LM_colortransferF {{FF_LM_xchart_gammaF} {FF_LM_xchart_gammaF} {FF_LM_xchart_gammaF} FF_LM_colortransferF0} def %line 56 %BEG INCLUDE TRANSFERS %BEG 1MR-0000F.TXT ************************************2011-10-01 /1MR-0000F {%BEG procedure 1MR-0000F %1MR-Transform of setgray and setcmykcolor to FF_LM_de_setrgbcolorF %Three procedures and use of the procedure FF_LM_de_setrgbcolorF of main FF /setgray {%BEG procedure setgrayF dup dup FF_LM_de_setrgbcolorF %STOPs } def %END procedure setgrayF /setcmykcolor {%BEG procedure setcmykcolorF /FF_LM_k exch def /FF_LM_y exch def /FF_LM_m exch def /FF_LM_c exch def FF_LM_k 0 eq {1 FF_LM_c sub 1 FF_LM_m sub 1 FF_LM_y sub FF_LM_de_setrgbcolorF} {1 FF_LM_k sub dup dup FF_LM_de_setrgbcolorF} ifelse %STOPc } def %END procedure setcmykcolorF /setrgbcolor {%BEG procedure setrgbcolorF /FF_LM_b exch def /FF_LM_g exch def /FF_LM_r exch def FF_LM_r FF_LM_g FF_LM_b FF_LM_de_setrgbcolorF %STOPr } def %BEG procedure setrgbcolorF /settransfer {FF_LM_transferF} def /setcolortransfer {FF_LM_colortransferF} def } def %END procedure 1MR-0000F %END 1MR-0000F.TXT ************************************2011-10-01 %BEG 'OK0X'SEP-0000.TXT *********************************2011-04-01 %****************************************************************** %Empty: No color separation %****************************************************************** %END 'OK0X'SEP-0000.TXT *********************************2011-04-01 %BEG 'OK0X'DEH-000E.TXT *********************************2011-10-01 /Xrx089 729 array def /Yrx089 729 array def /Zrx089 729 array def /Xrx100 729 array def /Yrx100 729 array def /Zrx100 729 array def /R0 729 array def /G0 729 array def /B0 729 array def /RGB0_to_XYZ729 { %BEG procedure RGB0_to_XYZ729 %transfers standard sRGB data (IEC 61966-2-1) to XYZ data for 9x9x9=729 colours %normalized XYZ data with Y=88.59 for display white, compare ISO 9241-306:2008. %requires /(XYZ)rx089 729 array def % /(XYZ)rx100 729 array def %requires in addition /RGB0 1080 array def %row no.1 and 2: 9xrgb /imax 08 def /jmax 08 def /kmax 08 def 0 1 kmax {/k exch def %beg k=0,08 0 1 jmax {/j exch def %beg j=0,jmax 0 1 imax {/i exch def %beg i=0,imax /n i j 9 mul add k 81 mul add def R0 n k kmax div 1000 mul put G0 n j jmax div 1000 mul put B0 n i imax div 1000 mul put } for %end i=0,jmax } for %end j=0,jmax } for %end k=0,kmax /IM0 729 def /IM1 IM0 1 sub def 0 1 IM1 {/i exch def %i=0,IM1 R0 i get 0.04045 le %equations of IEC 61966-2-1:2003 {/RsRGB R0 i get 12.92 div def} {/RsRGB R0 i get 0.001 mul 0.055 add 1.055 div 2.4 exp def} ifelse G0 i get 0.04045 le {/GsRGB G0 i get 12.92 div def} {/GsRGB G0 i get 0.001 mul 0.055 add 1.055 div 2.4 exp def} ifelse B0 i get 0.04045 le {/BsRGB B0 i get 12.92 div def} {/BsRGB B0 i get 0.001 mul 0.055 add 1.055 div 2.4 exp def} ifelse Xrx100 i 0.4124 RsRGB mul 0.3576 GsRGB mul add 0.1805 BsRGB mul add 100 mul put Yrx100 i 0.2126 RsRGB mul 0.7152 GsRGB mul add 0.0722 BsRGB mul add 100 mul put Zrx100 i 0.0193 RsRGB mul 0.1192 GsRGB mul add 0.9505 BsRGB mul add 100 mul put } for %i=0,IM1 0 1 IM1 {/i exch def %i=0,IM1 Xrx089 i Xrx100 i get 0.8859 mul put Yrx089 i Yrx100 i get 0.8859 mul put Zrx089 i Zrx100 i get 0.8859 mul put } for %i=0,IM1 /iN 0 def /iW 728 def /XLN100 Xrx100 iN get def /YLN100 Yrx100 iN get def /ZLN100 Zrx100 iN get def /XLW100 Xrx100 iW get def /YLW100 Yrx100 iW get def /ZLW100 Zrx100 iW get def /XLN089 Xrx089 iN get def /YLN089 Yrx089 iN get def /ZLN089 Zrx089 iN get def /XLW089 Xrx089 iW get def /YLW089 Yrx089 iW get def /ZLW089 Zrx089 iW get def % achromatic (D65) colours /XLWD65100 95.04 def /YLWD65100 100.00 def /ZLWD65100 108.88 def /XLWD65089 95.04 0.8859 mul def /YLWD65089 100.00 0.8859 mul def /ZLWD65089 108.88 0.8859 mul def /XLN001 XLWD65100 100 div def /YLN001 YLWD65100 100 div def /ZLN001 ZLWD65100 100 div def } bind def %END procedure RGB0_to_XYZ729 %*********************************************************** /LAB*e 35 array def %7x5=35 /LAB*e[39.92 58.74 27.99 0.0 0.0 % 00_04 R CIE No.09 elementary colours in LAB, D65 81.26 -2.89 71.56 0.0 0.0 % 05_09 J CIE No.10 52.23 -42.42 13.60 0.0 0.0 % 10_14 G CIE No.11 0.0 0.0 0.0 0.0 0.0 % 15_19 Cgb 30.57 1.41 -46.47 0.0 0.0 % 20_24 B CIE No.12 0.0 0.0 0.0 0.0 0.0 % 25_29 Mbr 39.92 58.74 27.99 0.0 0.0 % 30_34 R+360 CIE No.09 elementary colours in LAB, D65 ] def /LAB*He_Hs { %BEG procedure LAB*He_Hs %calculation of CIELAB data of elementary colours %elemenatry colour data of colour RJGB of CIE R1-47:2009 used %requires /LAB*e 35 array def %7x5=35 %requires /LAB*e data of CIE R1-47 0 1 5 {/j exch def %j=0,5 j 0 eq {LAB*e 03 LAB*e 01 get dup mul LAB*e 02 get dup mul add sqrt put LAB*e 04 LAB*e 02 get LAB*e 01 get 0.0001 add atan put } if j 1 eq {LAB*e 08 LAB*e 06 get dup mul LAB*e 07 get dup mul add sqrt put LAB*e 09 LAB*e 07 get LAB*e 06 get 0.0001 add atan put } if j 2 eq {LAB*e 13 LAB*e 11 get dup mul LAB*e 12 get dup mul add sqrt put LAB*e 14 LAB*e 12 get LAB*e 11 get 0.0001 add atan put } if j 4 eq {LAB*e 23 LAB*e 21 get dup mul LAB*e 22 get dup mul add sqrt put LAB*e 24 LAB*e 22 get LAB*e 21 get 0.0001 add atan put } if } for %j=0,5 3 1 4 {/i exch def %i=3,4 30_34 R+360 LAB*e i 30 add LAB*e i get put i 4 eq {LAB*e i 30 add LAB*e i get 360 add put} if } for %i=3,4 3 2 5 {/i exch def %i=3,5,2 Cgb+Cbr i 3 eq {LAB*e 19 LAB*e 14 get LAB*e 24 get add 0.5 mul put %hab LAB*e 18 LAB*e 13 get LAB*e 23 get add 0.5 mul put %C*ab LAB*e 15 LAB*e 10 get LAB*e 20 get add 0.5 mul put %L* LAB*e 16 LAB*e 18 get LAB*e 19 get cos mul put %a* LAB*e 17 LAB*e 18 get LAB*e 19 get sin mul put %b* } if i 5 eq {LAB*e 29 LAB*e 24 get LAB*e 34 get add 0.5 mul put %hab LAB*e 28 LAB*e 23 get LAB*e 33 get add 0.5 mul put %C*ab LAB*e 25 LAB*e 20 get LAB*e 30 get add 0.5 mul put %L* LAB*e 26 LAB*e 28 get LAB*e 29 get cos mul put %a* LAB*e 27 LAB*e 28 get LAB*e 29 get sin mul put %b* } if } for %i=3,5,2 /LAB*He 7 array def 0 1 6 {/i exch def %i=0,5 LAB*He i LAB*e i 5 mul 4 add get put } for %i=0,5 /LAB*Hs 7 array def /LAB*Hs [30. 90. 150. 210. 270. 330. 390.] def } bind def %END procedure LAB*He_Hs %****************************************************************** /habsi 361 array def /habei 361 array def /hab*sM_to_hab*eM { %BEG Procedure hab*sM_to_hab*eM %transfer from hue angle hab*s of standard colours to hab*e of elementary colours %360 integer hue angles used %360 steps used for the range 0 <= hab*s <= 360 %requires /habsi 361 array def %requires /habei 361 array def 0 1 359 {/i exch def %i=0,359 /habs i def habsi i i put %alpha = [habs - LAB*Hs(h)]/[LAB*Hs(n+1) - LAB*Hs(n)] % = [habs - LAB*Hs(h)]/60 %habe = alpha [LAB*He(n+1) - LAB*He(n)] + LAB*He(n) i 000 ge i 029 le and {/ipan0 5 def /ipan1 6 def /habs habs 360 add def} if i 030 ge i 089 le and {/ipan0 0 def /ipan1 1 def} if i 090 ge i 149 le and {/ipan0 1 def /ipan1 2 def} if i 150 ge i 209 le and {/ipan0 2 def /ipan1 3 def} if i 210 ge i 269 le and {/ipan0 3 def /ipan1 4 def} if i 270 ge i 329 le and {/ipan0 4 def /ipan1 5 def} if i 330 ge i 359 le and {/ipan0 5 def /ipan1 6 def} if /alpha {habs LAB*Hs ipan0 get sub 60 div} bind def /habe {LAB*He ipan1 get LAB*He ipan0 get sub alpha mul LAB*He ipan0 get add} bind def habe 360 ge {/habe habe 360 sub def} if habei i habe round cvi put } for %i=0,359 habsi 360 360 put habei 360 habei 0 get put } bind def %END hab*sM_to_hab*eM %****************************************************************** /r*d361Mi 361 array def /g*d361Mi 361 array def /b*d361Mi 361 array def /hab*sM_to_rgb*d361Mi { %BEG Procedure hab*sM_to_rgb*d361Mi %transfer from hue angle hab*s of standard colours to rgb* data of elementary colours hab*e %360 integer hue angles used %360 steps used for the range 0 <= hab*s <= 360 %requires /habsi 361 array def % /habei 361 array def % /rgb*d361Mi 361 array def 0 1 359 {/i exch def %i=0,359 i 000 ge i 029 le and {r*d361Mi i 1.00 put %Mbr_R, part 2 g*d361Mi i 0.00 put b*d361Mi i 1.00 i 30 add 60 div sub put} if i 030 ge i 089 le and {r*d361Mi i 1.00 put %R_J g*d361Mi i 0.00 i 30 sub 60 div add put b*d361Mi i 0.00 put} if i 090 ge i 149 le and {r*d361Mi i 1.00 i 90 sub 60 div sub put %J_G g*d361Mi i 1.00 put b*d361Mi i 0.00 put} if i 150 ge i 209 le and {r*d361Mi i 0.00 put %G_Cgb g*d361Mi i 1.00 put b*d361Mi i 0.00 i 150 sub 60 div add put} if i 210 ge i 269 le and {r*d361Mi i 0.00 put %Cgb_B g*d361Mi i 1.00 i 210 sub 60 div sub put b*d361Mi i 1.00 put} if i 270 ge i 329 le and {r*d361Mi i 0.00 i 270 sub 60 div add put %B_Mbr g*d361Mi i 0.00 put b*d361Mi i 1.00 put} if i 330 ge i 359 le and {r*d361Mi i 1.00 put %Mbr_R, part 1 g*d361Mi i 0.00 put b*d361Mi i 1.00 i 330 sub 60 div sub put} if } for %i=0,359 r*d361Mi 360 r*d361Mi 0 get put g*d361Mi 360 g*d361Mi 0 get put b*d361Mi 360 b*d361Mi 0 get put } bind def %END hab*sM_to_rgb*d361Mi %****************************************************************** /XIEi 361 array def /x361i 361 array def /r*e361Mi 361 array def /g*e361Mi 361 array def /b*e361Mi 361 array def /LAB*L361Mi 361 array def /LAB*a361Mi 361 array def /LAB*b361Mi 361 array def /LAB*C361Mi 361 array def /LAB*h361Mi 361 array def /LAB*x50M_to_LAB*x361Mi_rgb*x361Mi { %BEG Procedure LAB*x50M_to_LAB*x361Mi_rgb*x361Mi %transfer from measured CIELAB data of a 48 step hue circle %to a 360 step integer hue circle %360 steps used for the range 0 <= LAb*50hM <= 360 %requires /LAB*x50M 50 array def (x=L,a,b,C,h) defined in LAB729a_to_LAB*x50M %requires /rgb*d50M 50 array def defined allways as table %both defined in LAB729a_to_LAB*x50M %requires /LAB*x361M 361 array def (x=L,a,b,C,h) %requires /rgb*e361Mi 361 array def /hmin LAB*h50M 0 get def /hmax LAB*h50M 48 get def /hmini LAB*h50M 0 get cvi def /hmaxi LAB*h50M 48 get cvi def 0 1 360 {/i0 exch def %i=0,360 %default /i1 i0 1 add def /XIE -1 def LAB*L361Mi i0 -1 put LAB*C361Mi i0 -1 put LAB*h361Mi i0 -1 put LAB*a361Mi i0 -1 put LAB*b361Mi i0 -1 put r*e361Mi i0 -1 put g*e361Mi i0 -1 put b*e361Mi i0 -1 put XIEi i0 -1 put x361i i0 -1 put } for %i=0,360 hmini 1 hmaxi {/i0 exch def %i=36,300 0 1 48 {/ix0 exch def %ix0=0,48 /ix1 ix0 1 add def i0 LAB*h50M ix0 get sub 0 ge i0 LAB*h50M ix1 get sub 0 lt and { /im i0 def i0 360 ge {/im i0 360 sub def} if XIEi im i0 LAB*h50M ix0 get sub LAB*h50M ix1 get LAB*h50M ix0 get sub div put /XIE XIEi im get def LAB*L361Mi im LAB*L50M ix0 get LAB*L50M ix1 get LAB*L50M ix0 get sub XIE mul add put LAB*C361Mi im LAB*C50M ix0 get LAB*C50M ix1 get LAB*C50M ix0 get sub XIE mul add put LAB*h361Mi im LAB*h50M ix0 get LAB*h50M ix1 get LAB*h50M ix0 get sub XIE mul add dup 360 ge {360 sub} if put LAB*a361Mi im LAB*C361Mi im get LAB*h361Mi im get cos mul put LAB*b361Mi im LAB*C361Mi im get LAB*h361Mi im get sin mul put r*e361Mi im r*d50M ix0 get r*d50M ix1 get r*d50M ix0 get sub XIE mul add put g*e361Mi im g*d50M ix0 get g*d50M ix1 get g*d50M ix0 get sub XIE mul add put b*e361Mi im b*d50M ix0 get b*d50M ix1 get b*d50M ix0 get sub XIE mul add put ix0 00 ge ix0 07 le and {x361i im 0 put} if ix0 08 ge ix0 15 le and {x361i im 1 put} if ix0 16 ge ix0 23 le and {x361i im 2 put} if ix0 24 ge ix0 31 le and {x361i im 3 put} if ix0 32 ge ix0 39 le and {x361i im 4 put} if ix0 40 ge ix0 47 le and {x361i im 5 put} if exit } if } for %ix0=0,48 } for %i=36,300 LAB*L361Mi 360 LAB*L361Mi 0 get put LAB*a361Mi 360 LAB*a361Mi 0 get put LAB*b361Mi 360 LAB*b361Mi 0 get put LAB*C361Mi 360 LAB*C361Mi 0 get put LAB*h361Mi 360 LAB*h361Mi 0 get 360 add put r*e361Mi 360 r*e361Mi 0 get put g*e361Mi 360 g*e361Mi 0 get put b*e361Mi 360 b*e361Mi 0 get put XIEi 360 XIEi 0 get put x361i 360 x361i 0 get put } bind def %END LAB*x50M_to_LAB*x361Mi_rgb*x361Mi %****************************************************************** /LAB*L50M 50 array def /LAB*a50M 50 array def /LAB*b50M 50 array def /LAB*C50M 50 array def /LAB*h50M 50 array def /LAB729a_to_LAB*x50M { %BEG Procedure LAB729a_to_LAB*x50M %selection of a 48 step hue circle of maximum chroma %out of measured CIELAB data of 9x9x9=729 colours %requires /LAB*x50M 50 array def %requires /LAB729a 729 array def %defined in /xchartj_XYZ729_LAB729a 0 1 5 {/xtonj exch def %xtonj=0,5 0 1 7 {/j exch def %j=0,7 /ja xtonj 8 mul j add def xtonj 0 eq {/jx 648 j 09 mul add def} if %see O00Y-O83Y, -0 xtonj 1 eq {/jx 720 j 81 mul sub def} if %see Y00L-Y83L, -81 xtonj 2 eq {/jx 072 j add def} if %see L00C-L83C, +01 xtonj 3 eq {/jx 080 j 09 mul sub def} if %see C00V-C83V, -09 xtonj 4 eq {/jx 008 j 81 mul add def} if %see V00M-V83M, -81 xtonj 5 eq {/jx 656 j sub def} if %see M00O-M83O, +01 LAB*L50M ja L729a jx get put LAB*a50M ja a729a jx get put LAB*b50M ja b729a jx get put LAB*C50M ja LAB*a50M ja get dup mul LAB*b50M ja get dup mul add sqrt put LAB*h50M ja LAB*b50M ja get LAB*a50M ja get 0.0001 add atan put xtonj 5 eq LAB*h50M ja get 90 le and {LAB*h50M ja LAB*h50M ja get 360 add put} if } for %j=0,7 } for %xtonj=0,5 LAB*L50M 48 LAB*L50M 0 get put LAB*a50M 48 LAB*a50M 0 get put LAB*b50M 48 LAB*b50M 0 get put LAB*C50M 48 LAB*C50M 0 get put LAB*h50M 48 LAB*h50M 0 get 360 add put LAB*L50M 49 LAB*L50M 1 get put LAB*a50M 49 LAB*a50M 1 get put LAB*b50M 49 LAB*b50M 1 get put LAB*C50M 49 LAB*C50M 1 get put LAB*h50M 49 LAB*h50M 1 get 360 add put } bind def %END LAB729a_to_LAB*x50M %************************************************************************ /Lrc089 729 array def /arc089 729 array def /brc089 729 array def /Xrc089 729 array def /Yrc089 729 array def /Zrc089 729 array def /Lra089 729 array def /ara089 729 array def /bra089 729 array def /Xra089 729 array def /Yra089 729 array def /Zra089 729 array def /Lna089 729 array def /ana089 729 array def /bna089 729 array def /Xna089 729 array def /Yna089 729 array def /Zna089 729 array def /Lla089 729 array def /ala089 729 array def /bla089 729 array def /Xla089 729 array def /Yla089 729 array def /Zla089 729 array def /X729 729 array def /Y729 729 array def /Z729 729 array def /L729 729 array def %not adapted /a729 729 array def /b729 729 array def /L729a 729 array def %adapted /a729a 729 array def /b729a 729 array def /ilf 8 array def /ilf [0.00 0.25 0.50 1.00 2.00 4.00 8.00 16.00] def /Lrefl 11 array def /Lrefl [(0%) (0%) (0%) (0%) (0,6%) (1,2%) (2,5%) (5%) (10%) (20%) (40%)] def /xchartj_XYZ729_LAB729a { %BEG Procedure xchartj_LAB729a %transfer from XYZ729 data to LAB729a CIELAB data for 9x9x9=729 colours %requires 0<= xchartj <=10 (11 luminance reflections) %requires /(XYZ)x089 3240 array def (x=rc,ra,na,la) %requires /(Lab)x089 3240 array def (x=rc,ra,na,la) %requires /x729 729 array def (x=X,Y,Z) %not adapted %requires /x729 729 array def (x=L,a,b) %not adapted %requires /x729a 729 array def (x=L,a,b) %adapted xchartj 2 le {/il 0 def} {/il xchartj 3 sub def} ifelse %Reference black and factors /YrN 2.52 def /Xtref089 YrN ilf il get mul XLN001 mul def /Ytref089 YrN ilf il get mul def /Ztref089 YrN ilf il get mul ZLN001 mul def /YNil Ytref089 def /YNil001 YNil 100 div def YNil001 6 29 div 3 exp ge {/FYYn YNil001 0.3333 exp def} {/FYYn 841 108 div YNil001 mul 4 29 div add def} ifelse /L*Nil 116 FYYn mul 16 sub def /IM1 728 def 0 1 IM1 {/i exch def %i=0,IM1 Xrc089 i Xrx089 i get put Yrc089 i Yrx089 i get put Zrc089 i Zrx089 i get put /XQ Xrc089 i get XLWD65100 div def /YQ Yrc089 i get YLWD65100 div def /ZQ Zrc089 i get ZLWD65100 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if Lrc089 i YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse put arc089 i XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul put brc089 i YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul put } for %i=0,IM1 /L*N Lrc089 0 get def /A*N arc089 0 get def /B*N brc089 0 get def /L*W Lrc089 728 get def /A*W arc089 728 get def /B*W brc089 728 get def 0 1 IM1 {/i exch def %i=0,IM1 Lra089 i Lrc089 i get put /l*CIE Lrc089 i get L*N sub L*W L*N sub div def %system rel. lightn. /a*s A*W A*N sub l*CIE mul def /b*s B*W B*N sub l*CIE mul def ara089 i arc089 i get A*N sub a*s sub put bra089 i brc089 i get B*N sub b*s sub put } for %i=0,IM1 0 1 IM1 {/i exch def %i=0,IM1 /X* {Lra089 i get 16 add 116 div ara089 i get 500 div add} bind def /Y* {Lra089 i get 16 add 116 div} bind def /Z* {Lra089 i get 16 add 116 div bra089 i get 200 div sub} bind def Xra089 i X* DecodeXYZ* XLWD65100 mul put Yra089 i Y* DecodeXYZ* YLWD65100 mul put Zra089 i Z* DecodeXYZ* ZLWD65100 mul put } for %i=0,IM1 xchartj 2 ge {%xchartj>=2 %for white X data /Xwref089 Xra089 728 get def /Ywref089 Yra089 728 get def /Zwref089 Zra089 728 get def %for black X data /YrN Yra089 0 get def /Xnref089 YrN XLN001 mul def /Ynref089 YrN def /Znref089 YrN ZLN001 mul def /IM1 728 def 0 1 IM1 {/i exch def %i=1,IM1 Xna089 i Xra089 i get Xnref089 sub Xwref089 Xwref089 Xnref089 sub div mul put Yna089 i Yra089 i get Ynref089 sub Ywref089 Ywref089 Ynref089 sub div mul put Zna089 i Zra089 i get Znref089 sub Zwref089 Zwref089 Znref089 sub div mul put } for %i=1,IM1 0 1 IM1 {/i exch def %i=1,IM1 /XQ Xna089 i get XLWD65100 div def /YQ Yna089 i get YLWD65100 div def /ZQ Zna089 i get ZLWD65100 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if Lna089 i YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse put ana089 i XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul put bna089 i YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul put } for %i=1,IM1 } if %xchart>=2 xchartj 3 ge {%xchart>=3 %for white X data /Xwref089 Xra089 728 get def /Ywref089 Yra089 728 get def /Zwref089 Zra089 728 get def /kn Ywref089 Ywref089 Ytref089 sub div def 0 1 IM1 {/i exch def %i=1,IM1 Xla089 i Xna089 i get kn div Xtref089 add put Yla089 i Yna089 i get kn div Ytref089 add put Zla089 i Zna089 i get kn div Ztref089 add put } for %i=1,IM1 0 1 IM1 {/i exch def %i=1,IM1 /XQ Xla089 i get XLWD65100 div def /YQ Yla089 i get YLWD65100 div def /ZQ Zla089 i get ZLWD65100 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if Lla089 i YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse put ala089 i XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul put bla089 i YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul put } for %i=1,IM1 } if %xchart>=3 xchartj 0 eq {%xchartj=0 (1x) 0 1 IM1 {/i exch def %i=0,IM1 L729 i Lrc089 i get put a729 i arc089 i get put b729 i brc089 i get put X729 i Xrc089 i get put Y729 i Yrc089 i get put Z729 i Zrc089 i get put } for %i=0,IM1 } if %xchartj=0 (1x) xchartj 1 eq {%xchartj=1 (1x) 0 1 IM1 {/i exch def %i=0,IM1 L729 i Lra089 i get put a729 i ara089 i get put b729 i bra089 i get put X729 i Xra089 i get put Y729 i Yra089 i get put Z729 i Zra089 i get put } for %i=0,IM1 } if %xchartj=1 (1x) xchartj 2 eq {%xchartj=2 (1x) 0 1 IM1 {/i exch def %i=0,IM1 L729 i Lna089 i get put a729 i ana089 i get put b729 i bna089 i get put X729 i Xna089 i get put Y729 i Yna089 i get put Z729 i Zna089 i get put } for %i=0,IM1 } if %xchartj=2 (1x) xchartj 3 ge {%xchartj=3,4,5,6,7,8,9,10 (8x) 0 1 728 {/i exch def %i=0,IM1 L729 i Lla089 i get put a729 i ala089 i get put b729 i bla089 i get put X729 i Xla089 i get put Y729 i Yla089 i get put Z729 i Zla089 i get put } for %i=0,IM1 } if %xchartj=3,4,5,6,7,8,9,10 (8x) %Adaptation /L*Nio L729 000 get def /A*Nio a729 000 get def /B*Nio b729 000 get def /L*Wio L729 728 get def /A*Wio a729 728 get def /B*Wio b729 728 get def /A*Dio A*Wio A*Nio sub def /B*Dio B*Wio B*Nio sub def 0 1 728 {/j exch def %j=0,728 L729a j L729 j get put /l*CIE L729 j get L*Nio sub L*Wio L*Nio sub div def %system rel. lightn. /a*s A*Wio A*Nio sub l*CIE mul def /b*s B*Wio B*Nio sub l*CIE mul def a729a j a729 j get A*Nio sub a*s sub put b729a j b729 j get B*Nio sub b*s sub put } for %j=0,728 xchartj 0 eq {/Xprint 0 def /FileData (LAB*rc) def} if xchartj 1 eq {/Xprint 1 def /FileData (LAB*ra) def} if xchartj 2 eq {/Xprint 1 def /FileData (LAB*na) def} if xchartj 3 eq {/Xprint 1 def /FileData (LAB*la0) def} if xchartj 4 eq {/Xprint 1 def /FileData (LAB*la1) def} if xchartj 5 eq {/Xprint 1 def /FileData (LAB*la2) def} if xchartj 6 eq {/Xprint 1 def /FileData (LAB*la3) def} if xchartj 7 eq {/Xprint 1 def /FileData (LAB*la4) def} if xchartj 8 eq {/Xprint 1 def /FileData (LAB*la5) def} if xchartj 9 eq {/Xprint 1 def /FileData (LAB*la6) def} if xchartj 10 eq {/Xprint 1 def /FileData (LAB*la7) def} if } bind def %END xchartj_XYZ729_LAB729a %************************************************************************ /FF_LM_de_setrgbcolorF {%BEG procedure FF_LM_de_setrgbcolorF %transfer of device to elementary colors %requires /habsi 361 array def %defined in hab*sM_to_hab*eM %requires /habei 361 array def %defined in hab*sM_to_hab*eM %requires /rgb*e361Mi 361 array def %defined in LAB*x50M_to_LAB*x361Mi_rgb*x361Mi /FFM_bs exch def /FFM_gs exch def /FFM_rs exch def %test grey or color FFM_rs FFM_gs sub abs 0.002 le FFM_gs FFM_bs sub abs 0.002 le and {%grey or color /r*d FFM_rs def /g*d FFM_gs def /b*d FFM_bs def /i*d r*d def /c*d 0 def /r*eM 1 def /g*eM 1 def /b*eM 1 def /r*eF r*d def /g*eF g*d def /b*eF b*d def } {%color /hsi FFM_rs 030 sin mul FFM_gs 150 sin mul add FFM_bs 270 sin mul add %y_e FFM_rs 030 cos mul FFM_gs 150 cos mul add %x_e 0.0001 add atan 0.5 add cvi def /hei habei hsi get def /r*d FFM_rs def /g*d FFM_gs def /b*d FFM_bs def %calculation of i* and c* of colour F /maxd r*d def maxd g*d lt {/maxd g*d def} if maxd b*d lt {/maxd b*d def} if /mind r*d def mind g*d gt {/mind g*d def} if mind b*d gt {/mind b*d def} if /i*d maxd def /c*d maxd mind sub def %calculation of rgb*e /r*eM r*e361Mi hei get def /g*eM g*e361Mi hei get def /b*eM b*e361Mi hei get def /heM r*eM 030 sin mul g*eM 150 sin mul add b*eM 270 sin mul add %y_e r*eM 030 cos mul g*eM 150 cos mul add %x_e 0.0001 add atan def %calculation of rgb*eF of colour F c*d 1 eq {%c*d=1,#1 /r*eF r*eM def /g*eF g*eM def /b*eF b*eM def} {%c*d#1 heM 030 ge heM 090 lt and {%r>g>b /r*eF r*eM i*d mul def /g*eF g*eM 1 g*eM sub 1 c*d sub mul add i*d mul def /b*eF b*eM 1 add c*d sub i*d mul def} if heM 090 ge heM 150 lt and {%g>r>b /r*eF r*eM 1 r*eM sub 1 c*d sub mul add i*d mul def /g*eF g*eM i*d mul def /b*eF b*eM 1 add c*d sub i*d mul def} if heM 150 ge heM 210 lt and {%g>b>r /r*eF r*eM 1 add c*d sub i*d mul def /g*eF g*eM i*d mul def /b*eF b*eM 1 b*eM sub 1 c*d sub mul add i*d mul def} if heM 210 ge heM 270 lt and {%b>g>r /r*eF r*eM 1 add c*d sub i*d mul def /g*eF g*eM 1 g*eM sub 1 c*d sub mul add i*d mul def /b*eF b*eM i*d mul def} if heM 270 ge heM 330 lt and {%b>r>g /r*eF r*eM 1 r*eM sub 1 c*d sub mul add i*d mul def /g*eF g*eM 1 add c*d sub i*d mul def /b*eF b*eM i*d mul def} if heM 330 ge heM 360 lt and heM 000 ge heM 030 lt and or {%r>b>g /r*eF r*eM i*d mul def /g*eF g*eM 1 add c*d sub i*d mul def /b*eF b*eM 1 b*eM sub 1 c*d sub mul add i*d mul def} if } ifelse %c*d=1,#1 %STOP2 } ifelse %grey or color r*eF g*eF b*eF FF_LM_setrgbcolorF } bind def %END procedure FF_LM_de_setrgbcolorF.TXT %END 'OK0X'DEH-000E.TXT ************************************2011-04-01 %END INCLUDE TRANSFERS %*********************************************************************************** %0 room to include more PS-Code %1 %2 %3 %4 %5 %6 %7 %8 %9 %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 %0 %1 %2 %3 %4 %5 /BeginEPSFF {% def % Prepare for EPS file Global (G) /b4_Inc_state save def % Save state for cleanup /dict_count countdictstack def /op_count count 1 sub def % Count objects on op stack userdict begin % Make userdict current dict /showpage {} def 0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath /languagelevel where % If level not equal to 1 then {pop languagelevel where % If level not equal to 1 then 1 ne {false setstrokeadjust false setoverprint } if } if } bind def /EndEPSFF {% def % End for EPS file Global (G) count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat % Clean up dict stack b4_Inc_state restore } bind def /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def /A4querF {598 0 translate 90 rotate} def % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /TK {250 /Times-ISOL1 FS} bind def /TM {300 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {300 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {300 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {300 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def %*********************************************************** /r*d50M 50 array def /r*d50M [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 %R 1.000 0.875 0.750 0.625 0.500 0.375 0.250 0.125 %J 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 %G 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 %C 0.000 0.125 0.250 0.375 0.500 0.625 0.750 0.875 %B 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 %M 1.000 1.000 ] def /g*d50M 50 array def /g*d50M [0.000 0.125 0.250 0.375 0.500 0.625 0.750 0.875 %R 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 %J 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 %G 1.000 0.875 0.750 0.625 0.500 0.375 0.250 0.125 %C 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 %B 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 %M 0.000 0.125 ] def /b*d50M 50 array def /b*d50M [0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 %R 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 %J 0.000 0.125 0.250 0.375 0.500 0.625 0.750 0.875 %G 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 %C 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 %B 1.000 0.875 0.750 0.625 0.500 0.375 0.250 0.125 %M 0.000 0.000 ] def %*********************************************************** /XD65W 95.04 def /YD65W 100.00 def /ZD65W 108.88 def /XD50W 96.42 def /YD50W 100.00 def /ZD50W 82.51 def /DAKTE [(D65) (D50)] def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %*********************************************************** /proc_framef { %BEG proc_framef(_DEH) /MX {0.33 mul} def /10MXN {10 MX /Times-ISOL1 FS} def /12MXN {12 MX /Times-ISOL1 FS} def /12MXI {12 MX /TimesI-ISOL1 FS} def /lanind 1 def /lantex [(G) (E) (S) (N) (I) (J) (M)] def /showde {0 lanindf eq {show} {pop} ifelse} bind def /showen {1 lanindf eq {show} {pop} ifelse} bind def /showes {2 lanindf eq {show} {pop} ifelse} bind def /showfr {3 lanindf eq {show} {pop} ifelse} bind def /showit {4 lanindf eq {show} {pop} ifelse} bind def /showjp {5 lanindf eq {show} {pop} ifelse} bind def /showm {6 lanindf eq {show} {pop} ifelse} bind def 0 setgray 0.15 setlinewidth /xframe1 003 def /xframe2 292 def /yframe1 001 def /yframe2 207 def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def /xtextf 1 def xtextf 1 eq {%xtextf=1 xframe1 yframe1 moveto xframe2 0 rlineto 0 yframe2 rlineto xframe2 neg 0 rlineto closepath stroke 4.5 1.8 moveto 12MXN (OE62/OE62) show (L0N) show (A.PDF /.PS) show (, Page ) showen (, Seite ) showde xchartf xchartfd idiv pchartf20m 1 add mul pchartf pchartf10 sub 1 add add cvishow (/) show xchartf20m xchartfd idiv 1 add pchartf20m 1 add mul cvishow (, ) show colormf 0 eq {(No FF_LM) showen (kein FF_LM) showde 012 MX /Times-ISOL1 FS} {(FF_LM: ) show 12MXI xcolorf0 0 eq {(000n) show} if xcolorf0 1 eq {(w) show} if xcolorf0 2 eq {(cmy0) show} if xcolorf0 3 eq {(rgb) show} if xcolorf0 4 eq {(cmy0/rgb) show} if xcolorf0 5 eq {(all) show} if (->rgb) show 10MXN 0 -1 rmoveto (de) show 0 1 rmoveto 12MXN (; 1MR, DEH) show } ifelse /CYi [((288:1)) ((144:1)) ((72:1)) ((36:1)) ((18:1)) ((9:1)) ((4,5:1)) ((2,25:1))] def 138 1.8 moveto 12MXI (C) show 10MXN 0 -0.5 rmoveto (Y) show xchartfd 1 eq {8 xchartf sub} {(N) show 8 xchartf xchartfd idiv sub} ifelse cvishow 0 0.5 rmoveto 12MXN ( ) show CYi xchartf xchartfd idiv get show (:) show 12MXI ( g) show 10MXN 0 -0.5 rmoveto (P) show 0 0.5 rmoveto 12MXN (=) show /xchartNf xchartf 8 idiv def /xchartPf xchartf xchartf 8 idiv 8 mul sub def colormf 0 eq {%colormf=0,1 (1.0; ) show} {2.4 xchartPf 0.18 mul sub 2.4 div cvsshow2 (; ) show } ifelse %colormf=0,1 12MXI (g) show 10MXN 0 -0.5 rmoveto (N) show 0 0.5 rmoveto 12MXN (=) show colormf 0 eq {%colormf=0,1 (1.0; ) show} {1 2.4 xchartNf 0.18 mul sub 2.4 div div cvsshow2 } ifelse %colormf=0,1 190 1.8 moveto (http://130.149.60.45/~farbmetrik/OE62/OE62) show (F1P) show (X) show % (.PDF /.PS) show %(0) show %(N) show LEX$ show } if %xtextf=1 } def %END proc_framef(_DEH) %*********************************************************************************** %*********************************************************************************** %%EndProlog %%BeginPageSetup /#copies 1 def %A4quer 1.0 1.0 scale /pgsave save def %%EndPageSetup 0.0 MM 0.0 MM translate %Verschiebung nach oben und links fuer Belichter gsave /SS$ [(G) (E) (S) (F) (I) (J) (M)] def /SC$ [(N) (F) (S) (D) (T) (E) (C)] def /SX$ [(0) (1) (2) (3) (4) (5) (6) (7) (8) (9) (A) (B) (C) (D) (E) (F)] def /SY$ [(0) (1) (2) (3) (4) (5) (6) (7) (8) (9) (A) (B) (C) (D) (E) (F)] def % 0 1 2 3 4 % 5 6 7 8 9 /EX$ [(A.PDF /.PS) (B.BMP /.PS) (G.GIF /.PS) (H.HTM /.PS) (I.HTM /.PS) (J.JPE /.PS) (P.PDF /.PS) (T.TIF /.PS) (S.PDF /.PS) (L.PDF /.PS)] def /EY$ [(A.DAT) (B.DAT) (G.DAT) (H.DAT) (I.DAT) (J.DAT) (P.DAT) (T.DAT) (S.DAT) (L.DAT)] def %line 1190 ******************************************************************* /colormf10 01 def /colormf20 01 def /colormf20m colormf20 def /colormfd 1 def /xcolorf10 03 def /xcolorf20 03 def /xcolorf20m xcolorf20 def /xcolorfd 1 def /xchartf10 00 def /xchartf20 07 def /xchartf20m 07 def /xchartfd 1 def /pchartf10 00 def /pchartf20 02 def /pchartf20m 02 def /pchartfd 1 def /lanindf1 1 def /lanindf2 1 def /xcolorf0 02 def /lanindf lanindf1 def %no loops 0=German, 1=english %/colormf colormf10 def colormf10 colormfd colormf20 {/colormf exch def %BEG for colormf=colormf10,colormfd,colormf20 %/xcolorf xcolorf10 def xcolorf10 xcolorfd xcolorf20 {/xcolorf exch def %BEG for xcolorf=xcolorf10,xcolorfd,xcolorf20 %/xchartf xchartf10 def xchartf10 xchartfd xchartf20 {/xchartf exch def %BEG for xchartf=xchartf10,xchartfd,xchartf20 %/pchartf pchartf10 def pchartf10 pchartfd pchartf20 {/pchartf exch def %BEG for pchartf=pchartf10,pchartfd,pchartf20 /xchartj 3 def %sRGB, Lr=0% gsave /colorm colormf def /xcolor xcolorf def /xchart xchartf def /pchart pchartf def /GSS$ SS$ lanindf get def /GSC$ SC$ colormf get def /GSX$ SX$ xcolorf xcolorf 16 idiv 16 mul sub get def /GSY$ SY$ xchartf xchartf 16 idiv 16 mul sub get def %special /GEX$ EX$ 0 get def /GEY$ EY$ 0 get def %line 1229 %BEG INCLUDE FAD %BEG FAD-0001.TXT*************************************************2011-03-01 %BEG only for colormf=1 %default values /hei -1 def /heM -1 def colormf 1 eq {%colormf=1 RGB0_to_XYZ729 %transfers standard sRGB data (IEC 61966-2-1) to XYZ data for 9x9x9=729 colours %normalized XYZ data with Y=88.59 for display white, compare ISO 9241-306:2008. %for use of 1-minus relation (1MR) %for interpretation of device colours d as elemetary colours e xchartj_XYZ729_LAB729a LAB*He_Hs LAB729a_to_LAB*x50M hab*sM_to_hab*eM hab*sM_to_rgb*d361Mi LAB*x50M_to_LAB*x361Mi_rgb*x361Mi 1MR-0000F %uses subprocedure FF_LM_de_setrgbcolor %transfers device colours d to elementary colours e } if %colormf=1 %END only for colormf=1 %END FAD-0001.TXT********************************************2011-03-01 %END INCLUDE FAD 1 MM dup scale proc_framef %includes no showpage %showpage %proc_framef grestore gsave BeginEPSFF 0 MM 0 MM translate %%BeginDocument: %line 1269 %BEG INCLUDE TEST FILE at line 1270 %!PS-Adobe-3.0 EPSF-3.0 OE62.HTM %%BoundingBox: 14 08 828 584 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put } if [ /Title (PostScript pictures: www.ps.bam.de/OE62/OE62.HTM) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.445/~farbmetrik) /Keywords (image reproduction, colour devices) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark [ /View [ /Fit ] /DOCVIEW pdfmark %BEG OE62/OUTLIN10.PS Output Linearization (OL) olv*->olv'* 20110301 %Early Binding: needed for colour separation %/sgcmykcolor {setcmykcolor} bind def %/sggray {setgray} bind def %/sgrgbcolor {setrgbcolor} bind def %FILE PREPARED FOR MIXED MODE, e. g. input ORS18 and output TLS00 /IMES 0 def %0=LAB* used, no reflection factor necessary %/IMES 1 def /Yre 2.52 def %1=XYZ measurement and standard device reflection %/i*ptrsc 0 def %LAB* setcolor to cmy0* / 000n* setcmykcolor /i*ptrsc 1 def %LAB* setcolor to olv* setrgbcolor / w* setgray %/i*ptrsc 2 def %LAB* setcolor to cmy0* / nnn0* setcmykcolor %/i*ptrsc 3 def %LAB* setcolor to olv* / www* setrgbcolor %/i*ptrsc 4 def %LAB* setcolor to lab* setcolor %/i*ptrsc 5 def %LAB* setcolor to LAB* setcolor %/i*ptrsc 6 def %LAB* setcolor to 000n* setcmykcolor %/i*ptrsc 7 def %LAB* setcolor to w* setgray %/ISIN*ioG 0 def %default input for Offset Reflective System (ORS18/FRS09) %/ISOU*ioG 0 def %default output dto. /ISIN*ioG 1 def %input for Television Luminous System (TLS00) /ISOU*ioG 1 def %output dto. %/ISIN*ioG 2 def %input for Device Reflective measurement system (FRS09) %/ISOU*ioG 2 def %output dto. %/ISIN*ioG 3 def %input for Television Luminous Reflection System (TLS18) %/ISOU*ioG 3 def %output dto. %/ISIN*ioG 4 def %input for Natural Luminous System (NLS00) %/ISOU*ioG 4 def %output dto. %/ISIN*ioG 5 def %input for Natural Reflective System (NRS11) %/ISOU*ioG 5 def %output dto. %/ISIN*ioG 6 def %input for Standard Reflective System (CIE18) %/ISOU*ioG 6 def %output dto. %/ISIN*ioG 7 def %input for Standard Reflective System (TLS70) %/ISOU*ioG 7 def %output dto. /iLAB 0 def %/colormg 0 def %END OE62/OUTLIN10.PS Output Linearization (OL) olv*->olv'* 20110301 %BEG OE62/OUTLIN1X.PS 20110801 %EMPTY %END OE62/OUTLIN1X.PS 20110801 /BeginEPSF { % def % Prepare for EPS file /b4_Inc_state save def % Save state for cleanup /dict_count countdictstack def /op_count count 1 sub def % Count objects on op stack userdict begin % Make userdict current dict /showpage {} def 0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath /languagelevel where % If level not equal to 1 then {pop languagelevel where % If level not equal to 1 then 1 ne {false setstrokeadjust false setoverprint } if } if } bind def /EndEPSF { % def count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat % Clean up dict stack b4_Inc_state restore } bind def /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def /str {8 string } bind def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /TK {250 /Times-ISOL1 FS} bind def /TM {300 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {300 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {300 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {300 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def %ANFA CMYKDEF %CMYKDEA0 (A0=Standard-Drucker-CMYKDEF) 15.3.97 /tzac [1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.750 0.500 0.250 0.000] def /tzam [1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.750 0.500 0.250 0.000] def /tzay [1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.750 0.500 0.250 0.000] def /tzan [1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.750 0.500 0.250 0.000] def /tza0 [0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000] def /tza1 [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000] def %ENDE CMYKD /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /colrecfiLAB* %x y width heigth LAB* { setcolor rec fill} bind def /colrecstLAB* %x y width heigth LAB* { setcolor rec stroke} bind def /colrecficmyn* %x y width heigth cmy0* or 000n* { setcmykcolor rec fill} bind def /colrecstcmyn* %x y width heigth cmy0* or 000n* { setcmykcolor rec stroke} bind def /colrecfiw* %x y width heigth w* { setgray rec fill} bind def /colrecstw* %x y width heigth w* { setgray rec stroke} bind def /colrecfiolv* %x y width heigth olv* { setrgbcolor rec fill} bind def /colrecstolv* %x y width heigth olv* { setrgbcolor rec stroke} bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzoLAB* [53.34 72.46 50.66] def %Reproduction colours /tzlLAB* [84.93 -79.83 74.80] def %LAB* setcolor /tzvLAB* [32.20 24.88 -37.89] def /tzcLAB* [88.10 -44.88 -13.36] def /tzmLAB* [59.66 90.32 -19.65] def /tzyLAB* [93.76 -20.24 85.93] def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /tznLAB* [18.01 0.00 0.00] def %grey series /tzdLAB* [37.36 0.00 0.00] def %LAB* setcolor /tzzLAB* [56.71 0.00 0.00] def /tzhLAB* [76.06 0.00 0.00] def /tzwLAB* [95.41 0.00 0.00] def /tfn {0 setgray} bind def /tfw {1 setgray} bind def /A4quer {598 0 translate 90 rotate} def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %BEG 38 lines comment or new PS operators possible %01 %02 %03 %04 %05 %06 %07 %08 %09 %01 %02 %03 %04 %05 %06 %07 %08 %09 %01 %02 %03 %04 %05 %06 %07 %08 %09 %01 %02 %03 %04 %05 %06 %07 %08 %09 %01 %02 %END 38 lines comment or new PS operators possible %%EndProlog %%BeginPageSetup /#copies 1 def %A4quer 1.0 1.0 scale /pgsave save def %%EndPageSetup 0.0 MM 0.0 MM translate %Verschiebung nach oben und links fuer Belichter gsave /SS$ [(G) (E) (S) (F) (I) (J) (M)] def /SC$ [(N) (F) (S) (D) (T) (E) (C)] def /SX$ [(0) (1) (2) (3) (4) (5) (6) (7) (8) (9) (A) (B) (C) (D) (E) (F)] def /SY$ [(0) (1) (2) (3) (4) (5) (6) (7) (8) (9) (A) (B) (C) (D) (E) (F)] def % 0 1 2 3 4 5 % 6 7 8 /EX$ [(A.TXT /.PS) (B.BMP /.PS) (G.GIF /.PS) (H.HTM /.PS) (I.HTM /.PS) (J.JPE /.PS) (P.PDF /.PS) (T.TIF /.PS)] def /EY$ [(A.DAT) (B.DAT) (G.DAT) (H.DAT) (I.DAT) (J.DAT) (P.DAT) (T.DAT)] def /lanindg1 1 def /lanindg2 1 def /lanindg lanindg1 def /colormg10 0 def /colormg20 0 def /colormgd 1 def %only colormg=0 allowed /xcolorg10 2 def /xcolorg20 2 def /xcolorgd 1 def /xchartg10 0 def /xchartg20 0 def /xchartgd 1 def /pchartg10 0 def /pchartg20 2 def /pchartgd 1 def /colormi where {pop /colorm10 colormi10 def /colorm20 colormi20 def /colormd colormid def} {/colorm10 colormg10 def /colorm20 colormg20 def /colormd colormgd def} ifelse /xcolori where {pop /xcolor10 xcolori10 def /xcolor20 xcolori20 def /xcolord xcolorid def} {/xcolor10 xcolorg10 def /xcolor20 xcolorg20 def /xcolord xcolorgd def} ifelse /xcharti where {pop /xchart10 xcharti10 def /xchart20 xcharti20 def /xchartd xchartid def} {/xchart10 xchartg10 def /xchart20 xchartg20 def /xchartd xchartgd def} ifelse /pcharti where {pop /pchart10 pcharti10 def /pchart20 pcharti20 def /pchartd pchartid def} {/pchart10 pchartg10 def /pchart20 pchartg20 def /pchartd pchartgd def} ifelse /colormf where {pop /colorm10 colormf def /colorm20 colormf def /colormd colormfd def} if /xcolorf where {pop /xcolor10 xcolorf def /xcolor20 xcolorf def /xcolord xcolorfd def} if /xchartf where {pop /xchart10 xchartf def /xchart20 xchartf def /xchartgd xchartfd def /xchartd xchartfd def} if /pchartf where {pop /pchart10 pchartf def /pchart20 pchartf def /pchartgd pchartfd def /pchartd pchartfd def} if /colormg colorm10 def %colorm10 colormd colorm20 {/colormg exch def /xcolorg xcolor10 def %xcolor10 xcolord xcolor20 {/xcolorg exch def /xchartg xchart10 def %xchart10 xchartd xchart20 {/xchartg exch def /pchartg pchart10 def %pchart10 pchartd pchart20 {/pchartg exch def colormg 1 eq {/colormf where {pop 1MR-0000F} {1MR-0000I} ifelse} if /GSS$ SS$ lanindg get def /GSC$ SC$ colormg get def /GSX$ SX$ xcolorg get def /GSY$ SY$ pchartg get def /GEX$ EX$ 0 get def /GEY$ EY$ 0 get def %gsave BeginEPSF 28 MM 197 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto 1 1 scale -77 -91 translate %%BeginDocument: Bild 10 %line 329 %%EndDocument EndEPSF grestore gsave BeginEPSF 28 MM 152 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto 1 1 scale -77 -91 translate %%BeginDocument: Bild 11 %line 339 %!PS-Adobe-3.0 EPSF-3.0 OE620-1N, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE620-1N,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 86 MM 152 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 12 %line 349 %!PS-Adobe-3.0 EPSF-3.0 OE620-2, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE620-2,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 28 MM pchartg 2 eq {5 MM sub} if 108 MM pchartg 2 eq {30 MM sub} if translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 13 %line 359 %!PS-Adobe-3.0 EPSF-3.0 OE620-3N.EPS %%BoundingBox: 71 82 430 360 %START PDFDE011.EPS /pdfmark03 where {pop} {userdict /pdfmark03 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE40/) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark03 [ /View [ /FitB ] /DOCVIEW pdfmark03 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIKK {200 /TimesI-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIKK {200 /TimesBI-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 0 eq {%pchart=0 gsave /cvishow {cvi 6 string cvs show} def 72 90 translate 0.01 MM dup scale 15 setlinewidth tfnx* TM 0 -220 moveto (OE620-3N, ) show (Bild A1) showde (Picture A1) showen (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (Radialgitter ) showde (Radial grating ) showen (Radial grating ) showes (Radial grating ) showfr (Radial grating ) showit (Radial grating ) showjp (Radial grating ) showm TIM (N-W, W-N, N-Z, W-Z) show %TM %(und ) showde %(and ) showen %(and ) showes %(and ) showfr %(and ) showit %(and ) showjp %(and ) showm %TIM %(W-Z) show TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorl 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorl 1 eq {( w* setgray) show} if xcolorl 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorl 3 eq {( w* w* w* setrgbcolor) show} if TM /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfnx* 0 0 moveto 6000 0 rlineto 0 4000 rlineto -6000 0 rlineto closepath fill tfnx* 0 0 moveto 12000 0 rlineto 0 8400 rlineto -12000 0 rlineto closepath stroke %neuer Rastermittelpunkt und Nullpunkt 3000 2100 translate %Zeichnen der Rosette C, Radius 1,8 cm, Zentralgrau tfzx* newpath 0 0 0500 0 360 arc closepath stroke newpath 0 0 1000 0 360 arc closepath stroke newpath 0 0 1500 0 360 arc closepath stroke 0 10 350 {newpath 0 0 moveto 0 0 1800 4 -1 roll dup 5 add arc closepath fill} for tfwx* 25 setlinewidth newpath 0 0 0300 0 360 arc closepath stroke -3000 -2100 translate TBK tfwx* 1300 0100 moveto (Radialgitter (Siemensstern) ) showde (Radial grating (Siemens\255star) ) showen (Radial grating (Siemens\255star) ) showes (Radial grating (Siemens\255star) ) showfr (Radial grating (Siemens\255star) ) showit (Radial grating (Siemens\255star) ) showjp (Radial grating (Siemens\255star) ) showm TBIK (N-Z) show TBK TBM 3000 550 add 2100 moveto (10) show 3000 1050 add 2100 moveto (20) show 3000 1550 add 2100 moveto (30) show grestore gsave 72 214 translate 0.01 MM dup scale 15 setlinewidth /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfnx* 0 0 moveto 6000 0 rlineto 0 4000 rlineto -6000 0 rlineto closepath fill tfnx* 0 0 moveto 6000 0 rlineto 0 4000 rlineto -6000 0 rlineto closepath stroke %neuer Rastermittelpunkt und Nullpunkt 3000 2100 translate %Zeichnen der Rosette C, Radius 1,8 cm, Zentralgrau tfwx* newpath 0 0 0500 0 360 arc closepath stroke newpath 0 0 1000 0 360 arc closepath stroke newpath 0 0 1500 0 360 arc closepath stroke 0 10 350 {newpath 0 0 moveto 0 0 1800 4 -1 roll dup 5 add arc closepath fill} for tfnx* 25 setlinewidth newpath 0 0 0300 0 360 arc closepath stroke -3000 -2100 translate TBK tfwx* 1300 0100 moveto (Radialgitter (Siemensstern) ) showde (Radial grating (Siemens\255star) ) showen (Radial grating (Siemens\255star) ) showes (Radial grating (Siemens\255star) ) showfr (Radial grating (Siemens\255star) ) showit (Radial grating (Siemens\255star) ) showjp (Radial grating (Siemens\255star) ) showm TBIK (N-W) show TBK TBM tfzx* 3000 550 add 2100 moveto (10) show 3000 1050 add 2100 moveto (20) show 3000 1550 add 2100 moveto (30) show grestore gsave 240 214 translate 0.01 MM dup scale 15 setlinewidth /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if %neuer Rastermittelpunkt und Nullpunkt 3000 2100 translate %Zeichnen der Rosette C, Radius 1,8 cm, Zentralgrau tfnx* newpath 0 0 0500 0 360 arc closepath stroke newpath 0 0 1000 0 360 arc closepath stroke newpath 0 0 1500 0 360 arc closepath stroke 0 10 350 {newpath 0 0 moveto 0 0 1800 4 -1 roll dup 5 add arc closepath fill} for tfwx* 25 setlinewidth newpath 0 0 0300 0 360 arc closepath stroke -3000 -2100 translate TBK tfnx* 1300 0100 moveto (Radialgitter (Siemensstern) ) showde (Radial grating (Siemens\255star) ) showen (Radial grating (Siemens\255star) ) showes (Radial grating (Siemens\255star) ) showfr (Radial grating (Siemens\255star) ) showit (Radial grating (Siemens\255star) ) showjp (Radial grating (Siemens\255star) ) showm TBIK (W-N) show TBK TBM tfzx* 3000 550 add 2100 moveto (10) show 3000 1050 add 2100 moveto (20) show 3000 1550 add 2100 moveto (30) show grestore gsave 240 90 translate 0.01 MM dup scale 15 setlinewidth /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if %tfwx* %0 0 moveto 6000 0 rlineto 0 4000 rlineto % -6000 0 rlineto closepath fill %neuer Rastermittelpunkt und Nullpunkt 3000 2100 translate %Zeichnen der Rosette C, Radius 1,8 cm, Zentralgrau tfzx* newpath 0 0 0500 0 360 arc closepath stroke newpath 0 0 1000 0 360 arc closepath stroke newpath 0 0 1500 0 360 arc closepath stroke 0 10 350 {newpath 0 0 moveto 0 0 1800 4 -1 roll dup 5 add arc closepath fill} for tfnx* 25 setlinewidth newpath 0 0 0300 0 360 arc closepath stroke -3000 -2100 translate TBK tfnx* 1300 0100 moveto (Radialgitter (Siemensstern) ) showde (Radial grating (Siemens\255star) ) showen (Radial grating (Siemens\255star) ) showes (Radial grating (Siemens\255star) ) showfr (Radial grating (Siemens\255star) ) showit (Radial grating (Siemens\255star) ) showjp (Radial grating (Siemens\255star) ) showm TBIK (W-Z) show TBK TBM 3000 550 add 2100 moveto (10) show 3000 1050 add 2100 moveto (20) show 3000 1550 add 2100 moveto (30) show grestore } if %pchartl=0 pchartl 1 eq {%pchartl=1 gsave /nshow {iyd /Times-ISOL1 FS show} def /nishow {-30 -50 rmoveto iyd 50 sub /Times-ISOL1 FS show 30 50 rmoveto} def /nishow0 {-30 -50 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 50 rmoveto} def /nishowx {-00 -50 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 50 rmoveto} def /kshow {iyd /TimesI-ISOL1 FS show} def /bshow {iyd /TimesB-ISOL1 FS show} def /jshow {iyd /TimesBI-ISOL1 FS show} def /ishow {-30 -50 rmoveto iyd 50 sub /TimesB-ISOL1 FS show 30 50 rmoveto} def /ishow0 {-30 -50 rmoveto iyd 50 sub /TimesB-ISOL1 FS show 00 50 rmoveto} def /eshow { 00 110 rmoveto iyd 50 sub /TimesB-ISOL1 FS show 00 -110 rmoveto} def /neshow { 00 110 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 -110 rmoveto} def /neshowx { 00 70 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 -70 rmoveto} def /nshowde {0 lanind eq {nshow} {pop} ifelse} bind def /nshowen {1 lanind eq {nshow} {pop} ifelse} bind def /nishowde {0 lanind eq {nishow} {pop} ifelse} bind def /nishowen {1 lanind eq {nishow} {pop} ifelse} bind def /kshowde {0 lanind eq {kshow} {pop} ifelse} bind def /kshowen {1 lanind eq {kshow} {pop} ifelse} bind def /bshowde {0 lanind eq {bshow} {pop} ifelse} bind def /bshowen {1 lanind eq {bshow} {pop} ifelse} bind def /jshowde {0 lanind eq {jshow} {pop} ifelse} bind def /jshowen {1 lanind eq {jshow} {pop} ifelse} bind def /ishowde {0 lanind eq {ishow} {pop} ifelse} bind def /ishowen {1 lanind eq {ishow} {pop} ifelse} bind def /cvishow {cvi 6 string cvs show} def 72 90 translate 0.02 MM dup scale 15 setlinewidth /iyd 150 def %text size, line difference 0 setgray 0 -120 moveto (Part 1) nshowen (Teil 1) nshowde 4500 -120 moveto (OE620-3N) nshow (\255) show colorml cvishow xcolorl cvishow pchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow %(: ) show 1 setgray 0 0 moveto 6000 0 rlineto 0 4200 rlineto -6000 0 rlineto closepath fill 0 setgray 0 0 moveto 6000 0 rlineto 0 4200 rlineto -6000 0 rlineto closepath stroke /ix1 50 def %1 /ix2 1600 def %2 /ix3 5100 def %3 /iyd 175 def %line difference /y00 3850 def /iyt0 3650 def %cero line below top /iy00 iyt0 def /iy10 iyt0 iyd 1 mul sub def /iy20 iyt0 iyd 2 mul sub def /iy30 iyt0 iyd 3 mul sub def /iyt1 2950 def /iy11 iyt1 iyd 0 mul sub def /iy21 iyt1 iyd 1 mul sub def /iy31 iyt1 iyd 2 mul sub def /iyt2 2400 def /iy12 iyt2 iyd 0 mul sub def /iy22 iyt2 iyd 1 mul sub def /iy32 iyt2 iyd 2 mul sub def /iyt3 1850 def /iy13 iyt3 iyd 0 mul sub def /iy23 iyt3 iyd 1 mul sub def /iy33 iyt3 iyd 2 mul sub def /iyt4 1300 def %cero line below top /iy04 iyt4 def /iy14 iyt4 iyd 1 mul sub def /iy24 iyt4 iyd 2 mul sub def /iy34 iyt4 iyd 3 mul sub def /iyt5 0600 def %cero line below top /iy05 iyt5 def /iy15 iyt5 iyd 1 mul sub def /iy25 iyt5 iyd 2 mul sub def /iy35 iyt5 iyd 3 mul sub def ix1 y00 200 add moveto (Test for the best visual linearized output of Picture A7) bshowen (Pr\374fung f\374r beste visuelle linearisierte Ausgabe von Bild A7) bshowde (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix3 y00 200 add moveto (Yes/No) bshowen (Ja/Nein) showde ix1 y00 moveto (Output test with the computer display ( ) or the external display ( )) bshowen (Ausgabe\255Pr\374fung mit dem Rechner\255Display ( ) oder dem externen Display ( )) bshowde ix1 iy00 moveto (Test of the radial grating according to picture A1) bshowen (Pr\374fung der Radialgitter nach Bld A1) bshowde (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix1 iy10 moveto (N-W) jshow (\255radial grating:) nshowen (\255Radiales Gitter:) nshowde ix2 iy10 moveto (Is the resolution diameter < 6 mm?) showen (Ist der Aufl\366sungsdurchmesser < 6 mm?) showde ix3 iy10 moveto (Yes/No) bshowen (Ja/Nein) showde ix2 iy20 moveto (Test with magnifying glass (e.g. 6x)) nshowen (Pr\374fung mit Vergr\366\337erungsglas (z. B. 6x)) nshowde ix2 iy30 moveto (resolution diameter) showen (Aufl\366sungsdurchmesser) showde ix3 iy30 moveto (........ mm) bshow ix1 iy11 moveto (W-N) jshow (\255radial grating:) nshowen (\255Radiales Gitter:) nshowde ix2 iy11 moveto (Is the resolution diameter < 6 mm?) showen (Ist der Aufl\366sungsdurchmesser < 6 mm?) showde ix3 iy11 moveto (Yes/No) bshowen (Ja/Nein) showde ix2 iy21 moveto (Test with magnifying glass (e.g. 6x)) nshowen (Pr\374fung mit Vergr\366\337erungsglas (z. B. 6x)) nshowde ix2 iy31 moveto (resolution diameter) showen (Aufl\366sungsdurchmesser) showde ix3 iy31 moveto (........ mm) bshow ix1 iy12 moveto (N-Z) jshow (\255radial grating:) nshowen (\255Radiales Gitter:) nshowde ix2 iy12 moveto (Is the resolution diameter < 6 mm?) showen (Ist der Aufl\366sungsdurchmesser < 6 mm?) showde ix3 iy12 moveto (Yes/No) bshowen (Ja/Nein) showde ix2 iy22 moveto (Test with magnifying glass (e.g. 6x)) nshowen (Pr\374fung mit Vergr\366\337erungsglas (z. B. 6x)) nshowde ix2 iy32 moveto (resolution diameter) showen (Aufloesungsdurchmesser) showde ix3 iy32 moveto (........ mm) bshow ix1 iy13 moveto (W-Z) jshow (\255radial grating:) nshowen (\255Radiales Gitter:) nshowde ix2 iy13 moveto (Is the resolution diameter < 6 mm?) showen (Ist der Aufl\366sungsdurchmesser < 6 mm?) showde ix3 iy13 moveto (Yes/No) bshowen (Ja/Nein) showde ix2 iy23 moveto (Test with magnifying glass (e.g. 6x)) nshowen (Pr\374fung mit Vergr\366\337erungsglas (z. B. 6x)) nshowde ix2 iy33 moveto (resolution diameter) showen (Aufl\366sungsdurchmesser) showde ix3 iy33 moveto (........ mm) bshow ix1 iy04 moveto (Test of 5 visual equidistant ) bshowen (L*) jshow (\255grey steps according to picture A2) bshowen (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix1 iy14 moveto (Are the 5 steps on the upper rows distinguishable?) nshowen (Sind die 5 Stufen in der oberen Reihe unterscheidbar?) nshowde ix3 iy14 moveto (Yes/No) bshowen (Ja/Nein) showde ix1 iy24 moveto (If No: How many steps can be distinguished?) nshowen (Wenn Nein: Wieviel Stufen sind unterscheibar?) nshowde ix2 iy34 moveto (of the given 5 steps:) showen (von den gegebenen 5 Stufen:) showde ix3 iy34 moveto (..... Steps) bshowen (.... Stufen) bshowde ix1 iy05 moveto (Test of 16 visual equidistant ) bshowen (L*) jshow (\255grey steps according to picture A3) bshowen (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix1 iy15 moveto (Are the 16 steps on the upper rows distinguishable?) nshowen (Sind die 16 Stufen in der oberen Reihe unterscheidbar?) nshowde ix3 iy15 moveto (Yes/No) bshowen (Ja/Nein) showde ix1 iy25 moveto (If No: How many steps can be distinguished?) nshowen (Wenn Nein: Wieviel Stufen sind unterscheibar?) nshowde ix2 iy35 moveto (of the given 16 steps:) showen (von den gegebenen 16 Stufen:) showde ix3 iy35 moveto (.... Steps) bshowen (.... Stufen) bshowde grestore } if %pchartl=1 pchartl 2 eq {%pchartl=2 gsave /TMS {100 /Times-Roman FS} bind def /TGS {150 /Times-Roman FS} bind def /nshow {110 /Times-Roman FS show} def /bshow {110 /Times-Bold FS show} def /gshow {150 /Times-Bold FS show} def /bishow {110 /Times-BoldItalic FS show} def /ishow { 90 /Times-Bold FS show} def %/sshow {110 /Symbol FS show} def /sshow {120 /Symbol FS show} def /nshowde {0 lanind eq {nshow} {pop} ifelse} bind def /bshowde {0 lanind eq {bshow} {pop} ifelse} bind def /gshowde {0 lanind eq {gshow} {pop} ifelse} bind def /bishowde {0 lanind eq {bishow} {pop} ifelse} bind def /ishowde {0 lanind eq {ishow} {pop} ifelse} bind def /sshowde {0 lanind eq {sshow} {pop} ifelse} bind def /nshowen {1 lanind eq {nshow} {pop} ifelse} bind def /bshowen {1 lanind eq {bshow} {pop} ifelse} bind def /gshowen {1 lanind eq {gshow} {pop} ifelse} bind def /bishowen {1 lanind eq {bishow} {pop} ifelse} bind def /ishowen {1 lanind eq {ishow} {pop} ifelse} bind def /sshowen {1 lanind eq {sshow} {pop} ifelse} bind def /CMeasSxl (Measure unknown) def /CDeviceSxl (Device unknown) def /CDateSxl (Date unknown) def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /xchartn xchartl xchartd idiv def colorml 0 eq {/ilx 0 def } {%colorml=1 xchartn 2 le {/ilx xchartn def} if xchartn 3 eq {/ilx 4 def} if xchartn 4 eq {/ilx 8 def} if xchartn 5 eq {/ilx 16 def} if xchartn 6 eq {/ilx 32 def} if xchartn 7 eq {/ilx 64 def} if } ifelse /Xnref 0.63 ilx mul 0.9505 mul def /Ynref 0.63 ilx mul def /Znref 0.63 ilx mul 1.0890 mul def /XQ Xnref 95.05 div def /YQ Ynref 100.00 div def /ZQ Znref 108.90 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if /L*ref YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse def /a*ref XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul def /b*ref YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul def /L*N L*ref def /L*W 95.41 def /L*i 21 array def %different for xchartl=0,7 /a*i 21 array def /b*i 21 array def /l*i 21 array def /Yi 21 array def %equal distance between L*N and L*W 0 1 20 {/i exch def %steps from black to white i 15 le {/i0 0 def /istep 15 def} {/i0 16 def /istep 4 def} ifelse L*i i L*N L*W L*N sub i i0 sub istep div mul add put a*i i 0 put b*i i 0 put l*i i L*i i get L*N sub L*W L*N sub div put /Y* {L*i i get 16 add 116 div} bind def Yi i Y* DecodeXYZ* 100.00 mul put } for /cvishow {cvi 6 string cvs show} def 72 90 translate 0.023 MM dup scale 15 setlinewidth 0 setgray 100 /Times-ISOL1 FS 100 -90 moveto (OE620-3N) show (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (File: ) show CMeasSxl show (; ) show (Device: ) show CDeviceSxl show (; ) show (Date: ) show CDateSxl show /cvishow {0.5 add cvi %new980310 dup 0 ge {( ) show} if dup abs 10 lt {( ) show} if 10 string cvs show} def /cvsshow0 {10 mul 0.5 add cvi 0.1 mul 10 string cvs show} def /cvsshow1 {10 mul 0.5 add cvi 0.1 mul %new980310 dup 0 ge {( ) show} if dup abs 10 lt {( ) show} if 10 string cvs show} def /cvsshow2 {100 mul 0.5 add cvi 0.01 mul %new980310 dup 0 ge {( ) show} if dup abs 10 lt {( ) show} if 10 string cvs show} def /cvsshow3 {1000 mul 0.5 add cvi 0.001 mul 10 string cvs show} def 1 setgray 20 20 moveto 5400 0 rlineto 0 4000 rlineto %relatives Bildfeld 54 x 40mm -5400 0 rlineto closepath fill 0 setgray 20 20 moveto 5400 0 rlineto 0 4000 rlineto %relatives Bildfeld 54 x 40mm -5400 0 rlineto closepath stroke /x0 0 def /y0 3700 def /yd 170 def /xpos 18 array def /xtex 18 array def /xpos [ 10 150 450 750 %i, LAB*refi(ikor) 1000 %d 1350 1650 1950 %LAB*outi(ikor) 2300 2600 2900 %dLABTO(ikor,ikor), dE* 3150 3500 3850 % 4200 4500 4800 5100] def % /xtex [(i) (LAB*ref) ( ) ( ) (l*out) (LAB*out) ( ) ( ) (LAB*out/c-ref) ( ) ( ) ( E*) () ( ) ( ) ( ) ( ) ( )] def 0 1 16 { /j exch def xpos j get x0 add 100 add y0 yd add moveto xtex j get show } for %j=0,1,...,16 colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def } if %STOPA /L*gi 21 array def %different for xchartl=0,7 /a*gi 21 array def /b*gi 21 array def /l*gi 21 array def /Ygi 21 array def %distance between L*N and L*W using gamma 0 1 20 {/i exch def %steps from black to white l*gi i l*i i get colorm 1 eq {gammal exp} if put L*gi i L*W L*N sub l*gi i get mul L*N add put a*gi i 0 put b*gi i 0 put /Y* {L*gi i get 16 add 116 div} bind def Ygi i Y* DecodeXYZ* 100.00 mul put } for %STOP2 100 /Symbol FS xpos 10 get x0 add 350 add y0 yd add moveto (D) show 100 /Times-Roman FS /sumdL* 0 def /sumda* 0 def /sumdb* 0 def /sumdE* 0 def /sumdNL* 0 def /sumdNa* 0 def /sumdNb* 0 def /sumdNE* 0 def /sumdBL* 0 def /sumdBa* 0 def /sumdBb* 0 def /sumdBE* 0 def /sumdRL* 0 def /sumdFL* 0 def 0 1 20 {/i exch def %21 colours %STOP3 0 1 12 {/j exch def %17 Positionen x0 xpos j get add y0 yd i mul sub moveto j 0 eq {i 1 add cvishow } if j 1 eq {L*i i get cvsshow2} if j 2 eq {a*i i get cvsshow2} if j 3 eq {b*i i get cvsshow2} if % LABO1NJ 1 eq { %Differenzen oder Messwerte falls vorh. j 4 eq {l*gi i get cvsshow2} if j 5 eq {L*gi i get cvsshow2} if j 6 eq {a*gi i get cvsshow2} if j 7 eq {b*gi i get cvsshow2} if %STOP4 j 8 eq {L*gi i get dup L*i i get sub cvsshow2 L*i i get sub abs /sumdL* exch sumdL* add def } if %j=8 j 9 eq {a*gi i get dup a*i i get sub cvsshow2 a*i i get sub abs /sumda* exch sumda* add def } if %j=9 j 10 eq {b*gi i get dup b*i i get sub cvsshow2 b*i i get sub abs /sumdb* exch sumdb* add def } if %j=10 j 11 eq {L*gi i get L*i i get sub dup mul a*gi i get a*i i get sub dup mul add b*gi i get b*i i get sub dup mul add 0.0001 add sqrt dup cvsshow2 /sumdE* exch sumdE* add def } if %j=11 i 15 lt {%16 Stufen j 11 eq {L*gi i get L*i i get sub dup mul a*gi i get a*i i get sub dup mul add b*gi i get b*i i get sub dup mul add 0.0001 add sqrt /sumdBE* exch sumdBE* add def } if %j=11 } if %16 Stufen i 16 ge {%5 Unbunt=Noir j 11 eq {L*gi i get L*i i get sub dup mul a*gi i get a*i i get sub dup mul add b*gi i get b*i i get sub dup mul add 0.0001 add sqrt /sumdNE* exch sumdNE* add def } if %j=11 } if %5 Unbunt=Noir % %j 11 eq { %j=10 Regularity %i 16 eq {/L1 LAB*ouci i1 get def} if %i=16 %i 17 eq {/L2 LAB*ouci i1 get def} if %i=17 %i 18 eq {/L3 LAB*ouci i1 get def} if %i=18 %i 19 eq {/L4 LAB*ouci i1 get def} if %i=19 %i 20 eq {/L5 LAB*ouci i1 get def} if %i=20 % } if %j=10 Regularity 110 /Times-Bold FS 12 j eq {%j=12 i 00 eq {(Kennzeichnung nach) gshowde (Specification according to) gshowen x0 xpos j get add y0 yd add moveto (Start-Ausgabe S1) gshowde (Start output S1) gshowen} if %i=0 i 01 eq {(ISO/IEC 15775 Anhang G) gshowde (ISO/IEC 15775 Annex G) gshowen} if %i=1 i 02 eq {(und DIN 33866-1 Anhang G) gshowde (and DIN 33866-1 Annex G) gshowen} if %i=2 % i 03 eq {(nur ) bshowde % (only ) bshowen % (L*-) bishow % (Helligkeit benutzt) bshowde (lightness used) bshowen} if %i=2 % i 04 eq {(D) sshow (L*) bishow % ( = ) bshow % LABREFW 1 get cvsshow2 ( - ) show LABREFX 1 get cvsshow2 % } if %i=2 % i 05 eq {(Gleichmaessigkeit) bshowde (Regularity) bshowen} if %i=5 % i 08 eq {(Helligkeitsumfang rel. zu Offset) bshowde % (Lightness gamut rel. to offset) bshowen} if %i=8 % i 11 eq {(D) sshow (L*-) bishow (Grauvariation) bshowde (gray variation) bshowen} if %i=11 % i 12 eq {(v*) bishow ( = ) bshow outL*var cvsshow3} if i 14 eq {(Mittlerer Helligkeitsabstand (16 Stufen)) bshowde (Mean lightness difference (16 steps)) bshowen } if %i=14 i 15 eq {(D) sshow (E*) bishow 0 -20 rmoveto (CIELAB) ishow 0 20 rmoveto ( = ) bshow sumdBE* 16 div cvsshow1 } if %i=15 i 19 eq {(Mittlerer Helligkeitsabstand (5 Stufen)) bshowde (Mean lightness difference (5 steps)) bshowen } if i%=18 i 20 eq {(D) sshow (L*) bishow 0 -20 rmoveto (CIELAB) ishow 0 20 rmoveto ( = ) bshow sumdNE* 05 div cvsshow1 } if %i=20 } if %j=12 TMS } for %j=0,12 } for %i=0,20 110 /Times-Bold FS /j 1 def x0 xpos j get add 1000 add y0 yd 21 mul sub moveto (Mittlerer Farbwiedergabe-Index:) bshowde (Mean colour reproduction index:) bshowen /j 11 def x0 xpos j get add y0 yd 21 mul sub moveto (R*) bishow 0 -20 rmoveto (ab,m) ishow 0 20 rmoveto ( = ) bshow 100 sumdBE* 21 div sumdNE* 21 div add 4.6 mul sub cvishow grestore } if %pchartl=2 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,1 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 86 MM 108 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 14 %line 369 %!PS-Adobe-3.0 EPSF-3.0 OE620-4, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE620-4,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 28 MM 064 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 15 %line 379 %!PS-Adobe-3.0 EPSF-3.0 OE620-5N.EPS %%BoundingBox: 71 82 415 206 %START PDFDE011.EPS /pdfmark05 where {pop} {userdict /pdfmark05 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE62) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark05 [ /View [ /FitB ] /DOCVIEW pdfmark05 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIK {200 /TimesI-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIKK {200 /TimesBI-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 0 eq {%pchartl=0 /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /xchartn xchartl xchartd idiv def /ilx 0 def colorml 0 eq {/ilx 0 def } {%colorml=1 xchartn 2 le {/ilx xchartn def} if xchartn 3 eq {/ilx 4 def} if xchartn 4 eq {/ilx 8 def} if xchartn 5 eq {/ilx 16 def} if xchartn 6 eq {/ilx 32 def} if xchartn 7 eq {/ilx 64 def} if } ifelse /Xnref 0.63 ilx mul 0.9505 mul def /Ynref 0.63 ilx mul def /Znref 0.63 ilx mul 1.0890 mul def /XQ Xnref 95.05 div def /YQ Ynref 100.00 div def /ZQ Znref 108.90 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if /L*ref YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse def /a*ref XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul def /b*ref YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul def /L*N L*ref def /L*W 95.41 def /L*i 21 array def %different for xchartl=0,7 /Yi 21 array def %equal distance between L*N and L*W 0 1 20 {/i exch def %steps from black to white i 15 le {/i0 0 def /istep 15 def} {/i0 16 def /istep 4 def} ifelse L*i i L*N L*W L*N sub i i0 sub istep div mul add put /Y* {L*i i get 16 add 116 div} bind def Yi i Y* DecodeXYZ* 100.00 mul put } for 72 90 translate 0.01 MM dup scale 15 setlinewidth tfnx* TM 0 -220 moveto (OE620-5N, ) show (Bild A2) showde (Picture A2) showen (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (5 gleichabst\344ndige ) showde (5 equidistant ) showen (5 equidistant ) showes (5 equidistant ) showfr (5 equidistant ) showit (5 equidistant ) showjp (5 equidistant ) showm TIM (L*) show TM (\255Graustufen) showde (\255grey steps) showen (\255grey steps) showes (\255grey steps) showfr (\255grey steps) showit (\255grey steps) showjp (\255grey steps) showm TIM (+N0+W1) show TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorl 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorl 1 eq {( w* setgray) show} if xcolorl 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorl 3 eq {( w* w* w* setrgbcolor) show} if TM /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfzx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath fill tfnx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath stroke %%%%%%%%%%% oberer Schriftzug %%%%%%%%%%%%%%%% tfwx* 30 3650 moveto TBIG (L*/Y) show -50 -50 rmoveto TBK (intended) show 50 50 rmoveto 100 3400 moveto TBIK ((absolut)) showde ((absolute)) showen ((absolute)) showes ((absolute)) showfr ((absolute)) showit ((absolute)) showjp ((absolute)) showm 0 1150 moveto TBIG (w*=l*) show -200 -150 rmoveto TBIK (CIELAB, r) show 0 780 moveto TBIK ((relativ)) showde ((relative)) showen ((relative)) showes ((relative)) showfr ((relative)) showit ((relative)) showjp ((relative)) showm 100 1900 moveto TBIG (Nr. und) showde (No. and) showen (No. and) showes (No. and) showfr (No. and) showit (No. and) showjp (No. and) showm 100 1600 moveto TBIG (Hex\255Code) showde (Hex code) showen (Hex code) showes (Hex code) showfr (Hex code) showit (Hex code) showjp (Hex code) showm 100 3000 moveto xcolorl 0 eq {TBIG (0 0 0 n*) show} if xcolorl 1 eq {TBIG (w*) show} if xcolorl 2 eq {TBIG (n* n* n* 0) show} if xcolorl 3 eq {TBIG (w* w* w*) show} if 100 2720 moveto xcolorl 0 eq {TBIG (setcmyk) show} if xcolorl 1 eq {TBIG (setgray) show} if xcolorl 2 eq {TBIG (setcmyk) show} if xcolorl 3 eq {TBIG (setrgb) show} if %gamma output 100 2350 moveto TBIG (g) show colorml 0 eq {%colorml=0 TBM 0 -150 rmoveto (P) show 0 150 rmoveto TBG (=1.00) show} {%colorml=1 TBM 0 -150 rmoveto xchartl 7 le {(P) show}{(N) show} ifelse 0 150 rmoveto TBG (=) show gammal cvsshow2 } ifelse 550 400 moveto TBIG (w*) show -10 -50 rmoveto TBK (intended) show 550 80 moveto TBIG (w*) show -10 -50 rmoveto TBK (out) show %(Y) show %-50 -50 rmoveto TBK (t) show 0 50 rmoveto %TBIM ( / Y) show %-20 -50 rmoveto TBK (tmax) show 0 50 rmoveto 1900 600 translate %untere Reihe um +200, +200 verschoben bei dx=1000 von 1400 tfnx* /ntu [(0,000) (0,067) (0,133) (0,200) (0,267) (0,333) (0,400) (0,467) (0,533) (0,600) (0,667) (0,733) (0,800) (0,867) (0,933) (1,000) (0,000) (0,250) (0,500) (0,750) (1,000)] def /nts [ 0.000 0.067 0.133 0.200 0.267 0.333 0.400 0.467 0.533 0.600 0.667 0.733 0.800 0.867 0.933 1.000 0.000 0.250 0.500 0.750 1.000 ] def /n* [(00;F) (01;E) (02;D) (03;C) (04;B) (05;A) (06;9) (07;8) (08;7) (09;6) (10;5) (11;4) (12;3) (13;2) (14;1) (15;0) (00;4) (01;3) (02;2) (03:1) (04;0)] def TBM tfwx* /iy0 0 def /i0 16 def /i1 20 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 i i0 sub 1400 mul def ix0 200 add iy0 250 sub moveto ntu i get show ix0 200 add iy0 520 sub moveto nts i get colorml 1 eq {gammal exp} if cvsshow3 } for %i=i0,i1 /iy0 3050 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 300 i i0 sub 1400 mul add def ix0 400 sub iy0 moveto L*i i get cvsshow1 (/) show Yi i get cvsshow1 } for %i=i0,i1 TBG tfnx* /iy0 0 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 400 i i0 sub 1400 mul add def ix0 300 sub iy0 1150 add moveto n* i get show } for %i=i0,i1 TBM tfwx* /iy0 0 def /j0 0 def /j1 6 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul def ix0 100 add iy0 250 sub moveto 5 j eq {-150 0 rmoveto TBIM (N) show 0 -50 rmoveto TBIK (0) show 50 50 rmoveto TBIM ((min.)) show 100 0 rmoveto } if 6 j eq {-150 0 rmoveto TBIM (W) show 0 -50 rmoveto TBIK (1) show 50 50 rmoveto TBIM ((max.)) show 100 0 rmoveto } if } for %j=j0,j1 TBM tfwx* /iy0 3050 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 100 j 1400 mul add def ix0 200 sub iy0 moveto 5 j eq {-150 0 rmoveto TBIM (N) show 0 -50 rmoveto TBIK (0) show 50 50 rmoveto TBIM ((min.)) show 100 0 rmoveto} if 6 j eq {-150 0 rmoveto TBIM (W) show 0 -50 rmoveto TBIK (1) show 50 50 rmoveto TBIM ((max.)) show 100 0 rmoveto} if } for %j=j0,j1 TBG tfnx* /iy0 0 def /s 1000 def /j0 0 def /j1 6 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul def ix0 iy0 s s j 04 le {/tfwj nts 16 j add get def} if %colorml 1 eq {gammal exp} if def} if j 05 eq {/tfwj nts 16 get def} if %colorml 1 eq {gammal exp} if def} if j 06 eq {/tfwj nts 20 get def} if %colorml 1 eq {gammal exp} if def} if /tfnj 1 tfwj sub def xcolorl 0 eq {0 0 0 tfnj colrecfix*} if xcolorl 1 eq {tfwj colrecfix*} if xcolorl 2 eq {tfnj dup dup 0 colrecfix*} if xcolorl 3 eq {tfwj dup dup colrecfix*} if j 2 eq {%white arround mean grey ix0 iy0 s s xcolorl 0 eq {0 0 0 0 colrecstx*} if xcolorl 1 eq {1 colrecstx*} if xcolorl 2 eq {1 1 1 0 colrecstx*} if xcolorl 3 eq {1 1 1 colrecstx*} if } if %white arround mean grey } for %j=j0,j1 TBG tfnx* /iy0 1500 def /s 1400 def /j0 0 def /j1 6 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul 200 sub def ix0 iy0 s s j 04 le {/tfwj nts 16 j add get def} if %colorml 1 eq {gammal exp} if def} if j 05 eq {/tfwj nts 16 get def} if %colorml 1 eq {gammal exp} if def} if j 06 eq {/tfwj nts 20 get def} if %colorml 1 eq {gammal exp} if def} if /tfnj 1 tfwj sub def xcolorl 0 eq {0 0 0 tfnj colrecfix*} if xcolorl 1 eq {tfwj colrecfix*} if xcolorl 2 eq {tfnj dup dup 0 colrecfix*} if xcolorl 3 eq {tfwj dup dup colrecfix*} if j 2 eq {%white arround mean grey ix0 iy0 s s xcolorl 0 eq {0 0 0 0 colrecstx*} if xcolorl 1 eq {1 colrecstx*} if xcolorl 2 eq {1 1 1 0 colrecstx*} if xcolorl 3 eq {1 1 1 colrecstx*} if } if %white arround mean grey } for %j=j0,j1 -1900 -600 translate } if %pchartl=0 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,1 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 86 MM 064 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 16 %line 389 %!PS-Adobe-3.0 EPSF-3.0 OE620-6, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE620-6,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 28 MM 020 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 17 %line 399 %!PS-Adobe-3.0 EPSF-3.0 OE620-7N.EPS %%BoundingBox: 70 82 770 330 %START PDFDE011.EPS /pdfmark07 where {pop} {userdict /pdfmark07 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE40/) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark07 [ /View [ /FitB ] /DOCVIEW pdfmark07 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIKK {200 /TimesI-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIK {200 /TimesBI-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 0 eq {%pchartl=0 gsave /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /xchartn xchartl xchartd idiv def /ilx 0 def colorml 0 eq {/ilx 0 def } {%colorml=1 xchartn 2 le {/ilx xchartn def} if xchartn 3 eq {/ilx 4 def} if xchartn 4 eq {/ilx 8 def} if xchartn 5 eq {/ilx 16 def} if xchartn 6 eq {/ilx 32 def} if xchartn 7 eq {/ilx 64 def} if } ifelse /Xnref 0.63 ilx mul 0.9505 mul def /Ynref 0.63 ilx mul def /Znref 0.63 ilx mul 1.0890 mul def /XQ Xnref 95.05 div def /YQ Ynref 100.00 div def /ZQ Znref 108.90 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if /L*ref YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse def /a*ref XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul def /b*ref YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul def /L*N L*ref def /L*W 95.41 def /L*i 21 array def %different for xchartl=0,7 /Yi 21 array def %equal distance between L*N and L*W 0 1 20 {/i exch def %steps from black to white i 15 le {/i0 0 def /istep 15 def} {/i0 16 def /istep 4 def} ifelse L*i i L*N L*W L*N sub i i0 sub istep div mul add put /Y* {L*i i get 16 add 116 div} bind def Yi i Y* DecodeXYZ* 100.00 mul put } for 72 90 translate 0.01 MM dup scale 15 setlinewidth tfnx* TM 0 -220 moveto (OE620-7N, ) show (Bild A3) showde (Picture A3) showen (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (16 visuell gleichabst\344ndige ) showde (16 visual equidistant ) showen (16 visual equidistant ) showes (16 visual equidistant ) showfr (16 visual equidistant ) showit (16 visual equidistant ) showjp (16 visual equidistant ) showm TIM (L*) show TM (\255Graustufen) showde (\255grey steps) showen (\255grey steps) showes (\255grey steps) showfr (\255grey steps) showit (\255grey steps) showjp (\255grey steps) showm TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorl 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorl 1 eq {( w* setgray) show} if xcolorl 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorl 3 eq {( w* w* w* setrgbcolor) show} if TM /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfzx* 0 0 moveto 24500 0 rlineto 0 4000 rlineto -24500 0 rlineto closepath fill tfnx* 0 0 moveto 24500 0 rlineto 0 4000 rlineto -24500 0 rlineto closepath stroke %%%%%%%%%%% oberer Schriftzug %%%%%%%%%%%%%%%% tfwx* 30 3650 moveto TBIG (L*/Y) show -50 -50 rmoveto TBK (intended) show 50 50 rmoveto 100 3400 moveto TBIK ((absolut)) showde ((absolute)) showen ((absolute)) showes ((absolute)) showfr ((absolute)) showit ((absolute)) showjp ((absolute)) showm 0 1150 moveto TBIG (w*=l*) show -200 -150 rmoveto TBIK (CIELAB, r) show 0 780 moveto TBIK ((relativ)) showde ((relative)) showen ((relative)) showes ((relative)) showfr ((relative)) showit ((relative)) showjp ((relative)) showm 100 1900 moveto TBIG (Nr. und) showde (No. and) showen (No. and) showes (No. and) showfr (No. and) showit (No. and) showjp (No. and) showm 100 1600 moveto TBIG (Hex\255Code) showde (Hex code) showen (Hex code) showes (Hex code) showfr (Hex code) showit (Hex code) showjp (Hex code) showm 100 3000 moveto xcolorl 0 eq {TBIG (0 0 0 n*) show} if xcolorl 1 eq {TBIG (w*) show} if xcolorl 2 eq {TBIG (n* n* n* 0) show} if xcolorl 3 eq {TBIG (w* w* w*) show} if 100 2720 moveto xcolorl 0 eq {TBIG (setcmyk) show} if xcolorl 1 eq {TBIG (setgray) show} if xcolorl 2 eq {TBIG (setcmyk) show} if xcolorl 3 eq {TBIG (setrgb) show} if %gamma output 100 2350 moveto TBIG (g) show colorml 0 eq {%colorml=0 TBM 0 -150 rmoveto (P) show 0 150 rmoveto TBG (=1.00) show} {%colorml=1 TBM 0 -150 rmoveto xchartl 7 le {(P) show}{(N) show} ifelse 0 150 rmoveto TBG (=) show gammal cvsshow2} ifelse 550 400 moveto TBIG (w*) show -10 -50 rmoveto TBK (intended) show 550 80 moveto TBIG (w*) show -10 -50 rmoveto TBK (out) show %(Y) show %-50 -50 rmoveto TBK (t) show 0 50 rmoveto %TBIM ( / Y) show %-20 -50 rmoveto TBK (tmax) show 0 50 rmoveto 1900 600 translate %untere Reihe um +200, +200 verschoben bei dx=1000 von 1400 tfnx* /ntu [(0,000) (0,067) (0,133) (0,200) (0,267) (0,333) (0,400) (0,467) (0,533) (0,600) (0,667) (0,733) (0,800) (0,867) (0,933) (1,000) (0,000) (0,250) (0,500) (0,750) (1,000)] def /nts [ 0.000 0.067 0.133 0.200 0.267 0.333 0.400 0.467 0.533 0.600 0.667 0.733 0.800 0.867 0.933 1.000 0.000 0.250 0.500 0.750 1.000 ] def /n* [(00;F) (01;E) (02;D) (03;C) (04;B) (05;A) (06;9) (07;8) (08;7) (09;6) (10;5) (11;4) (12;3) (13;2) (14;1) (15;0) (00;4) (01;3) (02;2) (03:1) (04;0)] def TBM tfwx* /iy0 0 def /i0 0 def /i1 15 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 i i0 sub 1400 mul def ix0 200 add iy0 250 sub moveto ntu i get show ix0 200 add iy0 520 sub moveto nts i get colorml 1 eq {gammal exp} if cvsshow3 } for %i=i0,i1 /iy0 3050 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 300 i i0 sub 1400 mul add def ix0 400 sub iy0 moveto L*i i get cvsshow1 (/) show Yi i get cvsshow1 } for %i=i0,i1 TBG tfnx* /iy0 0 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 400 i i0 sub 1400 mul add def ix0 300 sub iy0 1150 add moveto n* i get show } for %i=i0,i1 TBG tfnx* /s 1000 def /j0 0 def /j1 15 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul def ix0 iy0 s s /tfwj nts j get def %colorml 1 eq {gammal exp} if def /tfnj 1 tfwj sub def xcolorl 0 eq {0 0 0 tfnj colrecfix*} if xcolorl 1 eq {tfwj colrecfix*} if xcolorl 2 eq {tfnj dup dup 0 colrecfix*} if xcolorl 3 eq {tfwj dup dup colrecfix*} if j 7 eq j 8 eq or {%white arround mean grey ix0 iy0 s s xcolorl 0 eq {0 0 0 0 colrecstx*} if xcolorl 1 eq {1 colrecstx*} if xcolorl 2 eq {1 1 1 0 colrecstx*} if xcolorl 3 eq {1 1 1 colrecstx*} if } if %white arround mean grey } for %j=j0,j1 /s 1400 def /iy0 1500 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul 200 sub def ix0 iy0 s s /tfwj nts j get def %colorml 1 eq {gammal exp} if def /tfnj 1 tfwj sub def xcolorl 0 eq {0 0 0 tfnj colrecfix*} if xcolorl 1 eq {tfwj colrecfix*} if xcolorl 2 eq {tfnj dup dup 0 colrecfix*} if xcolorl 3 eq {tfwj dup dup colrecfix*} if } for %j=j0,j1 -1900 -600 translate grestore } if %pchartl=0 pchartl 1 eq {%pchartl=1 gsave 72 90 translate 0.01 MM dup scale 20 setlinewidth 1.0 setgray 0 0 moveto 12000 0 rlineto 0 8300 rlineto -12000 0 rlineto closepath fill 0.0 setgray 0 0 moveto 12000 0 rlineto 0 8300 rlineto -12000 0 rlineto closepath stroke TM 00100 -240 moveto (Teil 3) showde (Part 3) showen 9500 -240 moveto (OE620-7N) show (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow %(: ) show /x20 100 def /y20 7200 def /yd 320 def TBG x20 y20 yd 2.3 mul add moveto (Documentation of file format, hardware and software) showen ( for this test:) showen (Dokumentation von Dateiformat, Hard\255 und Software) showde ( f\374r diese Pr\374fung:) showde TBM x20 y20 yd add moveto (PDF\255File:) showen (PDF\255Datei:) showde TM x20 1500 add y20 yd add moveto (http://130.149.60.45/farbmetrik/OE62/OE62) showen (http://130.149.60.45/farbmetrik/OE62/OE62) showde (L0N) show (P.PDF) show TBM x20 8900 add y20 yd add moveto (underline Yes/No) showen (unterstreiche Ja/Nein) showde %TK %x20 1500 add y20 yd 0 mul add moveto %( or http://130.149.60.45/farbmetrik/OE62/OE62P0NP.PDF) showen %( oder http://130.149.60.45/farbmetrik/OE62/OE62P0NP.PDF) showde %TBM %x20 8400 add y20 yd 0 mul add moveto %( or underline Yes/No) showen %(oder unterstreiche Ja/Nein) showde x20 y20 yd 1 mul sub moveto (PS\255File:) showen (PS\255Datei:) showde TM x20 1500 add y20 yd 1 mul sub moveto (http://130.149.60.45/farbmetrik/OE62/OE62) showen (http://130.149.60.45/farbmetrik/OE62/OE62) showde (L0N) show (A.PS) show TBM x20 8400 add y20 yd 1 mul sub moveto ( or underline Yes/No) showen (oder unterstreiche Ja/Nein) showde %TK %x20 1500 add y20 yd 2 mul sub moveto %( or http://130.149.60.45/farbmetrik/OE62/OE62P0NA.PS) showen %( oder http://130.149.60.45/farbmetrik/OE62/OE62P0NA.PS) showde %TBM %x20 8400 add y20 yd 2 mul sub moveto %( or underline Yes/No) showen %(oder unterstreiche Ja/Nein) showde TBM x20 y20 yd 3.25 mul sub moveto (Used computer operating system:) showen (benutztes Rechner\255Betriebssystem:) showde TM x20 y20 yd 4.25 mul sub moveto (either one of Windows/Mac/Unix/other and version:) showen (nur eines von Windows/Mac/Unix/anderes und Version:) showde (.................................) show TBM x20 y20 yd 5.50 mul sub moveto (This evaluation is for the device output:) showen (Die Beurteilung ist f\374r die Ger\344teausgabe:) showde x20 5800 add y20 yd 5.50 mul sub moveto (underline monitor/data projector/printer) showen (unterstreiche Monitor/Datenprojektor/Drucker) showde TM x20 y20 yd 6.50 mul sub moveto (Device model, driver and version:) showen (Ger\344te\255Modell, \255Treiber und \255Version:) showde (......................) show TBM x20 y20 yd 7.75 mul sub moveto (Device output with PDF/PS\255file:) showen (Ger\344teausgabe mit PDF/PS\255Datei:) showde x20 8000 add y20 yd 7.75 mul sub moveto (underline PDF/PS\255file) showen (unterstreiche PDF\255/PS\255Datei) showde x20 y20 yd 8.75 mul sub moveto (For device output with PDF\255file OE62) showen (F\374r Ger\344teausgabe mit PDF\255Datei OE62) showde (L0N) show (P.PDF:) show /xshif 500 def TM x20 xshif add y20 yd 9.75 mul sub moveto (either PDF\255file transfer "download, copy" to PDF device) showen (entweder PDF\255Dateitransfer "download, copy" nach PDF\255Ger\344t) showde (.................................) show x20 xshif add y20 yd 10.75 mul sub moveto (or with computer system interpretation by "Display\255PDF":) showen (oder mit Rechnersystem\255Interpretation durch "Display\255PDF":) showde (.................................) show x20 xshif add y20 yd 11.75 mul sub moveto (or with software. e. g. Adobe\255Reader/\255Acrobat and version:) showen (oder mit Software, z. B. Adobe\255Reader/\255Acrobat und Version:) showde (.................................) show x20 xshif add y20 yd 12.75 mul sub moveto (or with software e. g. Ghostscript and version:) showen (oder mit Software, z. B. Ghostscript und Version:) showde (.................................) show TBM x20 y20 yd 13.75 mul sub moveto (For device output with PS\255file OE62) showen (F\374r Ger\344teausgabe mit PS\255Datei OE62) showde (L0N) show (A.PS:) show TM x20 xshif add y20 yd 14.75 mul sub moveto (either PS\255file transfer "download, copy" to PS device) showen (entweder PS\255Dateitransfer "download, copy" nach PS\255Ger\344t) showde (.................................) show x20 xshif add y20 yd 15.75 mul sub moveto (or with computer system interpretation by "Display\255PS":) showen (oder mit Rechnersystem\255Interpretation durch "Display\255PS":) showde (.................................) show x20 xshif add y20 yd 16.75 mul sub moveto (or with software e. g. Ghostscript and version:) showen (oder mit Software, z. B. Ghostscript und Version:) showde (.................................) show x20 xshif add y20 yd 17.75 mul sub moveto (or with software e. g. Mac\255Yap and version:) showen (oder mit Software, z. B. Mac\255Yap und Version:) showde (.................................) show x20 y20 yd 19 mul sub moveto (Special remarks:) showen (Spezielle Anmerkungen:) showde (Special remarks, e. g. output of Landscape (L)) showen %( file OE62L0NA.PS was cutted,) showen %(Spezielle Anmerkungen, z. B. Ausgabe von Landschaftsdatei (L)) showde %( OE62L0NA.PS wurde abge\255) showde x20 y20 yd 20 mul sub moveto %(Portrait (P) file OE62P0NA.PS was used:.............................) showen %(schnitten, Portr\344tdatei (P) OE62P0NA.PS wurde benutzt:.............) showde (......................................................................) show x20 y20 yd 21 mul sub moveto (......................................................................) show x20 y20 yd 22 mul sub moveto (......................................................................) show grestore } if %pchartl=1 pchartl 2 eq {%pchartl=2 /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /cvishow {0.5 add cvi 6 string cvs show} def /cvsshow1 {0.05 add 10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {0.005 add 100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show} def /xchartn xchartl xchartd idiv def /ilx 0 def colorml 0 eq {/ilx 0 def } {%colorml=1 xchartn 2 le {/ilx xchartn def} if xchartn 3 eq {/ilx 4 def} if xchartn 4 eq {/ilx 8 def} if xchartn 5 eq {/ilx 16 def} if xchartn 6 eq {/ilx 32 def} if xchartn 7 eq {/ilx 64 def} if } ifelse /Xnref 0.63 ilx mul 0.9505 mul def /Ynref 0.63 ilx mul def /Znref 0.63 ilx mul 1.0890 mul def /XQ Xnref 95.05 div def /YQ Ynref 100.00 div def /ZQ Znref 108.90 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if /L*ref YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse def /a*ref XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul def /b*ref YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul def /L*N L*ref def /L*W 95.41 def /L*i 21 array def %different for xchartl=0,7 /Yi 21 array def %equal distance between L*N and L*W 0 1 20 {/i exch def %steps from black to white i 15 le {/i0 0 def /istep 15 def} {/i0 16 def /istep 4 def} ifelse L*i i L*N L*W L*N sub i i0 sub istep div mul add put /Y* {L*i i get 16 add 116 div} bind def Yi i Y* DecodeXYZ* 100.00 mul put } for 72 90 translate 0.01 MM dup scale 15 setlinewidth colorml 0 eq {/xcolorn 2 def} %here cmy0 {/xcolorn xcolorl def} ifelse tfnx* TM 0 -220 moveto (OE620-7N, ) show (Bild A7) showde (Picture A7) showen (\255) show colorml cvishow xcolorn cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (16 visuell gleichabst\344ndige ) showde (16 visual equidistant ) showen (16 visual equidistant ) showes (16 visual equidistant ) showfr (16 visual equidistant ) showit (16 visual equidistant ) showjp (16 visual equidistant ) showm TIM (L*) show TM (\255Graustufen) showde (\255grey steps) showen (\255grey steps) showes (\255grey steps) showfr (\255grey steps) showit (\255grey steps) showjp (\255grey steps) showm TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorn 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorn 1 eq {( w* setgray) show} if xcolorn 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorn 3 eq {( w* w* w* setrgbcolor) show} if TM /tfzw 0.5 def colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def /tfzw tfzw def %gammal exp def } if /tfzn 1 tfzw sub def xcolorn 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorn 1 eq {/tfzx* {tfzw setgray} def} if xcolorn 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorn 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfzx* 0 0 moveto 24500 0 rlineto 0 4000 rlineto -24500 0 rlineto closepath fill tfnx* 0 0 moveto 24500 0 rlineto 0 4000 rlineto -24500 0 rlineto closepath stroke %%%%%%%%%%% oberer Schriftzug %%%%%%%%%%%%%%%% tfwx* 30 3650 moveto TBIG (L*/Y) show -50 -50 rmoveto TBK (intended) show 50 50 rmoveto 100 3400 moveto TBIK ((absolut)) showde ((absolute)) showen ((absolute)) showes ((absolute)) showfr ((absolute)) showit ((absolute)) showjp ((absolute)) showm 0 1150 moveto TBIG (w*=l*) show -200 -150 rmoveto TBIK (CIELAB, r) show 0 780 moveto TBIK ((relativ)) showde ((relative)) showen ((relative)) showes ((relative)) showfr ((relative)) showit ((relative)) showjp ((relative)) showm 100 1900 moveto TBIG (Nr. und) showde (No. and) showen (No. and) showes (No. and) showfr (No. and) showit (No. and) showjp (No. and) showm 100 1600 moveto TBIG (Hex\255Code) showde (Hex code) showen (Hex code) showes (Hex code) showfr (Hex code) showit (Hex code) showjp (Hex code) showm 100 3000 moveto xcolorn 0 eq {TBIG (0 0 0 n*) show} if xcolorn 1 eq {TBIG (w*) show} if xcolorn 2 eq {TBIG (n* n* n* 0) show} if xcolorn 3 eq {TBIG (w* w* w*) show} if 100 2720 moveto xcolorn 0 eq {TBIG (setcmyk) show} if xcolorn 1 eq {TBIG (setgray) show} if xcolorn 2 eq {TBIG (setcmyk) show} if xcolorn 3 eq {TBIG (setrgb) show} if %gamma output 100 2300 moveto TBIG (g) show colorml 0 eq {%colorml=0 TBM 0 -70 rmoveto (P) show 0 70 rmoveto TBG (=1.00) show} {%colorml=1 TBM 0 -70 rmoveto xchartl 7 le {(P) show}{(N) show} ifelse 0 70 rmoveto TBG (=) show gammal cvsshow2} ifelse 550 400 moveto TBIG (w*) show -10 -50 rmoveto TBK (intended) show 550 80 moveto TBIG (w*) show -10 -50 rmoveto TBK (out) show %(Y) show %-50 -50 rmoveto TBK (t) show 0 50 rmoveto %TBIM ( / Y) show %-20 -50 rmoveto TBK (tmax) show 0 50 rmoveto 1900 600 translate %untere Reihe um +200, +200 verschoben bei dx=1000 von 1400 tfnx* /ntu [(0,000) (0,067) (0,133) (0,200) (0,267) (0,333) (0,400) (0,467) (0,533) (0,600) (0,667) (0,733) (0,800) (0,867) (0,933) (1,000) (0,000) (0,250) (0,500) (0,750) (1,000)] def /nts [ 0.000 0.067 0.133 0.200 0.267 0.333 0.400 0.467 0.533 0.600 0.667 0.733 0.800 0.867 0.933 1.000 0.000 0.250 0.500 0.750 1.000 ] def /n* [(00;F) (01;E) (02;D) (03;C) (04;B) (05;A) (06;9) (07;8) (08;7) (09;6) (10;5) (11;4) (12;3) (13;2) (14;1) (15;0) (00;4) (01;3) (02;2) (03:1) (04;0)] def TBM tfwx* /iy0 0 def /i0 0 def /i1 15 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 i i0 sub 1400 mul def ix0 200 add iy0 250 sub moveto ntu i get show ix0 200 add iy0 520 sub moveto nts i get colorml 1 eq {gammal exp} if cvsshow3 } for %i=i0,i1 /iy0 3050 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 300 i i0 sub 1400 mul add def ix0 400 sub iy0 moveto L*i i get cvsshow1 (/) show Yi i get cvsshow1 } for %i=i0,i1 TBG tfnx* /iy0 0 def i0 1 i1 {/i exch def %i=i0,i1 /ix0 400 i i0 sub 1400 mul add def ix0 300 sub iy0 1150 add moveto n* i get show } for %i=i0,i1 TBG tfnx* /s 1000 def /j0 0 def /j1 15 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul def ix0 iy0 s s /tfwj nts j get def %colorml 1 eq {gammal exp} if def /tfnj 1 tfwj sub def xcolorn 0 eq {0 0 0 tfnj setcmykcolor rec fill} if xcolorn 1 eq {tfwj setgray rec fill} if xcolorn 2 eq {tfnj dup dup 0 setcmykcolor rec fill} if xcolorn 3 eq {tfwj dup dup setrgbcolor rec fill} if j 7 eq j 8 eq or {%white arround mean grey ix0 iy0 s s xcolorn 0 eq {0 0 0 0 setcmykcolor rec stroke} if xcolorn 1 eq {1 setgray rec stroke} if xcolorn 2 eq {0 0 0 0 setcmykcolor rec stroke} if xcolorn 3 eq {1 1 1 setrgbcolor rec stroke} if } if %white arround mean grey } for %j=j0,j1 /s 1400 def /iy0 1500 def j0 1 j1 {/j exch def %j=j0,j1 /ix0 j 1400 mul 200 sub def ix0 iy0 s s /tfwj nts j get def %colorml 1 eq {gammal exp} if def /tfnj 1 tfwj sub def xcolorn 0 eq {0 0 0 tfnj setcmykcolor rec fill} if xcolorn 1 eq {tfwj setgray rec fill} if xcolorn 2 eq {tfnj dup dup 0 setcmykcolor rec fill} if xcolorn 3 eq {tfwj dup dup setrgbcolor rec fill} if } for %j=j0,j1 -1900 -600 translate } if %pchartl=2 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,1 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 86 MM 020 MM translate 12 /Times-ISOL1 FS -9 MM -7 MM moveto ( ) show 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 18 %line 409 %!PS-Adobe-3.0 EPSF-3.0 OE620-8, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE620-8,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 161 MM 197 MM translate 10 /Times-ISOL1 FS 1 1 scale -77 -91 translate %%BeginDocument: Bild 12 %line 419 %%EndDocument EndEPSF grestore gsave BeginEPSF 161 MM 8 MM sub 152 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 21 %line 429 %!PS-Adobe-3.0 EPSF-3.0 OE621-1N.EPS %%BoundingBox: 41 82 415 206 %START PDFDE011.EPS /pdfmark11 where {pop} {userdict /pdfmark11 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE40/) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark11 [ /View [ /FitB ] /DOCVIEW pdfmark11 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIKK {200 /TimesI-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIKK {200 /TimesBI-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /tzaccmyw0l 64 array def /tzamcmyw0l 64 array def /tzaycmyw0l 64 array def /tzancmyw0l 64 array def /tzbocmyw0l 64 array def /tzblcmyw0l 64 array def /tzbvcmyw0l 64 array def /tzbncmyw0l 64 array def /tzaccmyw0l [ %Ccmyw0l01.dat 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /tzamcmyw0l [ %Mcmyw0l01.dat 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /tzaycmyw0l [ %Ycmyw0l01.dat 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /tzancmyw0l [ %Ncmyw0l01.dat 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 ] def /tzbocmyw0l [ %Ocmyw0l01.dat 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /tzblcmyw0l [ %Lcmyw0l01.dat 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /tzbvcmyw0l [ %Vcmyw0l01.dat 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /tzbncmyw0l [ %CMYcmyw0l01.dat 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 1.000 0.933 0.867 0.800 0.733 0.667 0.600 0.533 0.467 0.400 0.333 0.267 0.200 0.132 0.067 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ] def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 0 eq {%pchart=0 72 90 translate 0.01 MM dup scale 15 setlinewidth tfnx* TM 0 -220 moveto (OE621-1N, ) show (Bild A4) showde (Picture A4) showen (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (Landoltringe ) showde (Landolt\255rings ) showen (Landolt\255rings ) showes (Landolt\255rings ) showfr (Landolt\255rings ) showit (Landolt\255rings ) showjp (Landolt\255rings ) showm TIM (W-N) show TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorl 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorl 1 eq {( w* setgray) show} if xcolorl 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorl 3 eq {( w* w* w* setrgbcolor) show} if TM /tfzn tzancmyw0l 07 48 add get 0.5000 mul tzancmyw0l 08 48 add get 0.5000 mul add 1 exch sub 1.0 exp def /tfzw 1 tfzn sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfwx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath fill tfnx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath stroke tfnx* TBIK 400 3500 moveto (Umfeldstufe) showde (background step) showen (background step) showes (background step) showfr (background step) showit (background step) showjp (background step) showm 400 3200 moveto (Hex-Code) showde (Hex code) showen (Hex code) showes (Hex code) showfr (Hex code) showit (Hex code) showjp (Hex code) showm TBK 4100 50 moveto (Landoltringe ) showde (Landolt\255rings ) showen (Landolt\255rings ) showes (Landolt\255rings ) showfr (Landolt\255rings ) showit (Landolt\255rings ) showjp (Landolt\255rings ) showm TBIK (W-N) show 8200 3500 moveto (Ringstufe) showde (ring step) showen (ring step) showes (ring step) showfr (ring step) showit (ring step) showjp (ring step) showm 8200 3200 moveto (Hex\255Code) showde (Hex code) showen (Hex code) showes (Hex code) showfr (Hex code) showit (Hex code) showjp (Hex code) showm 9050 50 moveto (Code: Umfeld\255Ring) showde (code: background\255ring) showen (code: background\255ring) showes (code: background\255ring) showfr (code: background\255ring) showit (code: background\255ring) showjp (code: background\255ring) showm %STOP1 TBM /nll [(F) (8) (2) (E) (7) (0)] def 0 1 5 {/j exch def /iy0 500 j 600 mul add def 2150 iy0 moveto nll j get show } for %j /nr [(D) (6) (0) (F) (8) (1)] def 0 1 5 {/j exch def /iy0 500 j 600 mul add def 7800 iy0 moveto nr j get show } for %j /nc [(F-D) (8-6) (2-0) (E-F) (7-8) (0-1)] def 0 1 5 {/j exch def /iy0 500 j 600 mul add def 10050 iy0 moveto nc j get show } for %j /ar 80 def ar setlinewidth /ak [4 3 2 8 7 1 5 6 8 5 3 7 2 1 4 6 6 3 5 4 3 7 2 8 4 1 6 7 8 2 3 5 1 5 4 8 7 2 3 6 8 1 7 6 2 5 4 3] def /nl [0 7 13 1 8 15] def %+2, -1 %STOP2 0 1 07 {/j exch def /ix0 2700 j 600 mul add def 0 1 05 {/l exch def /iy0 0300 l 600 mul add def /k l 8 mul j add def /i1 nl l get def /ixd 600 def /tfnj tzancmyw0l i1 48 add get def /tfwj 1 tfnj sub def ix0 iy0 ixd ixd xcolorl 0 eq {0 0 0 tfnj colrecfix*} if xcolorl 1 eq {tfwj colrecfix*} if xcolorl 2 eq {tfnj dup dup 0 colrecfix*} if xcolorl 3 eq {tfwj dup dup colrecfix*} if l 2 le {/i1 nl l get 2 add def} {/i1 nl l get 1 sub def} ifelse /tfnj tzancmyw0l i1 48 add get def /tfwj 1 tfnj sub def xcolorl 0 eq {0 0 0 tfnj setcmykcolor} if xcolorl 1 eq {tfwj setgray} if xcolorl 2 eq {tfnj dup dup 0 setcmykcolor} if xcolorl 3 eq {tfwj dup dup setrgbcolor} if ix0 300 add iy0 300 add ar 2.5 mul 0 360 arc closepath fill /i1 nl l get def /tfnj tzancmyw0l i1 48 add get def /tfwj 1 tfnj sub def xcolorl 0 eq {0 0 0 tfnj setcmykcolor} if xcolorl 1 eq {tfwj setgray} if xcolorl 2 eq {tfnj dup dup 0 setcmykcolor} if xcolorl 3 eq {tfwj dup dup setrgbcolor} if ix0 300 add iy0 300 add ar 1.5 mul 0 360 arc closepath fill /i1 nl l get def /tfnj tzancmyw0l i1 48 add get def /tfwj 1 tfnj sub def xcolorl 0 eq {0 0 0 tfnj setcmykcolor} if xcolorl 1 eq {tfwj setgray} if xcolorl 2 eq {tfnj dup dup 0 setcmykcolor} if xcolorl 3 eq {tfwj dup dup setrgbcolor} if ix0 300 add iy0 300 add moveto /m ak k get exec def m 1 eq {ar 2.6 mul 0 rlineto closepath stroke} if %0 m 2 eq {ar 2.6 mul 45 sin mul ar 2.6 mul 45 cos mul rlineto closepath stroke} if %45 m 3 eq {0 ar 2.6 mul rlineto closepath stroke} if %90 m 4 eq {ar 2.6 mul 135 sin mul ar 2.6 mul 135 cos mul rlineto closepath stroke} if %135 m 5 eq {ar 2.6 mul neg 0 rlineto closepath stroke} if %0 m 6 eq {ar 2.6 mul 235 sin mul ar 2.6 mul 235 cos mul rlineto closepath stroke} if %45 m 7 eq {0 ar 2.6 mul neg rlineto closepath stroke} if %0 m 8 eq {ar 2.6 mul 315 sin mul ar 2.6 mul 315 cos mul rlineto closepath stroke} if %45 } for %l } for %j } if %pchartl=0 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,0 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 219 MM 152 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 22 %line 439 %!PS-Adobe-3.0 EPSF-3.0 OE621-2, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE621-2,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 161 MM 8 MM sub 108 MM pchartg 2 eq {30 MM sub} if translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 23 %line 449 %!PS-Adobe-3.0 EPSF-3.0 OE621-3N.EPS %%BoundingBox: 71 82 430 360 %START PDFDE011.EPS /pdfmark13 where {pop} {userdict /pdfmark13 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE40/) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark13 [ /View [ /FitB ] /DOCVIEW pdfmark13 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIKK {200 /TimesI-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIKK {200 /TimesBI-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 0 eq {%pchart=0 72 90 translate 0.01 MM dup scale 15 setlinewidth tfnx* TM 0 -220 moveto (OE621-3N, ) show (Bild A5) showde (Picture A5) showen (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (Linienraster unter 45\260 (oder 135\260)) showde (Line raster under 45\260 (or 135\260)) showen (Line raster under 45\260 (or 135\260)) showes (Line raster under 45\260 (or 135\260)) showfr (Line raster under 45\260 (or 135\260)) showit (Line raster under 45\260 (or 135\260)) showjp (Line raster under 45\260 (or 135\260)) showm TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorl 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorl 1 eq {( w* setgray) show} if xcolorl 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorl 3 eq {( w* w* w* setrgbcolor) show} if TM %/pixf 16.67 def %0.1667 pixf div MM 0.1667 pixf div MM scale % 0,01 * (72/25,4) = 0,02834 Zoll = 0,01 MM % 72 / 3600 = 2 / 100 Zoll = 0,02 Zoll = 0,00705555 mm %/FAKT {0.01 72 mul 25.4 div 72 3600 div div} def %(0,01 * 72 / 25.4)/(72/3600) = (0.01/25.4)/(1/3600) = (0.01*3600)/25.4 % = 36/25.4 = 1.4173228 /FAKT {36 25.4 div mul} def /FAKC {36 25.4 div} def %72 3600 div FAKT dup scale %Belichtereinheit = 25.4 mm / 3600 = 0,0070555555 mm %PostScript-Einheit =(72/3600) = 2 / 100 = 0.02 %bisherige Einheit 0.01 * 72 / 25.4 = 0,0283464 = 3/100 Zoll %bisherige Einheit 0.01 / 25.4 = 0,0003937 %MM -> DPI = 0,0283464 / 0.07055 = (25.4/3600) / (72/25.4) = 2 / 100 = 0,02 15 setlinewidth %kleinste Linienbreite /tfzn 0.5 def /tfzw 1 tfzn sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfwx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath fill tfnx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath stroke TBK 4300 100 moveto (Rasterweite in ) showde (line raster diameter in ) showen (line raster diameter in ) showes (line raster diameter in ) showfr (line raster diameter in ) showit (line raster diameter in ) showjp (line raster diameter in ) showm TBIK (lpi) show /ntl [( 15) ( 30) ( 60) (120)] def /ntp [(\050+1\051) (\050+2\051) (\050+4\051) (\050+8\051)] def /ntr [( 30) ( 60) (120) (240)] def /ntu [(15) (16) (17) (18) (19) (20) (21) (22) (23) (24) (25) (26) (27) (28) (29) (30)] def /nto [(120) (128) (136) (144) (152) (160) (168) (176) (184) (192) (200) (208) (216) (224) (232) (240)] def TBM tfnx* 0 1 4 {/l exch def /iy0 850 l 600 mul add def 500 iy0 moveto 10800 0 rlineto closepath stroke } for %l 0 3 3 {/l exch def /iy0 l 600 mul def 0 1 15 {/j exch def /ix0 1150 j 600 mul add def l 0 eq {ix0 150 add iy0 450 add moveto ntu j get show} if l 3 eq {ix0 050 add iy0 1600 add moveto nto j get show} if l 0 eq {ix0 iy0 400 add moveto 0 3300 rlineto closepath stroke} if l 0 eq j 15 eq and {ix0 600 add iy0 400 add FAKT moveto 0 3300 rlineto closepath stroke} if } for %j } for %l tfnx* %N-Raster 0001 setcmykcolor, 0 setgray, %1110 setcmykcolor, 0 0 0 setrgbcolor 0 1 03 {/l exch def /iy0 850 l 600 mul add def TBK 600 iy0 100 add moveto ntp l get show TBM 500 iy0 350 add moveto ntl l get show 10900 iy0 150 add moveto ntr l get show /ixd 600 def 0 1 15 {/j exch def /ix0 1150 j 600 mul add def TKK l 0 eq {/ixjF0 3600 30 j 1 mul add div def /kmax 8 def /x ix0 def %BEG special 45 degree /y iy0 def /width ixd def /height ixd def gsave newpath x y moveto width 0 rlineto 0 height rlineto width neg 0 rlineto closepath clip newpath %END special 45 degree kmax neg 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k 2 sub mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto ixd dup rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 } for %k grestore %special 45 degree } if l 1 eq {/ixjF0 3600 60 j 2 mul add div def /kmax 16 def /x ix0 def %BEG special 45 degree /y iy0 def /width ixd def /height ixd def gsave newpath x y moveto width 0 rlineto 0 height rlineto width neg 0 rlineto closepath clip newpath %END special 45 degree kmax neg 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto ixd dup rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 FAKT } for %k grestore %special 45 degree } if l 2 eq {/ixjF0 3600 120 j 4 mul add div def /kmax 32 def /x ix0 def %BEG special 45 degree /y iy0 def /width ixd def /height ixd def gsave newpath x y moveto width 0 rlineto 0 height rlineto width neg 0 rlineto closepath clip newpath %END special 45 degree kmax neg 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto ixd dup rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 FAKT } for %k grestore %special 45 degree } if l 3 eq {/ixjF0 3600 240 j 8 mul add div def /kmax 64 def /x ix0 def %BEG special 45 degree /y iy0 def /width ixd def /height ixd def gsave newpath x y moveto width 0 rlineto 0 height rlineto width neg 0 rlineto closepath clip newpath %END special 45 degree kmax neg 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto ixd dup rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 FAKT } for %k grestore %special 45 degree } if } for %j } for %l } if %pchartl=0 pchartl 1 eq {%pchartl=1 %gsave /nshow {iyd /Times-ISOL1 FS show} def /nishow {-30 -50 rmoveto iyd 50 sub /Times-ISOL1 FS show 30 50 rmoveto} def /nishow0 {-30 -50 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 50 rmoveto} def /nishowx {-00 -50 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 50 rmoveto} def /kshow {iyd /TimesI-ISOL1 FS show} def /bshow {iyd /TimesB-ISOL1 FS show} def /jshow {iyd /TimesBI-ISOL1 FS show} def /ishow {-30 -50 rmoveto iyd 50 sub /TimesB-ISOL1 FS show 30 50 rmoveto} def /ishow0 {-30 -50 rmoveto iyd 50 sub /TimesB-ISOL1 FS show 00 50 rmoveto} def /eshow { 00 110 rmoveto iyd 50 sub /TimesB-ISOL1 FS show 00 -110 rmoveto} def /neshow { 00 110 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 -110 rmoveto} def /neshowx { 00 70 rmoveto iyd 50 sub /Times-ISOL1 FS show 00 -70 rmoveto} def /nshowde {0 lanind eq {nshow} {pop} ifelse} bind def /nshowen {1 lanind eq {nshow} {pop} ifelse} bind def /nishowde {0 lanind eq {nishow} {pop} ifelse} bind def /nishowen {1 lanind eq {nishow} {pop} ifelse} bind def /kshowde {0 lanind eq {kshow} {pop} ifelse} bind def /kshowen {1 lanind eq {kshow} {pop} ifelse} bind def /bshowde {0 lanind eq {bshow} {pop} ifelse} bind def /bshowen {1 lanind eq {bshow} {pop} ifelse} bind def /jshowde {0 lanind eq {jshow} {pop} ifelse} bind def /jshowen {1 lanind eq {jshow} {pop} ifelse} bind def /ishowde {0 lanind eq {ishow} {pop} ifelse} bind def /ishowen {1 lanind eq {ishow} {pop} ifelse} bind def 72 90 translate 0.02 MM dup scale 15 setlinewidth /iyd 150 def %text size, line difference 0 setgray 0 -120 moveto (Part 2) nshowen (Teil 2) nshowde 4500 -120 moveto (OE621-3N) nshow (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow %(: ) show 1 setgray 0 0 moveto 6000 0 rlineto 0 4200 rlineto -6000 0 rlineto closepath fill 0 setgray 0 0 moveto 6000 0 rlineto 0 4200 rlineto -6000 0 rlineto closepath stroke /ix1 50 def %1 /ix2 1600 def %2 /ix3 3200 def %3 /ix4 5100 def %3 /iyd 175 def %line difference /y00 3850 def /iyt0 3500 def %cero line below top /iy00 iyt0 def /iy10 iyt0 iyd 1 mul sub def /iy20 iyt0 iyd 2 mul sub def /iy30 iyt0 iyd 3 mul sub def /iy40 iyt0 iyd 4 mul sub def /iy50 iyt0 iyd 5 mul sub def /iy60 iyt0 iyd 6 mul sub def /iy70 iyt0 iyd 7 mul sub def /iy80 iyt0 iyd 8 mul sub def /iy90 iyt0 iyd 9 mul sub def /iyt1 1500 def /iy01 iyt1 def /iy11 iyt1 iyd 1 mul sub def /iy21 iyt1 iyd 2 mul sub def /iy31 iyt1 iyd 3 mul sub def /iy41 iyt1 iyd 4 mul sub def /iyt2 0700 def /iy02 iyt2 def /iy12 iyt2 iyd 1 mul sub def /iy22 iyt2 iyd 2 mul sub def /iy32 iyt2 iyd 3 mul sub def /iy42 iyt2 iyd 4 mul sub def ix1 y00 200 add moveto (Test for the best visual linearized output of Picture A7) bshowen (Pr\374fung f\374r beste visuelle linearisierte Ausgabe von Bild A7) bshowde (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix4 y00 200 add moveto (Yes/No) bshowen (Ja/Nein) showde ix1 y00 moveto (Output test with the computer display ( ) or the external display ( )) bshowen (Ausgabe\255Pr\374fung mit dem Rechner\255Display ( ) oder dem externen Display ( )) bshowde ix1 iy00 moveto (Test of the ) bshowen (Pr\374fung der) bshowde (Landolt) jshow (\255rings ) bshowen (\255Ringe) bshowde (N-W) jshow ( according to picture A4) bshowen (nach Bild A4) bshowde (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix1 iy10 moveto (N-W) jshow (\255radial grating:) nshowen (\255Radiales Gitter:) nshowde ix1 iy20 moveto (Is the recognition frequency of the ) showen (Ist die Erkennbarkeits\255Frequenz der ) showde (Landolt) kshow (\255rings > 50% (5 of 8 at least)?) nshowen (\255Ringe > 50% (mindestens 5 von 8)?) nshowde ix2 iy30 moveto (background - ring) nshowen (Umfeld - Ring) nshowde ix2 iy40 moveto (0 - 1) nshow ix4 iy40 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix2 iy50 moveto (7 - 8) nshow ix4 iy50 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix2 iy60 moveto (E - F) nshow ix4 iy60 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix2 iy70 moveto (2 - 0) nshow ix4 iy70 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix2 iy80 moveto (8 - 6) nshow ix4 iy80 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix2 iy90 moveto (F - D) nshow ix4 iy90 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix1 iy01 moveto (Test of the radial grating under 45\260) bshowen (Pr\374fung der Radial\255Gitter unter 45\260) bshowde %00 90 rmoveto iyd 50 sub /TimesB-ISOL1 FS (o) show 00 -90 rmoveto ( according to picture A5) bshowen ( nach Bild A5) bshowde (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix1 iy11 moveto (Can equally spaced lines be seen?) nshowen (K\344nnen gleichabst\344ndig gestufte Linien gesehen werden?) nshowde ix1 iy21 moveto (Visual testing: for radial diameter from 15 to 60 lpi) nshowen (Visuelle Pr\374fung: f\374r radialen Durchmesser von 15 bis 60 lpi) nshowde ix4 iy21 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix1 iy31 moveto (Test with a magnifying glass (e.g. 6x):) nshowen (Pr\374fung mit Vergr\344sserungsglas (z. B. 6x):) nshowde ix3 iy31 moveto (- from 15 lpi:) showen (- von 15 lpi:) showde ix4 iy31 moveto (to ...... lpi) bshowen (bis ...... lpi) bshowde ix1 iy02 moveto (Test of the radial grating under 90\260) bshowen (Pr\374fung der Radial\255Gitter unter 90\260) bshowde %00 90 rmoveto iyd 50 sub /TimesB-ISOL1 FS (o) show 00 -90 rmoveto ( according to picture A6) bshowen ( nach Bild A6) bshowde (\255) nshow colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (0) show %pchartl cvishow ix1 iy12 moveto (Can equally spaced lines be seen?) nshowen (K\344nnen gleichabst\344ndig gestufte Linien gesehen werden?) nshowde ix1 iy22 moveto (Visual testing: for radial diameter from 15 to 60 lpi) nshowen (Visuelle Pr\374fung: f\374r radialen Durchmesser von 15 bis 60 lpi) nshowde ix4 iy22 moveto (Yes/No) bshowen (Ja/Nein) bshowde ix1 iy32 moveto (Test with a magnifying glass (e.g. 6x):) nshowen (Pr\374fung mit Vergr\344sserungsglas (z. B. 6x):) nshowde ix3 iy32 moveto (- from 15 lpi:) showen (- von 15 lpi:) showde ix4 iy32 moveto (to ...... lpi) bshowen (bis ...... lpi) bshowde %grestore } if %pchartl=1 pchartl 2 eq {%pchart=2 gsave /CMeasSxl (Measure unknown) def /CDeviceSxl (Device unknown) def /CDateSxl (Date unknown) def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def colorml 0 eq {/ilx 0 def } {%colorml=1 xchartl xchartd idiv 2 le {/ilx xchartl def} if xchartl xchartd idiv 3 eq {/ilx 4 def} if xchartl xchartd idiv 4 eq {/ilx 8 def} if xchartl xchartd idiv 5 eq {/ilx 16 def} if xchartl xchartd idiv 6 eq {/ilx 32 def} if xchartl xchartd idiv 7 eq {/ilx 64 def} if } ifelse /Xnref 0.63 ilx mul 0.9505 mul def /Ynref 0.63 ilx mul def /Znref 0.63 ilx mul 1.0890 mul def /XQ Xnref 95.05 div def /YQ Ynref 100.00 div def /ZQ Znref 108.90 div def XQ 0 lt {/XQ 0.00000001 def} if YQ 0 lt {/YQ 0.00000001 def} if ZQ 0 lt {/ZQ 0.00000001 def} if /L*ref YQ 0.008856 lt {903.3 YQ mul} {YQ 0.33333333 exp 116 mul 16 sub} ifelse def /a*ref XQ 0.008856 lt {7.787 XQ mul 16 116 div add} {XQ 0.33333333 exp} ifelse YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse sub 500 mul def /b*ref YQ 0.008856 lt {7.787 YQ mul 16 116 div add} {YQ 0.33333333 exp} ifelse ZQ 0.008856 lt {7.787 ZQ mul 16 116 div add} {ZQ 0.33333333 exp} ifelse sub 200 mul def /L*N L*ref def /L*W 95.41 def /L*i 21 array def %different for xchartl=0,7 /a*i 21 array def /b*i 21 array def /l*i 21 array def /Yi 21 array def %equal distance between L*N and L*W 0 1 20 {/i exch def %steps from black to white i 15 le {/i0 0 def /istep 15 def} {/i0 16 def /istep 4 def} ifelse L*i i L*N L*W L*N sub i i0 sub istep div mul add put a*i i 0 put b*i i 0 put l*i i L*i i get L*N sub L*W L*N sub div put /Y* {L*i i get 16 add 116 div} bind def Yi i Y* DecodeXYZ* 100.00 mul put } for /cvishow {cvi 6 string cvs show} def 72 90 translate 0.023 MM dup scale 15 setlinewidth 0 setgray 100 /Times-ISOL1 FS 100 -90 moveto (OE621-3N) show (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (File: ) show CMeasSxl show (; ) show (Device: ) show CDeviceSxl show (; ) show (Date: ) show CDateSxl show 1 setgray 0 0 moveto 5400 0 rlineto 0 4000 rlineto %relatives Bildfeld 54 x 40mm -5400 0 rlineto closepath fill 0 setgray 0 0 moveto 5400 0 rlineto 0 4000 rlineto %relatives Bildfeld 54 x 40mm -5400 0 rlineto closepath stroke 0 setgray 100 /Times-ISOL1 FS 0800 0400 translate %Nullpunkt Zeichnung 0 0 moveto 4000 0 rlineto stroke 0 0 moveto 0 3200 rlineto stroke %! 100 S-Einheiten = 2000 Skalen-Einheiten 150 /TimesI-ISOL1 FS 0 -50 moveto 0 100 rlineto stroke 800 -50 moveto 0 100 rlineto stroke 1600 -50 moveto 0 100 rlineto stroke 2400 -50 moveto 0 100 rlineto stroke 3200 -50 moveto 0 100 rlineto stroke 4000 -50 moveto 0 100 rlineto stroke -300 -300 moveto (N 0,0) show 700 -300 moveto (0,25) show 1500 -300 moveto (0,50) show 2300 -300 moveto (0,75) show 3100 -300 moveto (1,00 W) show %! 100 S-Einheiten = 2000 Skalen-Einheiten -50 0 moveto 100 0 rlineto stroke -50 800 moveto 100 0 rlineto stroke -50 1600 moveto 100 0 rlineto stroke -50 2400 moveto 100 0 rlineto stroke -50 3200 moveto 100 0 rlineto stroke -530 -60 moveto (N 0,00) show -350 740 moveto (0,25) show -350 1540 moveto (0,50) show -350 2340 moveto (0,75) show -530 3140 moveto (W 1,00) show 150 /TimesI-ISOL1 FS -700 2900 moveto (w*'output) show -700 2700 moveto (w'*output) show 3000 200 moveto (w*input) show 0 setgray 0 0 moveto 3200 3200 lineto stroke [100] 0 setdash 0 3200 0.133 mul moveto 3200 3200 3200 0.0333 mul add lineto stroke 0 3200 0.133 mul neg moveto 3200 3200 3200 0.0333 mul sub lineto stroke colorml 1 eq {/xchartNl xchartl 8 idiv def /xchartPl xchartl xchartl 8 idiv 8 mul sub def /gammaNl 1 xchartNl 0.18 mul add def /gammaPl 1 1 xchartPl 0.18 mul add div def /gammal gammaNl gammaPl mul def } if /L*gi 21 array def %different for xchartl=0,7 /a*gi 21 array def /b*gi 21 array def /l*gi 21 array def /Ygi 21 array def %distance between L*N and L*W using gamma 0 1 20 {/i exch def %steps from black to white l*gi i l*i i get colorm 1 eq {gammal exp} if put L*gi i L*W L*N sub l*gi i get mul L*N add put a*gi i 0 put b*gi i 0 put /Y* {L*gi i get 16 add 116 div} bind def Ygi i Y* DecodeXYZ* 100.00 mul put } for 0 0 1 setrgbcolor 40 setlinewidth [100] 0 setdash 0 1 15 {/i exch def /xw l*i i get def /yw l*i i get colorml 1 eq {gammal exp} if def xw 3200 mul yw 3200 mul i 0 eq { moveto} {lineto} ifelse } for stroke %i 0 0 1 setrgbcolor 40 setlinewidth [100] 0 setdash 0 1 15 {/i exch def /xw l*i i get def /yw l*i i get colorml 1 eq {1 gammal div exp} if def xw 3200 mul yw 3200 mul i 0 eq { moveto} {lineto} ifelse } for stroke %i 1 0 0 setrgbcolor 25 setlinewidth [50] 0 setdash %/gamma 1 xcolor 0.075 mul sub def 0 1 15 {/i exch def /xw i 15 div def /yw xw colorml 1 eq {gammal exp} if def xw 3200 mul yw 3200 mul i 0 eq { moveto} {lineto} ifelse } for stroke %i 0 1 15 {/i exch def /xw i 15 div def /yw xw colorml 1 eq {1 gammal div exp} if def xw 3200 mul yw 3200 mul i 0 eq { moveto} {lineto} ifelse } for stroke %i 0 setgray 150 /Times-ISOL1 FS -400 3450 moveto lanind 0 eq {(F\374 linearisierte Ausgabe der 16 Graustufen von ) show} if lanind 1 eq {(For linearized output of the 16 grey steps of ) show} if (Picture A7) showen (Bild A7) showde (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow 0 0 1 setrgbcolor 150 /TimesBI-ISOL1 FS 100 3200 moveto ('* (dash\255star) coordinates to reach) showen ('* (Strich\255Stern)\255Koordinaten um die) showde 100 3000 moveto (the linearized output with the real) showen (linearisierte Ausgabe mit realer Display\255) showde 100 2800 moveto (display reflection in office room;) showen (Reflexion im B\374roraum zu erreichen;) showde 100 2600 moveto (lighter (positiv P) output) showen (hellere (positive P) Ausgabe) showde % 150 /TimesBI-ISOL1 FS %050 2450 moveto %(gammal) show % 150 /TimesB-ISOL1 FS %( = ) show %2.4 gammal mul 0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show %( = 2.4 x ) show %gammal 0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show 1 0 0 setrgbcolor 150 /TimesBI-ISOL1 FS 100 2350 moveto (w'*) show 120 /TimesB-ISOL1 FS -70 -70 rmoveto (output) show 0 70 rmoveto 150 /TimesB-ISOL1 FS ( = [) show 150 /TimesBI-ISOL1 FS (w*) show 120 /TimesB-ISOL1 FS -50 -70 rmoveto (input) show 0 70 rmoveto 150 /TimesB-ISOL1 FS (] ) show 0 70 rmoveto colorml 0 eq {(1.00) show} {gammal 0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show } ifelse 0 -70 rmoveto 0 0 1 setrgbcolor 150 /TimesBI-ISOL1 FS 2500 1400 moveto (*' (star\255dash) coordinates) showen (*' (Stern\255Strich)\255Koordinaten) showde 2500 1200 moveto (of real output with real) showen (von realer Ausgabe mit realer) showde 2500 1000 moveto (display reflection in office room;) showen (Dsplay\255Reflexion im B\374roraum;) showde 2500 0800 moveto (darker (negativ N) output) showen (dunklere (negative N) Ausgabe) showde % 150 /TimesBI-ISOL1 FS %2500 0550 moveto %(gammal) show % 150 /TimesB-ISOL1 FS %( = ) show %2.4 gammal mul 0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show %( = 2.4 x ) show %gammal 0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show 1 0 0 setrgbcolor 150 /TimesBI-ISOL1 FS 2500 0550 moveto (w*') show 120 /TimesB-ISOL1 FS -70 -70 rmoveto (output) show 0 70 rmoveto 150 /TimesB-ISOL1 FS ( = [) show 150 /TimesBI-ISOL1 FS (w*) show 120 /TimesB-ISOL1 FS -50 -70 rmoveto (input) show 0 70 rmoveto 150 /TimesB-ISOL1 FS (] ) show 0 70 rmoveto colorml 0 eq {(1.00) show} {1 gammal div 0.0005 add 1000 mul cvi 0.001 mul 7 string cvs show } ifelse 0 -70 rmoveto -0800 -0400 translate %Nullpunkt Zeichnung grestore } if %pchartl=2 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,1 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 219 MM 108 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 24 %line 459 %!PS-Adobe-3.0 EPSF-3.0 OE621-4, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE621-4,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 161 MM 8 MM sub 064 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 25 %line 469 %!PS-Adobe-3.0 EPSF-3.0 OE621-5N.EPS %%BoundingBox: 71 82 422 206 %START PDFDE011.EPS /pdfmark15 where {pop} {userdict /pdfmark15 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE40/) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011080112000) /ModDate (D:2011080112000) /DOCINFO pdfmark15 [ /View [ /FitB ] /DOCVIEW pdfmark15 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 0 eq {%pchart=0 72 90 translate 0.01 MM dup scale 15 setlinewidth tfnx* TM 0 -220 moveto (OE621-5N, ) show (Bild A6) showde (Picture A6) showen (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow (: ) show (Linienraster unter 90\260 (oder 0\260)) showde (Line raster under 90\260 (or 0\260)) showen (Line raster under 90\260 (or 0\260)) showes (Line raster under 90\260 (or 0\260)) showfr (Line raster under 90\260 (or 0\260)) showit (Line raster under 90\260 (or 0\260)) showjp (Line raster under 90\260 (or 0\260)) showm TM (; PS\255Operator:) showde (; PS operator:) showen (; PS operator:) showes (; PS operator:) showfr (; PS operator:) showit (; PS operator:) showjp (; PS operator:) showm TIM xcolorl 0 eq {( 0 0 0 n* setcmykcolor) show} if xcolorl 1 eq {( w* setgray) show} if xcolorl 2 eq {( n* n* n* 0 setcmykcolor) show} if xcolorl 3 eq {( w* w* w* setrgbcolor) show} if TM %/pixf 16.67 def %0.1667 pixf div MM 0.1667 pixf div MM scale % 0,01 * (72/25,4) = 0,02834 Zoll = 0,01 MM % 72 / 3600 = 2 / 100 Zoll = 0,02 Zoll = 0,00705555 mm %/FAKT {0.01 72 mul 25.4 div 72 3600 div div} def %(0,01 * 72 / 25.4)/(72/3600) = (0.01/25.4)/(1/3600) = (0.01*3600)/25.4 % = 36/25.4 = 1.4173228 /FAKT {36 25.4 div mul} def /FAKC {36 25.4 div} def %72 3600 div FAKT dup scale %Belichtereinheit = 25.4 mm / 3600 = 0,0070555555 mm %PostScript-Einheit =(72/3600) = 2 / 100 = 0.02 %bisherige Einheit 0.01 * 72 / 25.4 = 0,0283464 = 3/100 Zoll %bisherige Einheit 0.01 / 25.4 = 0,0003937 %MM -> DPI = 0,0283464 / 0.07055 = (25.4/3600) / (72/25.4) = 2 / 100 = 0,02 15 setlinewidth %kleinste Linienbreite /tfzn 0.5 def /tfzw 1 tfzn sub def xcolorl 0 eq {/tfzx* {0 0 0 tfzn setcmykcolor} def} if xcolorl 1 eq {/tfzx* {tfzw setgray} def} if xcolorl 2 eq {/tfzx* {tfzn dup dup 0 setcmykcolor} def} if xcolorl 3 eq {/tfzx* {tfzw dup dup setrgbcolor} def} if tfwx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath fill tfnx* 0 0 moveto 12000 0 rlineto 0 4000 rlineto -12000 0 rlineto closepath stroke TBK 4300 100 moveto (Rasterweite in ) showde (line raster diameter in ) showen (line raster diameter in ) showes (line raster diameter in ) showfr (line raster diameter in ) showit (line raster diameter in ) showjp (line raster diameter in ) showm TBIK (lpi) show /ntl [( 15) ( 30) ( 60) (120)] def /ntp [(\050+1\051) (\050+2\051) (\050+4\051) (\050+8\051)] def /ntr [( 30) ( 60) (120) (240)] def /ntu [(15) (16) (17) (18) (19) (20) (21) (22) (23) (24) (25) (26) (27) (28) (29) (30)] def /nto [(120) (128) (136) (144) (152) (160) (168) (176) (184) (192) (200) (208) (216) (224) (232) (240)] def TBM tfnx* 0 1 4 {/l exch def /iy0 850 l 600 mul add def 500 iy0 moveto 10800 0 rlineto closepath stroke } for %l 0 3 3 {/l exch def /iy0 l 600 mul def 0 1 15 {/j exch def /ix0 1150 j 600 mul add def l 0 eq {ix0 150 add iy0 450 add moveto ntu j get show} if l 3 eq {ix0 050 add iy0 1600 add moveto nto j get show} if l 0 eq {ix0 iy0 400 add moveto 0 3300 rlineto closepath stroke} if l 0 eq j 15 eq and {ix0 600 add iy0 400 add FAKT moveto 0 3300 rlineto closepath stroke} if } for %j } for %l tfnx* 0 1 03 {/l exch def /iy0 850 l 600 mul add def TBK 600 iy0 100 add moveto ntp l get show TBM 500 iy0 350 add moveto ntl l get show 10900 iy0 150 add moveto ntr l get show /ixd 600 def 0 1 15 {/j exch def /ix0 1150 j 600 mul add def TKK l 0 eq {/ixjF0 3600 30 j 1 mul add div def /kmax 8 def 0 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto 000 ixd rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 } for %k } if l 1 eq {/ixjF0 3600 60 j 2 mul add div def /kmax 16 def 0 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto 000 ixd rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 FAKT } for %k } if l 2 eq {/ixjF0 3600 120 j 4 mul add div def /kmax 32 def 0 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto 000 ixd rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 FAKT } for %k } if l 3 eq {/ixjF0 3600 240 j 8 mul add div def /kmax 64 def 0 2 kmax {/k exch def /ixjF ixjF0 def /ixjFk ixjF k mul def /ixjFk1 ixjFk ixjF add def ixjFk 600 lt { ix0 ixjFk add iy0 moveto ixjF 000 rlineto 000 ixd rlineto ixjF neg 000 rlineto closepath fill } if %ixjFk < 600 FAKT } for %k } if } for %j tfnx* } for %l } if %pchartl=0 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,1 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 219 MM 064 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 26 %line 479 %!PS-Adobe-3.0 EPSF-3.0 OE621-6, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE621-6,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 161 MM 8 MM sub 020 MM translate 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 27 %line 489 %!PS-Adobe-3.0 EPSF-3.0 OE621-7N.EPS %%BoundingBox: 71 82 422 330 %START PDFDE011.EPS /pdfmark17 where {pop} {userdict /pdfmark17 /cleartomark load put} ifelse /languagelevel where {pop languagelevel} {1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn (]) cvn load put} if [ /Title (PostScript pictures: http://130.149.60.45/~farbmetrik/OE40/) /Author (compare K. Richter "Computergrafik ...": ISBN 3-8007-1775-1) /Subject (goto: http://www.ps.bam.de or http://130.149.60.45/~farbmetrik) /Keywords (image reproduction, colour devices, colour vision) /Creator (klaus.richter@mac.com) /CreationDate (D:2011030112000) /ModDate (D:2011030112000) /DOCINFO pdfmark17 [ /View [ /FitB ] /DOCVIEW pdfmark17 %END PDFDE011 % !AUSTAUSCH Times-Roman -> Times-Roman-ISOLatin1=Times-I /Times-Roman findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /Times-ISOL1 exch definefont pop /Times-Italic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesI-ISOL1 exch definefont pop /Times-Bold findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesB-ISOL1 exch definefont pop /Times-BoldItalic findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse }forall /Encoding ISOLatin1Encoding def currentdict end /TimesBI-ISOL1 exch definefont pop /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %Umrechnung Inch -> mm /A4quer {598 0 translate 90 rotate} def /languagelevel where {pop languagelevel} {1} ifelse /PSL12 exch def /dictende {counttomark 2 idiv dup dict begin {def} repeat pop currentdict end} bind def /TKK {200 /Times-ISOL1 FS} bind def /TK {250 /Times-ISOL1 FS} bind def /TM {280 /Times-ISOL1 FS} bind def /TG {350 /Times-ISOL1 FS} bind def /TIK {250 /TimesI-ISOL1 FS} bind def /TIM {280 /TimesI-ISOL1 FS} bind def /TIG {350 /TimesI-ISOL1 FS} bind def /TBKK {200 /TimesB-ISOL1 FS} bind def /TBK {250 /TimesB-ISOL1 FS} bind def /TBM {280 /TimesB-ISOL1 FS} bind def /TBG {350 /TimesB-ISOL1 FS} bind def /TBIK {250 /TimesBI-ISOL1 FS} bind def /TBIM {280 /TimesBI-ISOL1 FS} bind def /TBIG {350 /TimesBI-ISOL1 FS} bind def /rec %x, y width heigth {/heigth exch def /width exch def moveto width 0 rlineto 0 heigth rlineto width neg 0 rlineto closepath } bind def /tzocmy0* {0.0 1.0 1.0 0.0} bind def %Reproduction colours /tzlcmy0* {1.0 0.0 1.0 0.0} bind def %cmyn* setcmykcolor /tzvcmy0* {1.0 1.0 0.0 0.0} bind def /tzccmy0* {1.0 0.0 0.0 0.0} bind def /tzmcmy0* {0.0 1.0 0.0 0.0} bind def /tzycmy0* {0.0 0.0 1.0 0.0} bind def /tzoolv* {1.0 0.0 0.0} bind def %Reproduction colours /tzlolv* {0.0 1.0 0.0} bind def %olv* setrgbcolor /tzvolv* {0.0 0.0 1.0} bind def /tzcolv* {0.0 1.0 1.0} bind def /tzmolv* {1.0 0.0 1.0} bind def /tzyolv* {1.0 1.0 0.0} bind def /tzncmy0* {1.00 1.00 1.00 0.00} bind def %grey series /tzdcmy0* {0.75 0.75 0.75 0.00} bind def %cmy0* setcmykcolor /tzzcmy0* {0.50 0.50 0.50 0.00} bind def /tzhcmy0* {0.25 0.25 0.25 0.00} bind def /tzwcmy0* {0.00 0.00 0.00 0.00} bind def /tzn000n* {0.00 0.00 0.00 1.00} bind def %grey series 000n* /tzd000n* {0.00 0.00 0.00 0.75} bind def %000n* setcmykcolor /tzz000n* {0.00 0.00 0.00 0.50} bind def /tzh000n* {0.00 0.00 0.00 0.25} bind def /tzw000n* {0.00 0.00 0.00 0.00} bind def /tznw* {0.00} bind def %grey series /tzdw* {0.25} bind def %w* 1.0 exp setgray /tzzw* {0.50} bind def /tzhw* {0.75} bind def /tzww* {1.00} bind def /tznolv* {0.00 0.00 0.00} bind def %grey series /tzdolv* {0.25 0.25 0.25} bind def %olv* setrgbcolor /tzzolv* {0.50 0.50 0.50} bind def /tzholv* {0.75 0.75 0.75} bind def /tzwolv* {1.00 1.00 1.00} bind def /DecodeXYZ* {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind def /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def /cvsshow2 {100 mul cvi 0.01 mul 7 string cvs show} def /cvsshow3 {1000 mul cvi 0.001 mul 7 string cvs show} def %************************************************************************* %%EndProlog gsave %LANINDL2.EPS START 20000505 /lanind 0 def /lantex [(G) (E) (S) (F) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /popde {0 lanind ne {pop} if} bind def /popen {1 lanind ne {pop} if} bind def /popes {2 lanind ne {pop} if} bind def /popfr {3 lanind ne {pop} if} bind def /popit {4 lanind ne {pop} if} bind def /popjp {5 lanind ne {pop} if} bind def /popm {6 lanind ne {pop} if} bind def /popxde {/n exch def 0 lanind ne {n {pop} repeat} if} bind def /popxen {/n exch def 1 lanind ne {n {pop} repeat} if} bind def /popxes {/n exch def 2 lanind ne {n {pop} repeat} if} bind def /popxfr {/n exch def 3 lanind ne {n {pop} repeat} if} bind def /popxit {/n exch def 4 lanind ne {n {pop} repeat} if} bind def /popxjp {/n exch def 5 lanind ne {n {pop} repeat} if} bind def /popxm {/n exch def 6 lanind ne {n {pop} repeat} if} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 2 def /xcolor2 2 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 1 def /pchart2 1 def /pchartd 1 def} ifelse /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /colorml colorm def %0 1 1 {/colorml exch def %colorml=0,1 /xcolorl xcolor def %0 1 3 {/xcolorl exch def %xcolorl=0,3 /xchartl xchart def %0 1 7 {/xchartl exch def %xchartl=0,7 /pchartl pchart def %0 1 2 {/pchartl exch def %pchartl=0,2 gsave xcolorl 0 eq {/tfnx* {0 0 0 1 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 1 eq {/tfnx* {0 setgray} def /tfwx* {1 setgray} def /colrecfix* {setgray rec fill} bind def /colrecstx* {setgray rec stroke} bind def } if xcolorl 2 eq {/tfnx* {1 1 1 0 setcmykcolor} def /tfwx* {0 0 0 0 setcmykcolor} def /colrecfix* {setcmykcolor rec fill} bind def /colrecstx* {setcmykcolor rec stroke} bind def } if xcolorl 3 eq {/tfnx* {0 0 0 setrgbcolor} def /tfwx* {1 1 1 setrgbcolor} def /colrecfix* {setrgbcolor rec fill} bind def /colrecstx* {setrgbcolor rec stroke} bind def } if pchartl 1 eq {%pchartl=1 72 90 translate 0.01 MM dup scale 20 setlinewidth 1.0 setgray 0 0 moveto 12000 0 rlineto 0 8300 rlineto -12000 0 rlineto closepath fill 0.0 setgray 0 0 moveto 12000 0 rlineto 0 8300 rlineto -12000 0 rlineto closepath stroke TM 00100 -240 moveto (Teil 4) showde (Part 4) showen 9500 -240 moveto (OE621-7N) show (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show pchartl cvishow %(: ) show /x20 100 def /y1 8000 def /yd 320 def /y11 y1 def /y12 y1 yd 1.0 mul sub def x20 y11 moveto TBG (Documentation of assessor colour vision properties) showen ( for visual assessment) showen (Dokumentation der Beurteiler\255Farbseheigenschaften) showde ( f\374r diese Pr\374fung:) showde x20 y12 moveto TM (The assessor has) showen TBM ( normal) showen TM ( colour vision according to one test:) showen TM (Der Beurteiler hat) showde TBM ( normales) showde TM ( Farbsehen nach einer Pr\374fung:) showde x20 8400 add y12 moveto TBM ( underline Yes/No) showen ( unterstreiche Ja/Nein) showde x20 300 add y12 yd 1 mul sub moveto TM ( entweder nach DIN 6160:1996 mit Anomaloskop nach) showde ( either according to DIN 6160:1996 with Anomaloskop of) showen TIM ( Nagel) show x20 8400 add y12 yd 1 mul sub moveto TBM ( underline Yes/unknown) showen ( unterstreiche Ja/unbekannt) showde x20 300 add y12 yd 2 mul sub moveto TM ( oder mit Farbpunkt\255Pr\374ftafeln nach) showde ( or with test charts using colour points according to) showen TIM ( Ishihara) show x20 8400 add y12 yd 2 mul sub moveto TBM ( underline Yes/unknown) showen ( unterstreiche Ja/unbekannt) showde x20 300 add y12 yd 3 mul sub moveto TM ( oder mit, bitte nennen:............................................) showde ( or tested with, please specify: ...................................) showen x20 8400 add y12 yd 3 mul sub moveto TBM ( underline Yes/unknown) showen ( unterstreiche Ja/unbekannt) showde /y21 y12 yd 4.2 mul sub def /y22 y12 yd 5.2 mul sub def x20 y21 moveto TBG (For visual evaluation of the display (monitor, data projector) output) showen (F\374r visuelle Bewertung der Display(Monitor, Daten\255Projektor)\255Ausgabe) showde x20 300 add y22 moveto TM (B\374ro\255Arbeitsplatz\255Beleuchtung ist Tageslicht (bedeckter/Nordhimmel)) showde (Office workplace illumination is daylight (clouded/north sky)) showen x20 8900 add y22 moveto TBM (underline Yes/No) showen (unterstreiche Ja/Nein) showde x20 300 add y22 yd sub moveto TBM (PDF file:) showen (PDF\255Datei:) showde x20 1500 add y22 yd sub moveto TM (http://130.149.60.45/farbmetrik/OE62/OE62) show (F1P) show (2.PDF) show x20 8900 add y22 yd sub moveto TBM (underline Yes/No) showen (unterstreiche Ja/Nein) showde x20 300 add y22 yd 2 mul sub moveto TBM (PS file:) showen (PS\255Datei:) showde x20 1500 add y22 yd 2 mul sub moveto TM (http://130.149.60.45/farbmetrik/OE62/OE62) show (F1P) show (2.PS) show x20 8900 add y22 yd 2 mul sub moveto TBM (underline Yes/No) showen (unterstreiche Ja/Nein) showde %x20 300 add y22 yd 2 mul sub moveto %TM (Vergleich Kontrastbereich der 16 Stufen F bis 0 mit Pr\374fvorlage) showde % (Comparison of contrast range of 16 steps F to 0 with test chart) showen %TM ( Nr. 3 von DIN 33866\2551:2000) showde % ( no. 3 of DIN 33866\2551:2000) showen x20 300 add y22 yd 3 mul sub moveto TBM (Picture A7) showen (Bild A7) showde TM (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (2: ) show %pchartl cvishow TBM (Kontastbereich:) showde (contrast range:) showen TM ( (>F:0) (F:0) (E:0) (D:0) (C:0) (A:0) (9:0) (7:0) (5:0) (3:0) (<3:0)) show x20 300 add y22 yd 4 mul sub moveto TM (compare standard print output according to ISO/IEC 15775 with range F:0) showen (vergleiche Normdruckausgabe nach ISO/IEC 15775 mit Bereich F:0) showde x20 8900 add y22 yd 4 mul sub moveto TBM (underline range) showen (unterstreiche Bereich) showde x20 600 add y22 yd 5 mul sub moveto TIM (Anmerkung: Bei Tageslichtb\374robeleuchtung ist der Kontrastbereich oft:) showde (Remark: In daylighted offices the contrast range is in many cases:) showen %x20 600 add y22 yd 5 mul sub moveto %TIM (auf Papier zwischen: >F:0 (Hochglanz), F:0 (Seidenglanz) und E:0 (Matt)) showde % (on paper between: >F:0 (highly glossy), F:0 (silk glossy) and E:0 (matte)) showen x20 600 add y22 yd 6 mul sub moveto TIM (am Display zwischen: >F:0 und E:0 (Monitor), D:0 und 3:0 (Datenprojektor)) showde (on display between: >F:0 and E:0 (monitor), D:0 and 3:0 (data projector)) showen /y31 y22 yd 7.2 mul sub def /y32 y22 yd 8.2 mul sub def x20 y31 moveto TBG (Only for optional colorimetric specification with PDF/PS file output) showen (Nur f\374r optionale farbmetrische Kennzeichnung mit PDF/PS\255Dateiausgabe) showde x20 y32 moveto TBM (PDF\255File:) showen (PDF\255Datei:) showde x20 1500 add y32 moveto TM (http://130.149.60.45/farbmetrik/OE62/OE62) show (F1P) show (2.PDF) show x20 1500 add y32 yd 1 mul sub moveto TBM (picture A7) showen (Bild A7) showde TM (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (2) show %pchartl cvishow x20 8990 add y32 yd 1 mul sub moveto TBM (underline Yes/No) showen (unterstreiche Ja/Nein) showde %TK ( or http://130.149.60.45/farbmetrik/OE71/OE71P0NP.PDF) showen % ( oder http://130.149.60.45/farbmetrik/OG71/OG71P0NP.PDF) showde %x20 8400 add y32 yd 1 mul sub moveto %TM ( or underline Yes/No) showen % (oder unterstreiche Ja/Nein) showde x20 y32 yd 2 mul sub moveto TBM (PS\255File:) showen (PS\255Datei:) showde x20 1500 add y32 yd 2 mul sub moveto TM (http://130.149.60.45/farbmetrik/OE62/OE62) show (F1P) show (2.PS) show x20 1500 add y32 yd 3 mul sub moveto TBM (picture A7) showen (Bild A7) showde TM (\255) show colorml cvishow xcolorl cvishow xchartd 1 eq {xchartl cvishow} {xchartl xchartd idiv cvishow} ifelse (\255) show (2) show %pchartl cvishow x20 8400 add y32 yd 3 mul sub moveto TBM ( or underline Yes/No) showen (oder unterstreiche Ja/Nein) showde %TK ( or http://130.149.60.45/farbmetrik/OE71/OE71P0NA.PS) showen % ( oder http://130.149.60.45/farbmetrik/OG71/OG71P0NA.PS) showde %x20 8400 add y32 yd 3 mul sub moveto %TM ( or underline Yes/No) showen % (oder unterstreiche Ja/Nein) showde x20 y32 yd 4 mul sub moveto TBM (Farbmessung und Kennzeichnung f\374r:) showde (colour measurement and specification for:) showen x20 300 add y32 yd 5 mul sub moveto TM (CIE\255Normlichtart D65, CIE\2552\255Grad\255Beobachter, CIE\25545/0\255Geometrie) showde (CIE standard illuminant D65, 2 degree observer, CIE 45/0 geometry:) showen x20 8900 add y32 yd 5 mul sub moveto TBM (underline Yes/No) showen (unterstreiche Ja/Nein) showde x20 300 add y32 yd 6 mul sub moveto TM (Wenn Nein, bitte andere Parameter nennen: ...................................) showde (If No, please give other parameters: ...........................................) showen x20 y32 yd 7 mul sub moveto TBM (Farbmetrische Kennzeichnung mit PS\255Datei f\374r Farben der Spalten A bis T) showde (Colorimetric specification with PS file for colours in the columns A to T) showen x20 300 add y32 yd 8 mul sub moveto TM (Ersatz der CIELAB\255Daten in Datei) showde (Exchange of CIELAB data in file) showen TM ( www.ps.bam.de/De17/10L/L17e00NP.PS) showen ( www.ps.bam.de/Dg17/10L/L17g00NP.PS) showde TM ( und Transfer) showde ( and transfer) showen x20 300 add y32 yd 9 mul sub moveto TM (der PS\255Datei L17g00NP.PS in PDF\255Datei L17g00NP.PDF) showde (of the PS\255file L17e00NP.PS in PDF\255file L17e00NP.PDF) showen x20 8900 add y32 yd 9 mul sub moveto TBM (underline Yes/No) showen (unterstreiche Ja/Nein) showde x20 300 add y32 yd 10 mul sub moveto TM (Wenn Nein, bitte andere Methode beschreiben: ..............................) showde (If No, please describe other method: ......................................) showen } if %pchartl=1 showpage grestore %} for %pchartl=0,2 %} for %xchartl=0,7 %} for %xcolorl=0,3 %} for %colorml=0,1 %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 219 MM 020 MM translate 12 /Times-ISOL1 FS -9 MM -7 MM moveto ( ) show 10 /Times-ISOL1 FS 53 MM 1 MM moveto ( ) show 1 1 scale -77 -91 translate %%BeginDocument: Bild 28 %line 499 %!PS-Adobe-3.0 EPSF-3.0 OE621-8, %%BoundingBox: 70 90 226 206 /FS {findfont exch scalefont setfont} bind def /MM {72 25.4 div mul} def %%EndProlog gsave 8 /Times-Roman FS 72 83 moveto %!2 (OE621-8,) show 72 90 translate %! 0.01 MM 0.01 MM scale %! 15 setlinewidth %! 0 0 moveto 5400 0 rlineto 0 4000 rlineto -5400 0 rlineto %! closepath stroke grestore showpage %%Trailer %%EndDocument EndEPSF grestore gsave BeginEPSF 219 MM 080 MM add 008 MM translate %80 MM Breite von TestStreifen 10 /Times-ISOL1 FS 53 MM 1 MM moveto () show 1 1 scale -77 21 MM sub -91 translate %%BeginDocument: Bild 29 Teststreifen Ueberlaenge %line 509 %%EndDocument EndEPSF grestore gsave BeginEPSF -0.0 MM -0.0 MM translate %xy-Verschiebung Rechteckrahmen nach innen% %%BeginDocument: Bild 30 %Rechteckrahmen %line 519 %!PS-Adobe-3.0 EPSF-3.0 Frame arround with Internet text DG02 20110801 %%BoundingBox: 0 0 598 845 %%EndProlog gsave /lanind 1 def /lantex [(G) (E) (S) (N) (I) (J) (M)] def /showde {0 lanind eq {show} {pop} ifelse} bind def /showen {1 lanind eq {show} {pop} ifelse} bind def /showes {2 lanind eq {show} {pop} ifelse} bind def /showfr {3 lanind eq {show} {pop} ifelse} bind def /showit {4 lanind eq {show} {pop} ifelse} bind def /showjp {5 lanind eq {show} {pop} ifelse} bind def /showm {6 lanind eq {show} {pop} ifelse} bind def /lanindg where {pop /lanind1 lanindg def /lanind2 lanindg def} {/lanind1 1 def /lanind2 1 def} ifelse /colormg where {pop /colorm1 colormg def /colorm2 colormg def} {/colorm1 0 def /colorm2 0 def} ifelse /xcolorg where {pop /xcolor1 xcolorg def /xcolor2 xcolorg def} {/xcolor1 0 def /xcolor2 0 def} ifelse /xchartg where {pop /xchart1 xchartg def /xchart2 xchartg def /xchartd xchartgd def} {/xchart1 0 def /xchart2 0 def /xchartd 1 def} ifelse /pchartg where {pop /pchart1 pchartg def /pchart2 pchartg def /pchartd pchartgd def} {/pchart1 0 def /pchart2 0 def /pchartd 1 def} ifelse /colormf where {pop /colorm1 colormf def /colorm2 colormf def /colormd colormfd def} if /xcolorf where {pop /xcolor1 xcolorf def /xcolor2 xcolorf def /xcolord xcolorfd def} if /xchartf where {pop /xchart1 xchartf def /xchart2 xchartf def /xchartgd xchartfd def /xchartd xchartfd def} if /pchartf where {pop /pchart1 pchartf def /pchart2 pchartf def /pchartgd pchartfd def /pchartd pchartfd def} if /lanind lanind1 def %lanind1 1 lanind2 {/lanind exch def %output showpage /colorm colorm1 def %colorm1 1 colorm2 {/colorm exch def %output showpage /xcolor xcolor1 def %xcolor1 1 xcolor2 {/xcolor exch def %output showpage /xchart xchart1 def %xchart1 1 xchart2 {/xchart exch def %output showpage /pchart pchart1 def %pchart1 1 pchart2 {/pchart exch def %output showpage /GSS$ where {pop /LSS$ GSS$ def} {/LSS$ (1) def} ifelse /GSC$ where {pop /LSC$ GSC$ def} {/LSC$ (N) def} ifelse /GSX$ where {pop /LSX$ GSX$ def} {/LSX$ (0) def} ifelse /GSY$ where {pop /LSY$ GSY$ def} {/LSY$ (0) def} ifelse /GEX$ where {pop /LEX$ GEX$ def} {/LEX$ (P.PS./PDF) def} ifelse /GEY$ where {pop /LEY$ GEY$ def} {/LEY$ (P.DAT) def} ifelse /IMES where {pop %/IMES IMES def } {/IMES 0 def} ifelse /i*ptrsc where {pop %/i*ptrsc i*ptrsc def } {/i*ptrsc 0 def} ifelse /ISRL*ioG where {pop}{/ISRL*ioG 0 def} ifelse /ISIN*ioG where {pop}{/ISIN*ioG 0 def} ifelse /ISOU*ioG where {pop}{/ISOU*ioG 0 def} ifelse %pchart 0 eq {%beg if pchart=0 0 setgray 1.0 1.0 scale 0.0 MM 0.0 MM translate 0.15 MM setlinewidth /x 20 array def /y 20 array def /d 20 array def /x [000 296 296 000 002 294 294 002 005 291 291 005 %speziell 006 290 290 006 008 288 288 008 ] def /y [000 000 210 210 002 002 208 208 005 005 205 205 %speziell 006 006 204 204 008 008 202 202 ] def /d [060 017 -60 -17 058 015 -58 -15 056 013 -56 -13 054 011 -54 -11 052 009 -52 -09 ] def /xlu 017 MM def /ylu 017 MM def /xro 279 MM def /yro 193 MM def /xlo 017 MM def /ylo 193 MM def /xru 279 MM def /yru 017 MM def xlu 8 MM sub ylu moveto 16 MM 0 rlineto stroke xlu ylu 8 MM sub moveto 0 16 MM rlineto stroke xro 8 MM add yro moveto -16 MM 0 rlineto stroke xro yro 8 MM add moveto 0 -16 MM rlineto stroke xru 8 MM sub yru moveto 16 MM 0 rlineto stroke xru yru 8 MM sub moveto 0 16 MM rlineto stroke xlo 8 MM add ylo moveto -16 MM 0 rlineto stroke xlo ylo 8 MM add moveto 0 -16 MM rlineto stroke 1 2 7 {/i exch def %Zentrierkreise xlu ylu i MM 0 360 arc stroke xro yro i MM 0 360 arc stroke xru yru i MM 0 360 arc stroke xlo ylo i MM 0 360 arc stroke } for %i 12 4 16 {/i exch def /i0 i def %i=0,16 %0 4 16 {/i exch def /i0 i def %i=0,16 /i1 i0 1 add def /i2 i0 2 add def /i3 i0 3 add def i 16 eq {0.30 MM setlinewidth} {0.15 MM setlinewidth} ifelse 0 setgray x i0 get MM y i0 get MM moveto x i1 get MM y i1 get MM lineto x i2 get MM y i2 get MM lineto x i3 get MM y i3 get MM lineto x i0 get MM y i0 get MM lineto stroke i 16 eq {6 /Times-ISOL1 FS /x00 67 def /xdif 32 def /y0o 202.3 def /y0u 6.3 def /x0l 6.1 def /x0r 288 def /y00 22 def /ydif 32 def x00 xdif 0 mul add MM y0o MM moveto (V) show x00 xdif 0 mul add MM y0u MM moveto (C) show x00 xdif 1 mul add MM y0o MM moveto (L) show x00 xdif 1 mul add MM y0u MM moveto (M) show x00 xdif 2 mul add MM y0o MM moveto (O) show x00 xdif 2 mul add MM y0u MM moveto (Y) show x00 xdif 3 mul add MM y0o MM moveto (Y) show x00 xdif 3 mul add MM y0u MM moveto (O) show x00 xdif 4 mul add MM y0o MM moveto (M) show x00 xdif 4 mul add MM y0u MM moveto (L) show x00 xdif 5 mul add MM y0o MM moveto (C) show x00 xdif 5 mul add MM y0u MM moveto (V) show x0l MM y00 ydif 0 mul add MM moveto (V) show x0r MM y00 ydif 0 mul add MM moveto (C) show x0l MM y00 ydif 1 mul add MM moveto (L) show x0r MM y00 ydif 1 mul add MM moveto (M) show x0l MM y00 ydif 2 mul add MM moveto (O) show x0r MM y00 ydif 2 mul add MM moveto (Y) show x0l MM y00 ydif 3 mul add MM moveto (Y) show x0r MM y00 ydif 3 mul add MM moveto (O) show x0l MM y00 ydif 4 mul add MM moveto (M) show x0r MM y00 ydif 4 mul add MM moveto (L) show x0l MM y00 ydif 5 mul add MM moveto (C) show x0r MM y00 ydif 5 mul add MM moveto (V) show } if } for %i=0,16 0 1 10 {/j0 exch def /j1 j0 1 add def %j0 j0 0 eq {tzccmy0* setcmykcolor} if j0 1 eq {0 setgray} if j0 2 eq {tzmcmy0* setcmykcolor} if j0 3 eq {0 setgray} if j0 4 eq {tzycmy0* setcmykcolor} if j0 5 eq {0 setgray} if j0 6 eq {tzocmy0* setcmykcolor} if j0 7 eq {0 setgray} if j0 8 eq {tzlcmy0* setcmykcolor} if j0 9 eq {0 setgray} if j0 10 eq {tzvcmy0* setcmykcolor} if 12 4 16 {/i exch def /i0 i def %i=0,16 %0 4 16 {/i exch def /i0 i def %i=0,16 /i1 i0 1 add def /i2 i0 2 add def /i3 i0 3 add def i 16 eq {0.30 MM setlinewidth} {0.15 MM setlinewidth} ifelse x i0 get d i0 get add 16 j0 mul add MM y i0 get MM moveto x i0 get d i0 get add 16 j1 mul add MM y i0 get MM lineto stroke x i1 get MM y i1 get d i1 get add 16 j0 mul add MM moveto x i1 get MM y i1 get d i1 get add 16 j1 mul add MM lineto stroke x i2 get d i2 get add 16 j0 mul sub MM y i2 get MM moveto x i2 get d i2 get add 16 j1 mul sub MM y i2 get MM lineto stroke x i3 get MM y i3 get d i3 get add 16 j0 mul sub MM moveto x i3 get MM y i3 get d i3 get add 16 j1 mul sub MM lineto stroke } for %i=0,16 } for %j0 0.15 MM setlinewidth /s 7 MM def /s1 8 MM def /s5 36 MM def 16 1 20 {/j exch def /j0 j 16 sub def %j=16,20 /ix0 xlu 8 MM add j0 7 MM mul add def /iy0 ylu 8 MM sub def 0 1 3 {/ij exch def %ij=0,3 ij 0 eq {/ix0 xlu 8 MM add j0 7 MM mul add def /iy0 ylu 8 MM sub def} if ij 1 eq {/ix0 xru 43 MM sub j0 7 MM mul add def /iy0 yru 8 MM sub def} if ij 2 eq {/ix0 xlo 8 MM add j0 7 MM mul add def /iy0 ylo 1 MM add def} if ij 3 eq {/ix0 xro 43 MM sub j0 7 MM mul add def /iy0 yro 1 MM add def} if i*ptrsc 0 eq i*ptrsc 2 eq or {%i*ptrsc=0,2 cmy0* setcmykcolor j 16 eq {/ng tzan j get def ng ng ng 0 setcmykcolor ix0 0.5 MM sub iy0 0.5 MM sub s5 s1 rec fill} if /ng tzan j get def ng ng ng 0 setcmykcolor ix0 iy0 s s rec fill } if %i*ptrsc=0,2 i*ptrsc 1 eq i*ptrsc 3 eq or {%i*ptrsc=1,3 www* setrgbcolor j 16 eq {/wg 1 tzan j get sub def wg wg wg setrgbcolor ix0 0.5 MM sub iy0 0.5 MM sub s5 s1 rec fill} if /wg 1 tzan j get sub def wg wg wg setrgbcolor ix0 iy0 s s rec fill } if %i*ptrsc=1,3 i*ptrsc 4 eq i*ptrsc 5 eq or {%i*ptrsc=4,5 [/CIEBasedABC << %Farbraum und Grenzen fuer D65 /RangeABC [0 100 -128 127 -128 127] /DecodeABC [{16 add 116 div} bind {500 div} bind {200 div} bind] /MatrixABC [1 1 1 1 0 0 0 0 -1] /DecodeLMN [{dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse 0.9505 mul} bind {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse} bind {dup 6 29 div ge {dup dup mul mul} {4 29 div sub 108 841 div mul} ifelse 1.0890 mul} bind] /WhitePoint [0.9505 1 1.089] %CIEXYZ fuer D65 >>] setcolorspace j 16 eq {tznLAB* 0 get tzwLAB* 0 get tznLAB* 0 get sub 0.25 j0 mul mul add tznLAB* 1 get tzwLAB* 1 get tznLAB* 1 get sub 0.25 j0 mul mul add tznLAB* 2 get tzwLAB* 2 get tznLAB* 2 get sub 0.25 j0 mul mul add setcolor %N ix0 0.5 MM sub iy0 0.5 MM sub s5 s1 rec fill} if tznLAB* 0 get tzwLAB* 0 get tznLAB* 0 get sub 0.25 j0 mul mul add tznLAB* 1 get tzwLAB* 1 get tznLAB* 1 get sub 0.25 j0 mul mul add tznLAB* 2 get tzwLAB* 2 get tznLAB* 2 get sub 0.25 j0 mul mul add setcolor %N ix0 iy0 s s rec fill } if %i*ptrsc=4,5 i*ptrsc 6 eq {%i*ptrsc=6 000n* setcmykcolor j 16 eq {/ng tzan j get def 0 0 0 ng setcmykcolor ix0 0.5 MM sub iy0 0.5 MM sub s5 s1 rec fill} if /ng tzan j get def 0 0 0 ng setcmykcolor ix0 iy0 s s rec fill } if %i*ptrsc=6 i*ptrsc 7 eq {%i*ptrsc=7 w* setgray j 16 eq {/wg 1 tzan j get sub def wg setgray ix0 0.5 MM sub iy0 0.5 MM sub s5 s1 rec fill} if /wg 1 tzan j get sub def wg setgray ix0 iy0 s s rec fill } if %i*ptrsc=7 } for %ij=0,3 } for %j=16,20 0 setgray 018 MM 008.2 MM moveto 6 /Times-Roman FS (-8) show 018 MM 006.2 MM moveto 6 /Times-Roman FS (-6) show 276 MM 008.2 MM moveto 6 /Times-Roman FS (-8) show 276 MM 006.2 MM moveto 6 /Times-Roman FS (-6) show 018 MM 202.2 MM moveto 6 /Times-Roman FS (-8) show 018 MM 204.2 MM moveto 6 /Times-Roman FS (-6) show 276 MM 202.2 MM moveto 6 /Times-Roman FS (-8) show 276 MM 204.2 MM moveto 6 /Times-Roman FS (-6) show 0 setgray 12 /Times-ISOL1 FS 61 MM 13.5 MM moveto pchart 0 eq {%pchart=0 (OE62: \344hnlich MG16 nach ISO 9241\255306) showde (OE62: similar ME16 according to ISO 9241\255306) showen } if %pchart=0 pchart 1 eq {%pchart=1 (OE62: Vordruck A f\374r Pr\374fvorlage nach ISO 9241\255306) showde (OE62: Form A for test chart according to ISO 9241\255306) showen } if %pchart=1 pchart 2 eq {%pchart=2 (OE62: Ein\255Ausgabe\255Beziehung nach ISO 9241\255306) showde (OE62: In\255output relation according to ISO 9241\255306) showen } if %pchart=2 /DEH 1 def colorm 0 eq {(; DH) show} {DEH 0 eq {(; 1MR, DH) show} {(; 1MR, DEH) show} ifelse} ifelse /Ycont 8 array def /Ycont [(88,9:0,31) (88,9:0,62) (88,9:1,25) (88,9:2,5) (88,9:5) (88,9:10) (88,9:20) (88,9:40)] def /Yrang 8 array def /Yrang [(0,0 to <0,46) (0,46 to <0,93) (0,93 to <1,87) (1,87 to <3,75) (3,75 to <7,5) (7,5 to <15) (15 to <30) (30 to <60)] def 61 MM 09.5 MM moveto (Gesehener) showde (Viewing) showen 12 /TimesI-ISOL1 FS ( Y) show 12 /Times-ISOL1 FS (\255Kontrast ) showde ( contrast ) showen 12 /TimesI-ISOL1 FS (Y) show 10 /Times-ISOL1 FS 0 -2 rmoveto (W) show 0 2 rmoveto 12 /TimesI-ISOL1 FS (:) show (Y) show 10 /Times-ISOL1 FS 0 -2 rmoveto (N) show 0 2 rmoveto 12 /Times-ISOL1 FS (=) show Ycont xchart xchartd idiv get show (; ) show 12 /TimesI-ISOL1 FS (Y) show 10 /Times-ISOL1 FS 0 -2 rmoveto (N) show 0 2 rmoveto 12 /Times-ISOL1 FS ( range ) showen (\255Bereich ) showde Yrang xchart xchartd idiv get show 12 /Times-ISOL1 FS 173 MM 13.5 MM moveto ( input: ) showen (Eingabe: ) showde 12 /TimesI-ISOL1 FS (cmy0 ) show (\050->rgb*) show 10 /Times-ISOL1 FS -1 -2 rmoveto colorm 0 eq {(d) show} {DEH 0 eq {(d) show} {(de) show} ifelse} ifelse 0 2 rmoveto 12 /TimesI-ISOL1 FS (\051) show ( setcmyk) show %xcolor 0 eq {(000n* setcmykcolor) show} if %xcolor 1 eq {(w* setgray) show} if %xcolor 2 eq {(nnn0* setcmykcolor) show} if %xcolor 3 eq {(www* setrgbcolor) show} if 12 /Times-ISOL1 FS 173 MM 9.5 MM moveto ( output ) showen (Ausgabe ) showde %(OE62) show %(\255) show colorm cvishow xcolor cvishow xchartd 1 eq {xchart cvishow} {xchart xchart 8 idiv 8 mul sub cvishow} ifelse (\255) show pchart cvishow (: ) show LSC$ (N) eq { (no change) showen (keine \304nderung) showde } if %1 setgray %start white and unvisible LSC$ (S) eq { (Startup (S) data dependend) showen (Startup(S)Daten abh\344ngig) showde } if LSC$ (F) eq {12 /TimesI-ISOL1 FS (g) show 10 /TimesI-ISOL1 FS 0 -2 rmoveto (P) show 0 2 rmoveto 12 /Times-ISOL1 FS (=) show /xchartN xchart 8 idiv def /xchartP xchart xchart 8 idiv 8 mul sub def /gammaNl 1 2.4 xchartN 0.18 mul sub 2.4 div div def /gammaPl 2.4 xchartP 0.18 mul sub 2.4 div def gammaPl cvsshow2 (; ) show 12 /TimesI-ISOL1 FS (g) show 10 /TimesI-ISOL1 FS 0 -2 rmoveto (N) show 0 2 rmoveto 12 /Times-ISOL1 FS (=) show gammaNl cvsshow2 } if 12 /Times-ISOL1 FS 62 MM 198.5 MM moveto (http://130.149.60.45/~farbmetrik/OE62/OE62) show (L0N) show %LSC$ show LEX$ show %1 setgray %start white and unvisible (; ) show LSC$ (N) eq { (Start\255Ausgabe) showde (start output) showen (start output) showes (start output) showfr (start output) showit (start output) showjp (start output) showm } if LSC$ (C) eq { (Start\255Ausgabe) showde (start output) showen (start output) showes (start output) showfr (start output) showit (start output) showjp (start output) showm } if LSC$ (F) eq { (Linearisierte\255Ausgabe) showde (linearized output) showen (linearized output) showes (linearized output) showfr (linearized output) showit (linearized output) showjp (linearized output) showm } if (, Page ) showen (, Seite ) showde pchart 1 add cvishow (/3) show 62 MM 194 MM moveto LSC$ (N) eq LSC$ (C) eq or { (N: Keine Ausgabe\255Linearisierung (OL) in Datei (F), Startup (S), Ger\344t (D)) showde (N: No Output Linearization (OL) data in File (F), Startup (S) or Device (D)) showen (N: No Output Linearization (OL) data in File (F), Startup (S) or Device (D)) showes (N: No Output Linearization (OL) data in File (F), Startup (S) or Device (D)) showfr (N: No Output Linearization (OL) data in File (F), Startup (S) or Device (D)) showit (N: No Output Linearization (OL) data in File (F), Startup (S) or Device (D)) showjp (N: No Output Linearization (OL) data in File (F), Startup (S) or Device (D)) showm } {LSC$ show (: ) show (Ausgabe\255Linearisierung (OL\255Daten) ) showde (Output Linearization (OL) data ) showen (Output Linearization (OL) data ) showes (Output Linearization (OL) data ) showfr (Output Linearization (OL) data ) showit (Output Linearization (OL) data ) showjp (Output Linearization (OL) data ) showm (OE62/OE62) show (L0N) show %LSC$ show LEX$ show } ifelse LSC$ (F) eq { ( in der Datei (F)) showde ( in File (F)) showen ( in File (F)) showes ( in File (F)) showfr ( in File (F)) showit ( in File (F)) showjp ( in File (F)) showm } if LSC$ (S) eq { ( im Distiller Startup (S) Directory) showde ( in Distiller Startup (S) Directory) showen ( in Distiller Startup (S) Directory) showes ( in Distiller Startup (S) Directory) showfr ( in Distiller Startup (S) Directory) showit ( in Distiller Startup (S) Directory) showjp ( in Distiller Startup (S) Directory) showm } if LSC$ (D) eq { ( in PostScript Device (D)) showde ( in PostScript Device (D)) showen ( in PostScript Device (D)) showes ( in PostScript Device (D)) showfr ( in PostScript Device (D)) showit ( in PostScript Device (D)) showjp ( in PostScript Device (D)) showm } if LSC$ (T) eq { ( von Distiller Startup (S) Directory) showde ( of Distiller Startup (S) Directory) showen ( of Distiller Startup (S) Directory) showes ( of Distiller Startup (S) Directory) showfr ( of Distiller Startup (S) Directory) showit ( of Distiller Startup (S) Directory) showjp ( of Distiller Startup (S) Directory) showm } if LSC$ (E) eq { ( von PostScript Device (D)) showde ( of PostScript Device (D)) showen ( of PostScript Device (D)) showes ( of PostScript Device (D)) showfr ( of PostScript Device (D)) showit ( of PostScript Device (D)) showjp ( of PostScript Device (D)) showm } if %0 setgray %end white and unvisible 16 MM 185 MM moveto -90 rotate (\394hnliche ISO\255Pr\374fvorlagen: ) showde (See similar ISO test charts: ) showen (See for similar files: ) showes (See for similar files: ) showfr (See for similar files: ) showit (See for similar files: ) showjp (See for similar files: ) showm (http://www.ps.bam.de/24705TE) showen (http://www.ps.bam.de/24705T) showde ( , ) show (http://www.ps.bam.de/9241E) showen (http://www.ps.bam.de/9241) showde 90 rotate 12 MM 185 MM moveto -90 rotate (Technische Information: ) showde (Technical information: ) showen (Informaci\363n t\351cnica en: ) showes (Technical information: ) showfr (Technical information: ) showit (Technical information: ) showjp (Technical information: ) showm (http://www.ps.bam.de/33872) showde (http://www.ps.bam.de/33872E) showen 90 rotate 12 MM 90 MM moveto -90 rotate (Version 2.1, io=1,) show LSC$ (N) eq {(1) show} if LSC$ (S) eq {(1?) show} if LSC$ (D) eq {(1?) show} if LSC$ (F) eq {i*ptrsc cvishow IMES 0 eq {(, CIELAB) show} {(, CIEXYZ) show} ifelse } if 90 rotate 281 MM 185 MM moveto -90 rotate (TUB\255Registrierung: 20110801\255OE62/OE62) showde (TUB registration: 20110801\255OE62/OE62) showen (TUB registration: 20110801\255OE62/OE62) showes (TUB registration: 20110801\255OE62/OE62) showfr (TUB registration: 20110801\255OE62/OE62) showit (TUB registration: 20110801\255OE62/OE62) showjp (TUB registration: 20110801\255OE62/OE62) showm (L0N) show %LSC$ show LEX$ show 90 rotate 281 MM 74 MM moveto -90 rotate (TUB\255Material: Code=rha4ta) showde (TUB material: code=rha4ta) showen (TUB material: code=rha4ta) showes (TUB material: code=rha4ta) showfr (TUB material: code=rha4ta) showit (TUB material: code=rha4ta) showjp (TUB material: code=rha4ta) showm 90 rotate 277 MM 185 MM moveto -90 rotate /cvishow {cvi 6 string cvs show} def /cvsshow1 {10 mul cvi 0.1 mul 7 string cvs show} def ( Anwendung f\374r Ausgabe von Displays:) showde ( Monitor\255 oder Datenprojektor\255System) showde ( application for output of displays:) showen ( monitor systems or data projector systems) showen IMES 1 eq LSC$ (N) ne and { %IMES=1 (, Yr=) show Yre cvsshow1 (, XYZ) show } if %IMES=1 90 rotate /i0 8 def /i1 i0 1 add def /i2 i0 2 add def /i3 i0 3 add def 0.30 MM setlinewidth 0 setgray x i0 get MM y i0 get MM moveto x i1 get MM y i1 get MM lineto x i2 get MM y i2 get MM lineto x i3 get MM y i3 get MM lineto x i0 get MM y i0 get MM lineto stroke %} if %end if pchart=0 %/xlu1 013 MM def /ylu1 010 MM def %/xro1 283 MM def /yro1 200 MM def %/xlo1 013 MM def /ylo1 200 MM def %/xru1 283 MM def /yru1 010 MM def %xlu1 4 MM sub ylu1 moveto 8 MM 0 rlineto stroke %xlu1 ylu1 4 MM sub moveto 0 8 MM rlineto stroke %xro1 4 MM add yro1 moveto -8 MM 0 rlineto stroke %xro1 yro1 4 MM add moveto 0 -8 MM rlineto stroke %xru1 4 MM sub yru1 moveto 8 MM 0 rlineto stroke %xru1 yru1 4 MM sub moveto 0 8 MM rlineto stroke %xlo1 4 MM add ylo1 moveto -8 MM 0 rlineto stroke %xlo1 ylo1 4 MM add moveto 0 -8 MM rlineto stroke %%Trailer %%EndDocument EndEPSF grestore gsave showpage grestore %} for %end for %pchartg=pchartg1,pchartg2 %} for %end for %xchartg=xchartg1,xchartg2 %} for %end for %xcolorg=xcolorg1,xcolorg2 %} for %end for %colormg=colormg1,colormg2 %%Trailer %END INCLUDE TEST FILE at line 1270 %%EndDocument EndEPSFF grestore gsave showpage grestore } for %END for pchartf=pchartf10,pchartfd,pchartf20 } for %END for xchartf=xchartf10,xchartfd,xchartf20 } for %END for xcolorf=xcolorf10,xcolorfd,xcolorf20 } for %END for colormf=colormf10,colormfd,colormf20 %%Trailer