私は数日間、これに頭を悩ませてきました。最近、画像アップローダーが正常に動作しなくなりました。いくつかの可能性を調査しましたが、私の場合、提案された解決策はどれもうまくいきませんでした。
エラーメッセージは次のとおりです。
#<Paperclip::Errors::NotIdentifiedByImageMagickError:Paperclip::Errors::NotIdentifiedByImageMagickError>
詳細は次のとおりです。
- Mac OS X 10.8.3
- ImageMagick 6.8.4-4 2013-03-29
- libtool => /usr/bin/libtool
- レール 3.2.13
- ルビー 1.9.3p194
development.rb
適切なパスが含まれています(およびを使用して正しいことを確認しましたwhich identify
)
Paperclip.options[:command_path] = "/usr/local/bin/"
Gemfile.lock
(該当部分)
paperclip (3.4.1)
activemodel (>= 3.0.0)
activerecord (>= 3.0.0)
activesupport (>= 3.0.0)
cocaine (~> 0.5.0)
MODEL (教室オブジェクトを更新していますが、写真はロケーション モデルにあります。(Classroom has_one :location, :as => :locatable)
モデルlocation.rb
class Location < ActiveRecord::Base
## Paperclip method for uploading location images
has_attached_file :picture, :styles => {:show => "1200x500#", :medium => "300x300#", :thumb => "100x100>"}, :convert_options => {:show => "-gravity center"}
has_attached_file :building_sign, :styles => { :show => ["1200x500#", :jpg], :medium => ["300x300#", :jpg], :thumb => ["100x100#", :jpg] }, :convert_options => {:show => "-gravity center"}
belongs_to :locatable, :polymorphic => true
belongs_to :location_type
validates :name, :presence => true
validates :latitude, :presence => true,
:length => {:within => 9..18},
:numericality => true
validates :longitude, :presence => true,
:length => {:within => 9..18},
:numericality => true
end
コントローラclassrooms_controller.rb
def update
@classroom = Classroom.find_by_facility_code_heprod(params[:id].upcase)
respond_to do |format|
if @classroom.update_attributes(params[:classroom])
format.html { redirect_to(@classroom, :notice => 'Classroom was successfully updated.') }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @classroom.errors, :status => :unprocessable_entity }
end
end
end
私が試したこと。
- イメージ名が単純 (USB2230.jpg) で、コロンがないことを確認しました。
- ImageMagick のバージョンを最新のものに更新しました。
- また、10.8.3 の CommandLine Tools を再ダウンロードして再インストールしました (この問題は古い libtool に関連している可能性があると誰かが示唆していました)。
- コンピューターを再起動しました。
を含むgemバージョンのバリエーションを試しました
# variation 1 gem 'paperclip', '~> 2.8.0' gem "cocaine", "=0.3.2" # variation 2 gem "paperclip", "~> 3.4.0" gem "cocaine", "= 0.4" # variation 3 (which is what is reflected in the included Gemfile.lock info above). gem "paperclip", "~> 3.4.0"
スケーリングを削除すると、
:styles => {:show => "1200x500#", :medium => "300x300#", :thumb => "100x100>"},
:convert_options => {:show => "-gravity center"}
アップロードは機能しますが、スケーリングが必要です;-)
誰かが私が見逃しているものを見ることができますか?