我正在尝试从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>
我可能错过了一些愚蠢的东西,所以我道歉,如果是这样的话。
答案 0 :(得分:4)
尝试将load_exif
方法中的第一行更改为:
exif = EXIFR::JPEG.new(photo.queued_for_write[:original].path)
最后没有.path
,我不相信它会返回文件路径。