我正在尝试在图像上写一个字符串。目前我正在使用 MiniMagick,我可以调整两个图像的大小并重叠,但是当我尝试使用标题编写多行字符串时,最终图像没有任何反应,它仍然和以前一样。
这是我当前的代码:
image = MiniMagick::Image.open('template.jpg')
image.combine_options do |c|
c.background '#0008'
c.fill '#666'
c.gravity 'center'
c.size '100x50'
c.caption "Lets write some big string here... zzzzz I hope this work =)"
end
image.write('final.jpg')
我的参考资料: http ://www.imagemagick.org/Usage/annotating/
http://www.imagemagick.org/www/command-line-options.html#caption
谢谢大家