簡體   English   中英

Attachment_fu旋轉S3存儲導軌中的圖像

[英]Attachment_fu rotate image in S3 storage Rails

如何旋轉S3存儲中的圖像,我正在使用Attachment_fu和Amazon S3,我想實現一項功能,該功能允許用戶通過將現有圖像旋轉90度來編輯現有圖像。 我想知道是否有人玩過這個游戲,或者有什么想法。 我目前正在使用rmagick旋轉Rails目錄中的圖像。 但是在AWS S3中,存儲無法旋轉圖像。

require 'RMagick'

def rotate
    photo   = Photo.find(params[:id])
    image   = Magick::ImageList.new(photo.file)
    image   = image.rotate(90)
    image.write(photo.file)
end

我正在使用這個寶石:

gem 'pothoven-attachment_fu'
gem 'aws-s3'
gem 'rmagick'

我解決了這個問題。

def update_photo
      require 'RMagick'
      require 'base64'

      # get the image data in Photo table
      @photo = Photo.where(id: params[:photo_id]).first

      # get image path in S3 url and encode to Base64 binary
      img_url = @photo.s3_url()
      img_uri = URI.parse(img_url)
      base64_image = Base64.encode64(open(img_uri) { |io| io.read })
      image_file_name = File.basename(img_uri.path,File.extname(img_uri.path))
      filename_path = "#{Rails.root.to_s}/tmp/#{image_file_name}"

      # create tempfile in rails root/tmp folder and decode the Base64 binary into image file, then processing RMagick to rotate the image into desire image rotation.
      @tempfile = Tempfile.new(filename_path)
      @tempfile.binmode
      @tempfile.write Base64.decode64(base64_image)
      @tempfile.close

      # rotate image using RMagick
      Magick::Image.read(img_uri).first.rotate!(params[:photo_degree].to_i).write(@tempfile.path)

      # for security we want the actual content type, not just what was passed in
      # get mime type of image and passed into ActionDispatch type
      content_type = `file --mime -b #{@tempfile.path}`.split(";")[0]

      # we will also add the extension ourselves based on the above
      # if it's not gif/jpeg/png, it will fail the validation in the upload model
      extension = content_type.match(/gif|jpeg|png/).to_s
      extension = "jpg" if extension == "jpeg"

      # append filename to prevent browser image caching
      filename_path += "_#{params[:photo_degree]}"

      filename_path += ".#{extension}" if extension

      # passed the data into  Rails core ActionDispatch instead of file input object
      file = ActionDispatch::Http::UploadedFile.new({
        tempfile: @tempfile,
        type: content_type,
        filename: filename_path
      })

      # delete the existing image
      @photo.destroy 

      # create new image
      img_rotate                = Photo.new()
      img_rotate.id             = @photo.id
      img_rotate.uploaded_data  = file
      img_rotate.save

       ensure
          clean_tempfile

end

  def clean_tempfile
    if @tempfile
      @tempfile.close
      @tempfile.unlink
    end
  end

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM