我正在开发一个小型的rails 5.0.0.1 app,它可以在类似于模因的图像上生成文本。我有基本代码写在模型中。
class Meme < ApplicationRecord
require 'mini_magick'
mount_uploader :attachment, AttachmentUploader
def process_image(img_id, top_text, bottom_text)
image = MiniMagick::Image.open(Img.find(img_id).attachment.current_path)
image.combine_options do |c|
c.gravity 'Center'
c.pointsize '22'
c.draw "text 200,200 #{top_text}"
c.fill 'white'
c.draw "text 100,100 #{bottom_text}"
c.fill 'white'
end
self.attachment = image
self.save
end
end
当我从控制台运行此操作并执行以下操作时:
m = Meme.new
m.process_image(Img.last.id, "Good", "Stuff")
生成正确覆盖文本的图像。
现在当我做同样的事情并在字幕中包含这样的空格时:
m = Meme.new
m.process_image(Img.last.id, "This is", "Totally Weird")
我在控制台中引发异常,如下所示:
mogrify: non-conforming drawing primitive definition `is' @ error/draw.c/DrawImage/3259.
mogrify: non-conforming drawing primitive definition `Weird' @ error/draw.c/DrawImage/3259.
mogrify: non-conforming drawing primitive definition `is' @ error/draw.c/DrawImage/3259.
mogrify: non-conforming drawing primitive definition `Weird' @ error/draw.c/DrawImage/3259.
我查看了mini_magick的API文档,但没有看到与whitespacing相关的任何内容。我看到很多链接都在讨论如何让ImageMagick核心正确地注入空格但不使用mini_magick包装器。
我是否遗漏了某些东西,或者我应该对空白进行某种替换?
答案 0 :(得分:3)
空间很重要:
# on "This is" input is becomes
# ⇓⇓ mini_magick does not expect that
# c.draw "text 200,200 This is"
# ⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓⇓ HERE
c.draw "text 200,200 #{top_text}"
c.fill 'white'
c.draw "text 100,100 #{bottom_text}"
引用mini_magick
的字符串:
# ⇓ ⇓ HERE
c.draw "text 200,200 '#{top_text}'"
c.fill 'white'
c.draw "text 100,100 '#{bottom_text}'"