Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
belyan
Post
by belyan » 2010-06-02T10:51:22-07:00
How convert all SVG files in directory to PNG with save original file names?
a.svg
b.svg
c.svg
...
Command
rewrite original file names.
fmw42
Posts: 25562 Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA
Contact:
Post
by fmw42 » 2010-06-02T10:57:03-07:00
use mogrify
see
http://www.imagemagick.org/Usage/basics/#mogrify
mogrify -format png *.svg
but better to create a second directory and have the new files put there
cd /fullpathto/svgdirectory
mogrify -path /fullpathto/pngdirectory -format png *.svg
belyan
Post
by belyan » 2010-06-02T11:01:29-07:00
Thanks.
Users browsing this forum: Amazon [Bot] , Bing [Bot] , Semrush [Bot] and 6 guests