如何从回形针附加的图像中读取exif数据?

时间:2013-03-26 00:40:24

标签: ruby-on-rails ruby paperclip exif

我正在尝试从jpeg图像中读取exif数据,我使用exifr gem使用paperclip上传并保存焦距等属性,但我似乎无法做到。我是铁轨初学者,如果有人能帮忙,我会非常感激。

我的photo.rb模型:

class Photo < ActiveRecord::Base

attr_accessible :date, :exif, :name, :photo
has_attached_file   :photo, :styles => { :small => "200x200#" , :medium => "1280x720#" },
:url  => "/assets/photos/:id/:style/:basename.:extension",
:path => ":rails_root/public/assets/photos/:id/:style/:basename.:extension"

after_photo_post_process :load_exif

validates_attachment_presence :photo
validates_attachment_content_type :photo, :content_type => ['image/jpeg']



def load_exif
  exif = EXIFR::JPEG.new(photo.queued_for_write[:original])
  return if exif.nil? or not exif.exif?
  self.exposure = exif.exposure_time.to_s
  self.f_stop = exif.f_number.to_f.to_s
  self.focal_length = exif.focal_length.to_f.round.to_s
  self.iso = exif.iso_speed_ratings
  self.date = exif.date_time.to_date
  rescue
    false
  end
end

我的表单(使用SimpleForm):

<%= simple_form_for @photo, :html => {:multipart => true}  do |f| %>
  <%= f.error_notification %>

  <div class="form-inputs">
    <%= f.input :name %>
    <%= f.file_field :photo, :label => 'Attach photo' %>
  </div>

  <div class="form-actions">
    <%= f.button :submit %>
  </div>
<% end %>

show.html.erb包含我要显示的字段:

<p>
  <b>Name:</b>
  <%= @photo.name %>
</p>

<p>
  <b>Date:</b>
  <%= @photo.date %>
</p>

<p>
  <b>Exposure:</b>
  <%= @photo.exposure %>
</p>

我可能错过了一些愚蠢的东西,所以我道歉,如果是这样的话。

1 个答案:

答案 0 :(得分:4)

尝试将load_exif方法中的第一行更改为:

exif = EXIFR::JPEG.new(photo.queued_for_write[:original].path)

最后没有.path,我不相信它会返回文件路径。