我剛剛安裝回形針到我的應用程序上傳圖像,並且一切都很好,直到我試圖添加樣式來調整圖像大小。 (我可以罰款上傳圖片之前,我添加此代碼)調整大小錯誤 - 回形針::錯誤:: NotIdentifiedByImageMagickError
上pins.rb:
has_attached_file :image, styles: { medium: "300x300>" }
我加入了類在_pin.html.rb:
<td><%= image_tag pin.image(:medium) %></td>
但現在,當我嘗試並上傳圖片,我得到的錯誤:
Paperclip::Errors::NotIdentifiedByImageMagickError
當我刪除的樣式,它工作正常(alebit未調整),但一些在調整大小是搞砸了一切。我嘗試了不同的文件類型和文件名。我在谷歌搜索了這個錯誤,所有的解決方案都不適合我。最流行的是降級可卡因,但是當我嘗試它,我得到的消息:
Bundler could not find compatible versions for gem "cocaine":
In Gemfile:
paperclip (~> 3.4.1) ruby depends on
cocaine (~> 0.5.0) ruby
cocaine (0.3.2)
我的Rails服務器返回的消息:
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-22 21:50:05 -0400
Served asset /application.js - 304 Not Modified (1ms)
[2013-03-22 21:50:05] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
任何幫助嗎?如果有幫助,我在github上有https://github.com/jeremybelcher/omrails。
可惜的是並沒有這樣做。它工作正常,直到我嘗試添加樣式來調整上傳時的圖像大小。 – 2013-03-23 02:42:27