Skip to content

Instantly share code, notes, and snippets.

@ygkn
Last active February 7, 2017 14:22
Show Gist options
  • Save ygkn/bba4982401bf1c463bff098547d4cdb6 to your computer and use it in GitHub Desktop.
Save ygkn/bba4982401bf1c463bff098547d4cdb6 to your computer and use it in GitHub Desktop.
小林さんちのメイドラゴンの話数表示ジェネレータを作った ref: http://qiita.com/ygkn/items/272324aa3ec3a29e2cea
for f in $(ls frames); do
echo "converting ${f}..."
convert ./source.png "./frames/${f}" -composite "${tempDir}/${f}" # ①
done
echo "building gif file..."
convert -layers optimize -delay 10 "${tempDir}/*.png" $output # ②
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment