31

Rails アプリに写真のアップロード機能があります。アプリはrmagickとfogを介してcarrierwaveを介してs3に直接アップロードします。私が抱えている問題は、ポートレートの「写真を撮るオプション」を介してモバイル経由で写真がアップロードされたときです(これはiPhoneの場合ですが、Androidにも同じ問題があると思います)。画像をアップロードすると、モバイルでは問題なく表示されますが、デスクトップで表示すると画像が 90 度回転して表示されます。

私の調査では、exifの問題のようです。このstackoverflowレスポンダーは、 2つの潜在的な解決策を概説しています。この要点も有望に見えます。

これまでのところ、投稿されたいくつかのソリューションを見つけましたが、どれも機能していません。理想的には、写真をポートレートとして s3 に保存してから、画像をそのまま表示するだけです。

どんな提案でも大歓迎です。

以下は私のコードです

app/uploaders/image_uploader.rb

class ImageUploader < CarrierWave::Uploader::Base
  include CarrierWaveDirect::Uploader

  include CarrierWave::RMagick

  # Include the Sprockets helpers for Rails 3.1+ asset pipeline compatibility:
  include Sprockets::Helpers::RailsHelper
  include Sprockets::Helpers::IsolatedHelper

  include CarrierWave::MimeTypes
  process :fix_exif_rotation
  process :set_content_type


  version :thumb do
    process resize_to_fill: [200, 200]
  end

  def extension_white_list
    %w(jpg jpeg png)
  end


  def fix_exif_rotation #this is my attempted solution
    manipulate! do |img|
      img = img.auto_orient!
    end
  end


end

アプリ/モデル/s3_image.rb

class S3Image < ActiveRecord::Base
  attr_accessible :image, :name, :user_id
  mount_uploader :image, ImageUploader

  belongs_to :user


  def image_name
    File.basename(image.path || image.filename) if image
  end


  class ImageWorker
    include Sidekiq::Worker

    def perform(id, key)
      s3_image = S3Image.find(id)
      s3_image.key = key
      s3_image.remote_image_url = s3_image.image.direct_fog_url(with_path: true)
      s3_image.save!
      s3_image.update_column(:image_processed, true)
    end
  end
end

config/initializers/carrierwave.rb

CarrierWave.configure do |config|
  config.fog_credentials = {
    provider: "AWS",
    aws_access_key_id: " ... ",
    aws_secret_access_key: " ... "
  }
  config.fog_directory = " ... "
end

ところで、s3 アップロードをセットアップするためのガイドとして、このRailscastを使用しました。

4

4 に答える 4

6

私の解決策(Sumeetに非常に似ています):

# painting_uploader.rb
process :right_orientation
def right_orientation
  manipulate! do |img|
    img.auto_orient
    img
  end
end

イメージを返すことは本当に重要です。それ以外の場合は、

NoMethodError (undefined method `write' for "":String):
于 2014-01-10T05:54:55.867 に答える
2

Lando2319 の答えはうまくいきませんでした。

RMagickを使用しています。

以下を使用して、ImageMagick に正しい向きを適用させることができました (また、ビューアによる二重回転を避けるために EXIF 回転データをリセットすることもできました)。

def fix_exif_rotation # put this before any other process in the Carrierwave uploader

manipulate! do |img|
  img.tap(&:auto_orient!)
end

私のソリューションとランドのソリューションの違いは、バン (!) です。私の場合は絶対に必要でした。

于 2016-04-12T12:53:59.513 に答える