12

ペーパークリップレールプラグインからペーパークリップジェムに切り替えました。このプロジェクトはrails2.3アプリケーションであり、私はペーパークリップ2.7.2gemを使用しています。

次の奇妙なエラーが発生します。

identify: unable to open image `file': No such file or directory @ error/blob.c/OpenBlob/2617.
identify: no decode delegate for this image format `file' @ error/constitute.c/ReadImage/544.

ペーパークリップが「file」というファイルを探しているようですが、理由はわかりません。以前持っていたコードは変更しませんでした。以前は機能していましたが、新しいバージョンにアップグレードして、プラグイン上でgemを使用するだけでした。

何か案は?

アップデート

コマンドの内容を適切に解析しないペーパークリップのバグです。私はペーパークリップのソースを深く掘り下げて見つけました:

def run(cmd, arguments = "", local_options = {})
  if options[:image_magick_path]
    Paperclip.log("[DEPRECATION] :image_magick_path is deprecated and will be removed. Use :command_path instead")
  end
  command_path = options[:command_path] || options[:image_magick_path]
  Cocaine::CommandLine.path = [Cocaine::CommandLine.path, command_path].flatten.compact.uniq
  local_options = local_options.merge(:logger => logger) if logging? && (options[:log_command] || local_options[:log_command])

  Cocaine::CommandLine.new(cmd, arguments, local_options).run
end

# Uses ImageMagick to determing the dimensions of a file, passed in as either a
# File or path.
# NOTE: (race cond) Do not reassign the 'file' variable inside this method as it is likely to be
# a Tempfile object, which would be eligible for file deletion when no longer referenced.
def self.from_file file
  file_path = file.respond_to?(:path) ? file.path : file
  raise(Paperclip::NotIdentifiedByImageMagickError.new("Cannot find the geometry of a file with a blank name")) if file_path.blank?
  geometry = begin
               Paperclip.run("identify", "-format %wx%h :file", :file => "#{file_path}[0]")
             rescue Cocaine::ExitStatusError
               ""
             rescue Cocaine::CommandNotFoundError => e
               raise Paperclip::CommandNotFoundError.new("Could not run the `identify` command. Please install ImageMagick.")
             end
  parse(geometry) ||
    raise(NotIdentifiedByImageMagickError.new("#{file_path} is not recognized by the 'identify' command."))
end

Paperclip.runコマンドは、何らかの理由で:fileプレースホルダーを置き換えることができません。コマンドラインで次のコマンドを実行して、これを確認しました。

identify :file

モンキーパッチを手動で置き換えると、同様のことが発生する他のエラーが発生します。

4

1 に答える 1

24

なんとか解決できました。

それはコカインの問題でした。ペーパークリップはコカインに依存しているようで、コカイン>0.02でなければならないとだけ言っています。Cocaine 0.4.2の最新バージョン(この記事の執筆時点)には、下位互換性のない新しいAPIがあります。コカイン0.3.2にダウングレードする必要があります。

これをペーパークリップの前にGemfileに入れるだけです。

gem "cocaine", "0.3.2"
于 2012-10-24T22:34:06.690 に答える