- Posts: 828
- Thank you received: 1173
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
image-polaroid() {
if [ $# -lt 3 ]; then
echo -e "Usage: $0 <caption> <input file> <caption size>"
echo -e "Example: $0 'some text' photo.png 28"
return 1
fi
magick -caption "$1" "$2" -pointsize "$3" -gravity center -background black +polaroid "${2%.*}"_p.png
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.