我已成功使用载波上传图像文件。我希望表单能够接受图像文件和pdf。当我尝试上传pdf时,它不会上传文件。它与该行有关:
process :resize_to_fill => [166,166]
如果我把它拿出来,pdf的工作。问题是我需要那条线因为我需要上传的所有图片需要调整大小。 这是上传者:
class PortfoliofileUploader < CarrierWave::Uploader::Base
include CarrierWave::MiniMagick
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
version :picture do
process :resize_to_fill => [166,166]
end
def extension_white_list
%w(jpg jpeg gif png pdf doc docx)
end
end
有谁知道如何解决这个问题,以便图像和PDF格式有效吗?感谢。
更新:
投资组合展示页面(2个版本):
版本1:
<% @portfolio.portfolio_pics.collect{|picture| picture.port_pic.picture}.each do |pic| %>
<li><a href="#"><%= image_tag pic %></a></li>
<% end %>
版本2:
<% @portfolio.portfolio_pics.each do |pic| %>
<li><a href="#"><%= image_tag pic.port_pic.picture %></a></li>
<% end %>
答案 0 :(得分:4)
Carrierwave有一个解决方案,指向Readme:
有时,您希望限制在模型中的某些属性上或基于图片本身创建版本。
class MyUploader < CarrierWave::Uploader::Base
version :human, :if => :is_human?
version :monkey, :if => :is_monkey?
version :banner, :if => :is_landscape?
protected
def is_human? picture
model.can_program?(:ruby)
end
def is_monkey? picture
model.favorite_food == 'banana'
end
def is_landscape? picture
image = MiniMagick::Image.open(picture.path)
image[:width] > image[:height]
end
end
例如,要仅为图像创建拇指,我采用了此选项:
version :thumb, :if => :image? do
process :resize_to_fit => [200, 200]
end
protected
def image?(new_file)
new_file.content_type.start_with? 'image'
end
在这种情况下,请确保包含MimeTypes:
include CarrierWave::MimeTypes