Personal tools

Convert

From MohidWiki

Revision as of 12:14, 15 January 2008 by 192.168.20.177 (talk) (2Convert : Batch file utility)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Useful utility found in ImageMagick to convert image formats to other formats ("jpeg"-->"eps", "bmp"-->"gif", ...).

Syntax

Convert a single file

>convert file.gif file.eps

Converts all files in directory

>FOR %A IN (*.gif) DO convert %A %~nA.eps

2Convert : Batch file utility

Here's a nice batch file utility that converts all files from one format to another

ECHO 2convert.bat bmp gif
FOR %%A IN (*.%1) DO convert %%A %%~nA.%2

WebBased Utility

In ImageMagick Studio you can perform all actions from a web-based server side interface.

External References