操作文本显示图像错误 rails 6 on windows 10

Action Text displaying image error rails 6 on windows 10

我在 ruby 安装程序的帮助下使用 windows 10 在 rails 6 上对 ruby 进行编程。到目前为止一切正常,直到...我使用富文本编辑器的操作文本。

我遵循了本指南 [https://edgeguides.rubyonrails.org/action_text_overview.html][1],一切正常。但是当我将图片附加到 text_area 时,保存后无法显示图片。

当我打开图像的 url 时,我看到了这个:

MiniMagick::Error in ActiveStorage::RepresentationsController#show

`magick mogrify -resize-to-limit [1024, 768] C:/Users/.../AppData/Local/Temp/ActiveStorage-5-20200716-3792-28u8ot.jpg` failed with error: mogrify: unrecognized option `-resize-to-limit' @ error/mogrify.c/MogrifyImageCommand/6009.


  if status != 0 && options.fetch(:whiny, MiniMagick.whiny)
    fail MiniMagick::Error, "`#{command.join(" ")}` failed with error:\n#{stderr}"
  end

型号:产品

显示在视图中:product.description(无法显示附件)

谁能帮我解决这个问题?

gem 'image-processing' 添加到您的 Gemfile 并

运行 bundle install