Skip to content

Instantly share code, notes, and snippets.

@Vocaned
Last active June 29, 2025 08:54
Show Gist options
  • Select an option

  • Save Vocaned/808883042b97ecff570e79099daeb3e2 to your computer and use it in GitHub Desktop.

Select an option

Save Vocaned/808883042b97ecff570e79099daeb3e2 to your computer and use it in GitHub Desktop.
meme captions using imagemagick
#!/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