Skip to content

Instantly share code, notes, and snippets.

@Calinou
Created January 11, 2020 17:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Calinou/9075a6e6a777da2e9b23e780df6875a7 to your computer and use it in GitHub Desktop.
Save Calinou/9075a6e6a777da2e9b23e780df6875a7 to your computer and use it in GitHub Desktop.
Generate a set of PNG frames that fade towards black
#!/bin/bash
START=599
for i in {600..700}; do
brightness="$((700-i))"
convert "$START.png" -modulate "$brightness%" "$i.png" &
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment