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を使用しました。