首先,我在 imageMagick 官网上查到了 img.weight 这个选项。
img.weight
可是这个选项在 MiniMagick 里面不起效果,这是为什么?
你最好贴出你的代码,这样别人才能给你解答。
def self.render_text(src, left, top, line, &block) return unless line.present? src.combine_options do |c| c.font File.expand_path('..', __FILE__) + '/card/simsun.ttc' c.fill '#000' c.pointsize '28' block.call(c) if block_given? c.draw "text #{left},#{top} '#{line}'" end
试试 pointsize 和 density