我想将争论作为文本插入到用户上传的图像文件中。
使用下面的代码,它不起作用。它只是保存图像而没有任何影响。
我正在使用名为“papaerclip”的 gem 进行上传。
评论.rb
#paperclip
has_attached_file :comment_icon,
:styles => {
:thumb=> "100x100>",
:small => "400x400>" },
:convert_options => {
:all => " -stroke '#000C' -strokewidth 2 -annotate 0 'Faerie Dragon' -stroke none -fill white -annotate 0 'Faerie Dragon'" }
如何像这个例子一样在图像底部插入文本?comment.rb应该
怎么写?
ImageMagick 代码
convert dragon.gif -gravity south \
-stroke '#000C' -strokewidth 2 -annotate 0 'Faerie Dragon' \
-stroke none -fill white -annotate 0 'Faerie Dragon' \
anno_outline.jpg