Difference between revisions of "Sam2p"
From MohidWiki
(One intermediate revision 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== | ==Example== | ||
− | Converting from jpg to eps | + | Converting from jpg to eps: |
> sam2p file.jpg EPS: file.eps | > sam2p file.jpg EPS: file.eps | ||
− | Batch convert from jpg to eps (windows) | + | Batch convert from jpg to eps (windows): |
> for %i in (*.jpg) do sam2p %i EPS: %~ni.eps | > for %i in (*.jpg) do sam2p %i EPS: %~ni.eps | ||
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