PATH: //usr/share/ghostscript/Resource/Init
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 FAPIcidfmap
↓
X
📄 FAPIconfig
↓
X
📄 FAPIfontmap
↓
X
📄 FCOfontmap-PCLPS2
↓
X
📄 Fontmap
↓
X
📄 Fontmap.GS
↓
X
📄 cidfmap
↓
X
📄 gs_agl.ps
↓
X
📄 gs_btokn.ps
↓
X
📄 gs_cet.ps
↓
X
📄 gs_cff.ps
↓
X
📄 gs_cidcm.ps
↓
X
📄 gs_ciddc.ps
↓
X
📄 gs_cidfm.ps
↓
X
📄 gs_cidfn.ps
↓
X
📄 gs_cidtt.ps
↓
X
📄 gs_cmap.ps
↓
X
📄 gs_cspace.ps
↓
X
📄 gs_dbt_e.ps
↓
X
📄 gs_diskn.ps
↓
X
📄 gs_dps1.ps
↓
X
📄 gs_dps2.ps
↓
X
📄 gs_dscp.ps
↓
X
📄 gs_epsf.ps
↓
X
📄 gs_fapi.ps
↓
X
📄 gs_fntem.ps
↓
X
📄 gs_fonts.ps
↓
X
📄 gs_frsd.ps
↓
X
📄 gs_icc.ps
↓
X
📄 gs_il1_e.ps
↓
X
📄 gs_img.ps
↓
X
📄 gs_init.ps
↓
X
📄 gs_lev2.ps
↓
X
📄 gs_ll3.ps
↓
X
📄 gs_mex_e.ps
↓
X
📄 gs_mgl_e.ps
↓
X
📄 gs_mro_e.ps
↓
X
📄 gs_pdf_e.ps
↓
X
📄 gs_pdfwr.ps
↓
X
📄 gs_res.ps
↓
X
📄 gs_resmp.ps
↓
X
📄 gs_setpd.ps
↓
X
📄 gs_statd.ps
↓
X
📄 gs_std_e.ps
↓
X
📄 gs_sym_e.ps
↓
X
📄 gs_trap.ps
↓
X
📄 gs_ttf.ps
↓
X
📄 gs_typ32.ps
↓
X
📄 gs_typ42.ps
↓
X
📄 gs_type1.ps
↓
X
📄 gs_wan_e.ps
↓
X
📄 pdf_base.ps
↓
X
📄 pdf_draw.ps
↓
X
📄 pdf_font.ps
↓
X
📄 pdf_main.ps
↓
X
📄 pdf_ops.ps
↓
X
📄 pdf_rbld.ps
↓
X
📄 pdf_sec.ps
↓
X
📄 xlatmap
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: gs_dps1.ps
% Copyright (C) 2001-2021 Artifex Software, Inc. % All Rights Reserved. % % This software is provided AS-IS with no warranty, either express or % implied. % % This software is distributed under license and may not be copied, % modified or distributed except as expressly authorized under the terms % of the license contained in the file LICENSE in this distribution. % % Refer to licensing information at http://www.artifex.com or contact % Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato, % CA 94945, U.S.A., +1(415)492-9861, for further information. % % Initialization file for most of the Display PostScript functions % that are also included in Level 2. level2dict begin % ------ Virtual memory ------ % /currentshared /.currentglobal load def /scheck {.gcheck} bind odef %****** FOLLOWING IS WRONG ****** /shareddict currentdict /globaldict .knownget not { 20 dict } if def % Global and LocalFontDirectory must remain in systemdict % even if we temporarily exit Level 2 mode. end % level2dict systemdict begin /SharedFontDirectory .FontDirectory .gcheck { .currentglobal //false .setglobal currentdict /LocalFontDirectory .FontDirectory dup maxlength dict copy .forceput % LocalFontDirectory is local, systemdict is global .setglobal .FontDirectory } executeonly { currentdict /LocalFontDirectory .FontDirectory .forceput % LocalFontDirectory is local, systemdict is global 50 dict }executeonly ifelse def end % systemdict level2dict begin % setshared must rebind FontDirectory to the appropriate one of % Local or SharedFontDirectory. /.setglobal % <bool> .setglobal - { dup .setglobal //systemdict /FontDirectory .currentglobal { //SharedFontDirectory } { /LocalFontDirectory .systemvar } % can't embed ref to local VM ifelse .forceput pop % LocalFontDirectory is local, systemdict is global } .bind executeonly odef % Don't just copy (load) the definition of .setglobal: % it gets redefined for LL3. /setshared { /.setglobal .systemvar exec } odef .currentglobal setshared % See below for changes in save and restore. % ------ Fonts ------ % /selectfont % <fontname> <size> selectfont - { { 1 .argindex findfont 1 index dup type /arraytype eq { makefont } { scalefont } ifelse setfont pop pop } stopped { /selectfont .systemvar $error /errorname get signalerror } if } odef % undefinefont has to take local/global VM into account. /undefinefont % <fontname> undefinefont - { //.FontDirectory 1 .argindex .forceundef % FontDirectory is readonly .currentglobal { % Current mode is global; delete from local directory too. //systemdict /LocalFontDirectory .knownget { 1 index .forceundef } executeonly % LocalFontDirectory is readonly if } { % Current mode is local; if there was a shadowed global % definition, copy it into the local directory. //systemdict /SharedFontDirectory .knownget { 1 index .knownget { //.FontDirectory 2 index 3 -1 roll .forceput } % readonly if } if } ifelse pop } odef % If we load a font into global VM within an inner save, the restore % will delete it from FontDirectory but not from SharedFontDirectory. % We have to handle this by making restore copy missing entries from % SharedFontDirectory to FontDirectory. Since this could slow down restore % considerably, we define a new operator .forcecopynew for this purpose. % Furthermore, if FAKEFONTS is in effect, we want global real fonts to % override fake local ones. We handle this by brute force. /restore % <save> restore - { dup //restore /LocalFontDirectory .systemvar FAKEFONTS { mark % We want to delete a fake font from the local directory % iff the global directory now has no definition for it, % or a non-fake definition. 1 index dup { % Stack: lfd mark lfd key ... lfd key value length 1 gt { % This is a real local definition; don't do anything. pop } { % This is a fake local definition, check for global. //SharedFontDirectory 1 index .knownget { % A global definition exists, check for fake. length 1 eq { pop } { 1 index } ifelse } { % No global definition, delete the local one. 1 index } ifelse } ifelse } forall pop counttomark 2 idiv { .forceundef } executeonly repeat pop % readonly } if //SharedFontDirectory exch .forcecopynew pop .currentglobal .setglobal % Rebind FontDirectory according to current VM. pop } .bind odef end % level2dict
SIMPAN PERUBAHAN