Skip to content

Instantly share code, notes, and snippets.

@motebaya
Last active June 6, 2026 19:04
Show Gist options
  • Select an option

  • Save motebaya/320747fd37116494088d927779d211c4 to your computer and use it in GitHub Desktop.

Select an option

Save motebaya/320747fd37116494088d927779d211c4 to your computer and use it in GitHub Desktop.
sweet spot for any cover image
Get-ChildItem -File *.png, *.jpg, *.jpeg | ForEach-Object {
magick $_.FullName `
-resize "900x1200^" `
-gravity center `
-extent 900x1200 `
-strip `
-quality 80 `
"resized\$($_.BaseName).webp"
}
# resize and don't crop top
Get-ChildItem -File *.png, *.jpg, *.jpeg | ForEach-Object {
magick $_.FullName `
-resize "1000x1500^" `
-gravity north `
-extent 1000x1500 `
-strip `
-quality 80 `
"resized\$($_.BaseName).webp"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment