3 lines
150 B
PowerShell
3 lines
150 B
PowerShell
|
Get-ChildItem -Path $dir -Filter *.png | ForEach-Object {
|
||
|
magick.exe convert $_.FullName -alpha on -fill none -draw 'color 0,0 replace' $_.FullName
|
||
|
}
|