|
NAMEeps2png - convert EPS files to PNG, JPG or GIF imagesConverts files from EPS format (Encapsulated PostScript) to some popular image formats. SYNOPSISuse App::eps2png; App::eps2png->run(); # takes args from @ARGV When installed as a program: eps2png [ options ] files ... eps2gif [ options ] files ... eps2jpg [ options ] files ... DESCRIPTIONConverts files from EPS format (Encapsulated PostScript) to some popular image formats.If installed as "eps2png" (the default), it produces PNG images by default. Likewise, "eps2gif" defaults to GIF images and "eps2jpg" defaults to JPG. Note that the normal installation procedure will only install "eps2png". It uses GhostScript to produce the images. Since modern GhostScript programs do not support GIF anymore, GIF images are produced via the Portable PixMap converters (PBM-package). In this case, a temporary file is created, named after the output file, with the extension replaced by ".ppm". It is deleted upon completion. ARGUMENTSeps2png always requires at least one argument: the name of the EPS file to be converted. It is possible to specify more than one file name. This will cause all named files to be converted into separate files, e.g., ""sample.eps"" will be converted to ""sample.png"" and so on.
AUTHORJohan Vromans, <jv@cpan.org>.BUGSGhostScript needs to be installed and accessible through the user's "PATH".If required for GIF images, the "ppmtogif" tool from the PBM package needs to be installed and accessible through the user's "PATH". GhostScript is assumed to be capable of handling all the image types listed above. The EPS should be well-behaving. Development of this program takes place on GitHub: https://github.com/sciurius/eps2png. You can find documentation for this module with the perldoc command. perldoc eps2png Please report any bugs or feature requests using the issue tracker on GitHub. COPYRIGHT AND DISCLAIMERThis program is Copyright 1992,2008,2020 by Johan Vromans.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |