Getting first image in gif using carrierwave

扶醉桌前 提交于 2019-12-18 16:51:20

问题


Im using carrier wave to upload gifs which works just fine, the problem comes when i try to generate the thumb version and converting the gif into a jpeg with only the first image in the gif as the thumb, i get an error:

LocalJumpError in ImagesController#create

no block given (yield)

app/controllers/images_controller.rb:21:in `new'
app/controllers/images_controller.rb:21:in `create'

Request

Parameters:

{"utf8"=>"✓",
"authenticity_token"=>"lPEjP1WtPxFdizL2/FAWGHzOZPtecb5nKzKO8dg5ZdE=",
"image"=>{"image"=>#<ActionDispatch::Http::UploadedFile:0x007ff5d4cdc720 @original_filename="some-file-name.gif",
@content_type="image/gif",
@headers="Content-Disposition: form-data; name=\"image[image]\"; filename=\"some-file-name.gif\"\r\nContent-Type: image/gif\r\n",
@tempfile=#<File:/var/folders/c8/1t7w8nln4b3bvs4_nv2cyn2m0000gt/T/RackMultipart20120326-5101-gcyvk0>>,
"remote_image_url"=>"",
"title"=>"The red panda",
"nsw"=>"0"},
"commit"=>"Roll GIF"}

Here's the code im using to generate the thumb:

version :thumb do
    process :resize_to_limit => [200, 200]
    process :convert => 'jpg'
end

Hope you guys can help and thanks in advance.


回答1:


To remove animations from a gif image using carrierwave, you can define the following processor:

def remove_animation
  manipulate! do |img, index|
    index == 0 ? img : nil
  end
end

So, the code for the thumb version will be:

version :thumb do
  process :remove_animation
  process :resize_to_limit => [200, 200]
  process :convert => 'jpg'
end



回答2:


Here's how I ended up flattening an animated gif (extracting out the first image of the gif).

  process :custom_convert => 'jpg'

  # Method handles gif animation conversion by extracting out first frame within a gif
  def custom_convert(format)
    cache_stored_file! if !cached?
    image = ::Magick::Image.read(current_path)
    frames = image.first
    frames.write("#{format}:#{current_path}")
    destroy_image(frames)
  end



回答3:


Add the following to your uploader class:

version :thumb do
  process :remove_animation
  process :resize_to_limit => [200, 200]
  process :convert => 'jpg'
end

# add process :remove_animation to other thumbs

private
def remove_animation
  if content_type == 'image/gif'
    manipulate! { |image| image.collapse! }
  end
end



回答4:


So this is the code i used to accomplish what i wanted:

manipulate! do |image|
  gif = Magick::ImageList.new image.filename
  jpg = gif[0]
  jpg.resize_to_fill!(200,200)
  jpg.write("thumb_#{secure_token}.#{format}")
  jpg
end


来源:https://stackoverflow.com/questions/9878320/getting-first-image-in-gif-using-carrierwave

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!