我想将UserProfile.nickname作为文本注释插入转换选项。
这就是我现在所拥有的。我怎样才能解决这个问题?
user_profile.rb
before_save :text_to_insert
def text_to_insert
nickname = self.nickname
end
has_attached_file :user_avatar,
:styles => {
:thumb=> "100x100>",
:small => "400x400>" },
:convert_options => {
:small => lambda {|a| %Q{ -gravity south -pointsize 25 -fill black -annotate +0+0 "#{nickname}" -fill white -annotate +2+2 "#{nickname} "} } }