| Server IP : 85.214.239.14 / Your IP : 216.73.216.4 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/proc/2/root/proc/3/root/bin/ |
Upload File : |
#!/usr/bin/perl
eval 'exec perl -S $0 "$@"'
if $running_under_some_shell;
# fixwfwps: fix Word for windows PostScript for printing.
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.
$nesting = 0;
while (<>) {
tr/\000-\010\012-\014\016-\037//d;
foreach (grep($_ ne "", split("\015"))) {
s!/SVDoc\s+save\s+def!!g;
s!SVDoc\s+restore!!g;
if (/^(%!PS-Adobe-\d*\.\d*) EPSF-/ && !$nesting) {
print "$1\n";
$wfwepsf = 1;
} elsif (/^SS\s*$/ && $wfwepsf) {
print "%%Page: $wfwepsf $wfwepsf\n";
$wfwepsf++;
print "$_\n";
} elsif (/^%MSEPS Preamble/) {
print "%%BeginDocument: (Included EPSF)\n";
print "$_\n";
$nesting++;
} elsif (/^%MSEPS Trailer/) {
$nesting--;
print "$_\n";
print "%%EndDocument\n";
} elsif (! /^%%BoundingBox/) {
print "$_\n";
}
}
}