diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2009-09-11 12:35:31 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2009-09-11 12:35:31 +0000 |
commit | c74d5b3b40861395779da7583f4d67bfbc160088 (patch) | |
tree | 6e905f7e1ca0f42dc11a2e88f5eef7fdef09906e /Master/texmf-dist/scripts | |
parent | d4bff4285d3ad8036e2dedee0ffc1ea2aac3e05a (diff) |
Update to version 0.4.2
git-svn-id: svn://tug.org/texlive/trunk@15223 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r-- | Master/texmf-dist/scripts/epspdf/epspdf.help | 29 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/epspdf/epspdf.rb | 2 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/epspdf/epspdfrc.rb | 2 |
3 files changed, 21 insertions, 12 deletions
diff --git a/Master/texmf-dist/scripts/epspdf/epspdf.help b/Master/texmf-dist/scripts/epspdf/epspdf.help index 2ad5ab13ddc..1fac2734fa8 100644 --- a/Master/texmf-dist/scripts/epspdf/epspdf.help +++ b/Master/texmf-dist/scripts/epspdf/epspdf.help @@ -1,13 +1,14 @@ Epspdf and epsdftk ****************** -This manual is for epspdf, version 0.4.1. +This manual is for epspdf, version 0.4.2. Copyright (C) 2006, 2007, 2008, 2009 Siep Kroonenberg. - Permission is granted to make and distribute verbatim copies of - this entire document without royalty provided the copyright notice - and this notice are preserved. + Copying and distribution of this file, with or without + modification, are permitted in any medium without royalty provided + the copyright notice and this notice are preserved. This file is + offered as-is, without any warranty. 1 Usage ******* @@ -147,7 +148,7 @@ for Unix/Linux/OS X, or for Windows. It is the responsibility of the caller to provide double quotes. -The TeX Live package for epspdf already includes such wrapper scripts. +The TeX Live package for epspdf already includes a wrapper. Basic usage: @@ -158,9 +159,9 @@ Basic usage: The summary below is the output of a command `epspdf --help' for help. $ epspdf --help - Epspdf version 0.4.1 + Epspdf version 0.4.2 Copyright (C) 2006, 2008, 2009 Siep Kroonenberg - Epspdf 0.4.1 + Epspdf 0.4.2 Convert between [e]ps and pdf formats Usage: epspdf.rb [options] infile [outfile] Default for outfile is file.pdf if infile is file.eps or file.ps @@ -301,6 +302,12 @@ stuck with .eps format. Tips for converting to .eps: 4.1 Linux ========= +_sam2p_ + This command-line bitmap-to-PostScript/pdf conversion utility is + available from `http://code.google.com/p/sam2p/' and may already be + packaged for your distribution. It produces very small files: + `sam2p image.png image.eps' + _ImageMagick/convert_ `convert' from the ImageMagick package is a command-line utility: `convert image.png image.eps' @@ -324,16 +331,18 @@ pdf. A couple of command-line utilities try to fill the gap, _e.g._ sam2p image.png image.eps or bmeps -c image.png image.eps -sam2p is distributed with TeX Live, bmeps both with TeX Live and with -MikTeX. Without the `-c' option, bmeps produces a grayscale image. It -produces larger files than sam2p. +sam2p is distributed with TeX Live (Windows only), bmeps both with TeX +Live and with MikTeX. Without the `-c' option, bmeps produces a +grayscale image. It produces larger files than sam2p. 4.3.1 GUI use of sam2p and bmeps -------------------------------- Create a batchfile `bitmap2eps.bat' with contents + sam2p "%~1" "%~dpn1.eps" (TeX Live) or + bmeps -c "%~1" "%~dpn1.eps" (MikTeX) and place it _e.g._ on your desktop. Now if you drop a bitmapped graphic on this batchfile then you will get an eps file with diff --git a/Master/texmf-dist/scripts/epspdf/epspdf.rb b/Master/texmf-dist/scripts/epspdf/epspdf.rb index 09462af8330..0b47db2c505 100755 --- a/Master/texmf-dist/scripts/epspdf/epspdf.rb +++ b/Master/texmf-dist/scripts/epspdf/epspdf.rb @@ -1145,7 +1145,7 @@ save_settings = false opts = OptionParser.new do |opts| # for help output - opts.banner = "Epspdf 0.4.0" + opts.banner = "Epspdf 0.4.2" opts.separator "Convert between [e]ps and pdf formats" opts.separator "Usage: epspdf.rb [options] infile [outfile]" opts.separator "" diff --git a/Master/texmf-dist/scripts/epspdf/epspdfrc.rb b/Master/texmf-dist/scripts/epspdf/epspdfrc.rb index 9a4ae5998d5..d9751ff970f 100755 --- a/Master/texmf-dist/scripts/epspdf/epspdfrc.rb +++ b/Master/texmf-dist/scripts/epspdf/epspdfrc.rb @@ -1,4 +1,4 @@ -EPVERSION = '0.4.1' +EPVERSION = '0.4.2' COPYRIGHT = '2006, 2008, 2009' # epspdf conversion utility, configuration module |