Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattia72/ff7f4f82229ab3472e7b251167f420b3 to your computer and use it in GitHub Desktop.
Save mattia72/ff7f4f82229ab3472e7b251167f420b3 to your computer and use it in GitHub Desktop.
Converts *.svg to *.bmp in current directory with transparent background using imagemagic
Get-ChildItem *.svg |%{&magick.exe -background none $_.FullName "$($_.BaseName).bmp"; Write-Host $_.BaseName}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment