0
我試圖通過carrierwave和mini_magic將圖像放在圖像上。代碼運行時沒有錯誤,但生成的圖像上沒有文字。使用Carrierwave和mini_magick將圖像添加到圖像
version :text do
process :put_text_stamp
end
def put_text_stamp
manipulate! do |img|
img.combine_options do |c|
c.gravity 'Center'
c.fill 'red'
c.pointsize '22'
c.draw "text 0,0 'TEXT'"
end
img = yield(img) if block_given?
img
end
end
您是否找到了答案?有同樣的問題 – user749798