Last active
June 29, 2025 08:54
-
-
Save Vocaned/808883042b97ecff570e79099daeb3e2 to your computer and use it in GitHub Desktop.
meme captions using imagemagick
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
| #!/bin/bash | |
| in=$1 | |
| text=$2 | |
| out=$3 | |
| if [ $# -lt 3 ]; then | |
| exit | |
| fi | |
| font="Futura PT Cond Extra Bold" | |
| width=$(identify -format %w ${in}) | |
| height=$(( width - ((width / 25) * 2 ) )) | |
| fontsize=$(( width / 13 )) | |
| convert \ | |
| -size "${width}x${height}" \ | |
| -background "white" \ | |
| -fill "black" \ | |
| -font "${font}" \ | |
| -pointsize "${fontsize}" \ | |
| \( -gravity "center" pango:"<span font_family=\"${font}\" weight=\"bold\">${text}</span>" \ | |
| -gravity "north" -extent "${width}x$(( 2 * fontsize ))" \) \ | |
| "${in}" -append \ | |
| "${out}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment