summaryrefslogtreecommitdiffstats
path: root/introduction-to-gnome/C/figures/img2eps
diff options
context:
space:
mode:
Diffstat (limited to 'introduction-to-gnome/C/figures/img2eps')
-rwxr-xr-xintroduction-to-gnome/C/figures/img2eps58
1 files changed, 0 insertions, 58 deletions
diff --git a/introduction-to-gnome/C/figures/img2eps b/introduction-to-gnome/C/figures/img2eps
deleted file mode 100755
index eebd959..0000000
--- a/introduction-to-gnome/C/figures/img2eps
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/usr/bin/perl
-#
-#
-# convert image to Encapsulated Postscript, with possible scaling of width
-#
-
-$width = "";
-
-if ($ARGV[0] =~ /^--width=(.+)$/) {
- $width = $1;
- shift (@ARGV);
-}
-
-#print "width =",$width,"\n";
-
-#print "argv =",$ARGV[0],"\n";
-
-$infile = $ARGV[0];
-
-if (!(-e $infile)) {
-print "File doesn't exist\n";
-exit 1;
-}
-
-$imagesz = `identify $ARGV[0]`;
-
-($name, $size, $rest) = split / /, $imagesz, 3;
-#print $name, " ", $size, " ", $rest, "\n";
-#print "imagesz = ",$size,"\n";
-
-($x, $y) = split /x/, $size, 2;
-($y, $rest) = split /\+/, $y, 2;
-
-#print $x," by ",$y, "\n";
-
-#
-# if width set, we need to scale
-#
-
-if ($width != "") {
- $scale = $width * (72.0/$x);
-} else {
- $scale = 1;
-}
-
-$scale = 72.0/$scale;
-#print "scale = ",$scale,"\n";
-
-$outfile = $infile;
-$outfile =~ s/\.png/\.eps/;
-
-#print $infile," ",$outfile,"\n";
-system("convert $infile tmpimage.pgm");
-#system("giftopnm $infile | ppmtopgm > tmpimage.pgm");
-system("convert -density $scale tmpimage.pgm $outfile");
-system("rm tmpimage.pgm");
-
-