Difference between revisions of "Sam2p"
From MohidWiki
(New page: sam2p is a little utility that allows to convert between image file formats. ==See also== *Convert ==External links== *[http://code.google.com/p/sam2p/ sam2p google code homepage...) |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[sam2p]] is a little utility that allows to convert between image file formats. | + | [[sam2p]] is a little utility that allows to convert between image file formats. Better than [[convert]] (generated eps filesizes are one-hundredfold smaller). |
+ | |||
+ | ==Example== | ||
+ | Converting from jpg to eps: | ||
+ | > sam2p file.jpg EPS: file.eps | ||
+ | |||
+ | Batch convert from jpg to eps (windows): | ||
+ | > for %i in (*.jpg) do sam2p %i EPS: %~ni.eps | ||
==See also== | ==See also== |
Latest revision as of 00:42, 17 January 2010
sam2p is a little utility that allows to convert between image file formats. Better than convert (generated eps filesizes are one-hundredfold smaller).
Example
Converting from jpg to eps:
> sam2p file.jpg EPS: file.eps
Batch convert from jpg to eps (windows):
> for %i in (*.jpg) do sam2p %i EPS: %~ni.eps