Rails Paperclip and ImageMagick
程序员文章站
2022-06-05 23:05:28
...
在网上找了关于paperclip的有关插件,发现按他们说的,设置了大小却没有效果,后来发现需要安装一个图像编辑的软件才行:ImageMagick
下面简单的介绍一下:
环境:Windows + Cygwin + Rails
向项目中的Person类添加上传附件功能
一、安装paperclip:
迁移任务:
在model/Person.rb中加入:
在views/people下的new.html.erb和edit.html.erb中修改form并加入:
在views/people下的index.html.erb和show.html.erb中加入:
不过现在上传了图片还不能正确的显示出来,还需要:
二、安装ImageMagick
详见:http://www.imagemagick.org/script/install-source.php#unix
大致是先下载ImageMagick.tar.gz到Cygwin目录下,解压编译安装:
现在就可以啦,试试吧
下面简单的介绍一下:
环境:Windows + Cygwin + Rails
向项目中的Person类添加上传附件功能
一、安装paperclip:
script/plugin install git://github.com/thoughtbot/paperclip.git
迁移任务:
script/generate paperclip person photo rake db:migrate
在model/Person.rb中加入:
class Person < ActiveRecord::Base has_attached_file :photo, :styles => { :thumb => "100x100#", :small => "150x150>", :large => "400x400>" }, :url => "/assets/products/:id/:style/:basename.:extension", :path => ":rails_root/public/assets/products/:id/:style/:basename.:extension" end
在views/people下的new.html.erb和edit.html.erb中修改form并加入:
<% form_for @person, :html => { :multipart => true } do |f| %> <%= f.error_messages %> <p> <%= f.label :photo %><br /> <%= f.file_field :photo %> </p> <% end %>
在views/people下的index.html.erb和show.html.erb中加入:
<%= image_tag person.photo.url(:thumb) %> <%= image_tag person.photo.url(:small) %> <%= image_tag person.photo.url(:large) %>
不过现在上传了图片还不能正确的显示出来,还需要:
二、安装ImageMagick
详见:http://www.imagemagick.org/script/install-source.php#unix
大致是先下载ImageMagick.tar.gz到Cygwin目录下,解压编译安装:
tar xvfz ImageMagick.tar.gz cd ImageMagick-6.5.1 ./configure make && make install
现在就可以啦,试试吧
上一篇: Http请求get vs post
下一篇: javascript跨域方式总结
推荐阅读
-
windows7下安装php的imagick和imagemagick扩展教程
-
使用ImageMagick在Linux系统上截图
-
Rails Routes中new、collection、member的区别浅析
-
安装ImageMagick出现error while loading shared libraries的解决方法
-
PHP图片库imagemagick安装方法
-
php实现的支持imagemagick及gd库两种处理的缩略图生成类
-
php ImageMagick windows下安装教程
-
Linux系统中怎么安装和使用ImageMagick软件?
-
Ruby on Rails中MVC结构的数据传递解析
-
使用Ruby on Rails和PostgreSQL自动生成UUID的教程