misc/powershell/de-webp.ps1

8 lines
193 B
PowerShell
Raw Normal View History

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