Magick SVGs to GIFs

Convert SVG files into GIF preserving the transparency, in bulk
' Used to convert Font-Awesome SVGs into GIFs, like FA5 Pro

CodeFunctionName
What is this?

Public

Tested

Imported


Edit 2022-02-13:
To convert all SVG images to GIFs while maintaining transparent colors (white from svg to transparent in gif) and preserving filenames, run cmd below ...
for %I in ( "D:\Docs\OneDrive\ANmarsOutlook-ANmarsLive\Icons.Lib\FA60Pro-light.svg\*.svg" ) do magick convert "%I" -transparent white -set filename:f "%t" "D:\Docs\OneDrive\ANmarsOutlook-ANmarsLive\Icons.Lib\1024FA60Pro-light.gif\%[filename:f].gif"


' Used to convert Font-Awesome SVGs into GIFs, like FA5 Pro
' Use ImageMagick
'    https://imagemagick.org/script/download.php
'    Two steps
'        Step 1: SVG to PNG
' 1 > command line using ImageMagick to convert SVG images into PNGs preserving transparency
magick convert "D:\Docs\raw-svg\solid\*.svg" -transparent white "D:\Docs\PNGs\FA5Pro-512Black-Solid-%03d.png"

'        Step 2: PNG to GIF
' 2 > Command line to convert PNGs above into GIFs:
magick convert "D:\Docs\SVGs-2-GIFs\White32.PNGs.whhg\*.png" "D:\Docs\SVGs-2-GIFs\White32.GIFs.whhg\White32-%03d.gif"

Views 1,866

Downloads 689

CodeID
DB ID