Skip to content

Instantly share code, notes, and snippets.

@vnphanquang
Created April 26, 2024 14:33
Show Gist options
  • Save vnphanquang/c1ff4c8346ccd131e530786511fd1da2 to your computer and use it in GitHub Desktop.
Save vnphanquang/c1ff4c8346ccd131e530786511fd1da2 to your computer and use it in GitHub Desktop.
crop-images.fish
#!/usr/bin/env fish
set --local count $argv[1]
set --local percentage $(math 100 / $count)
for i in (seq 0 $(math $count - 1))
set --local offset $(math $percentage / 100 \* $i)
magick image.png -gravity North -crop "100%x$percentage%+0+%[fx:h*$offset]" "cropped-$i".jpg
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment