--- loncom/interface/printout.pl 2002/04/10 16:23:24 1.5 +++ loncom/interface/printout.pl 2002/04/12 13:46:11 1.6 @@ -1,38 +1,28 @@ #!/usr/bin/perl - use Image::Magick; +use IO::File; print "Content-type: text/html\n\n"; print "\n"; print "

OUTPUT is in the PDF FILE below

\n"; -my ($texfile,$laystyle,$notepslist) = split(/&/,$ENV{'QUERY_STRING'}); - -#if ($notepslist ne '') { -# my $image = Image::Magick->new; - my $newnotepslist = $notepslist; - $newnotepslist =~ s/\.eps/\.gif/; -# $image->Read("gif:$newnotepslist"); -# $image->Set(page => '+100+200'); - $_ = $notepslist; - m/\/(\w+\.eps)/; - $notepslist = $1; -# $image->Write("eps:$notepslist"); -# open(EPS,$notepslist) or die "Couldn't open the EPS file: $!"; -# undef $/; -# my $eps = ; -# close EPS; - $notepslist = '/home/httpd/prtspool/'.$1; -# open(OUT,'>'.$notepslist) or die "Couldn't open the output EPS file: $!"; -# print OUT <new($texfile) || die "Couldn't open file for reading: $!\n"; + my @content_of_file = <$temporary_file>; + my $content_file_string = join(' ',@content_of_file); + my $b_noteps = index($content_file_string,'\needepsconversion{',0); + while ($b_noteps != -1) { + my $e_noteps = index($content_file_string,'}',$b_noteps); + my $notepslist = substr($content_file_string,$b_noteps+19,$e_noteps-$b_noteps-19); + my $newnotepslist = $notepslist; + $newnotepslist =~ s/\..*$/\.eps/; + $_ = $newnotepslist; + m/\/(\w+\.eps)/; + $newnotepslist = $1; + $newnotepslist = '/home/httpd/prtspool/'.$1; + system("convert gif:$notepslist eps:$newnotepslist" ); + $b_noteps = index($content_file_string,'\needepsconversion{',$e_noteps); + } + close $temporary_file; +} print "$texfile\n"; $_ = $texfile; m/^(.*)\/([^\/]+)$/;