Created
December 27, 2024 17:13
-
-
Save mattia72/ff7f4f82229ab3472e7b251167f420b3 to your computer and use it in GitHub Desktop.
Converts *.svg to *.bmp in current directory with transparent background using imagemagic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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