misc/powershell/de-webp.ps1
adam 2d132e2fbf other old stuff for archiving.
yes I remembered to strip my sublime text license key out of the w10 boilerplate :P
2023-03-07 10:59:06 -05:00

8 lines
193 B
PowerShell

param(
$webp = 16
)
$target = [System.IO.Path]::GetDirectoryName($webp) + "/" + [System.IO.Path]::GetFileNameWithoutExtension($webp) + ".png"
dwebp $webp -o $target
remove-item $webp