-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Labels
Description
Hello, I use your library and thanks for all the great work
This "issue" is more of a question than anything else.
I am trying to add a caption onto an image but I think I am failing to understand how to use the custom method or if it even is supported?
This is what I have come up with when trying to add a caption via the convert command in imagemagick:
open(image_path)
|> custom("convert", "-background '#0008' -fill white -gravity center -size 50x30 caption:my caption")
|> save(path: image_path)
Is it possible somehow or is it not yet supported?
Thanks in advance