Last active
June 6, 2026 19:04
-
-
Save motebaya/320747fd37116494088d927779d211c4 to your computer and use it in GitHub Desktop.
sweet spot for any cover image
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 -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