Displaying 2 results from an estimated 2 matches for "thumb_big".
2007 Dec 29
1
url_for_file_column not works
...ionm,:image
file_column :image,:magick=>{
:geometry=>''600x600>'',:attributes => { :quality => 60 },
:versions => {
:thumb => {:crop => "1:1", :geometry =>"30x30",:attributes => {
:quality => 50 } },
:thumb_big=>{:crop => "1:1", :geometry =>"62x62",:attributes =>
{ :quality => 50 } }
}
}
}
How i can do?
Thanks
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to...
2008 Mar 21
0
Problems with attachment_fo and images update
I have installed attachment_fu and i have use this tutorial for change
the path_prefix:
http://the.railsi.st/2007/8/21/how-to-customize-attachment_fu-file-names
the path of images+thumbnail are:
/images/cores/fullsize/
/images/cores/thumb/
/images/cores/thumb_big/
when i create a new attachment object it works, the images are insert
inthese directory.
But when i edit a object (changing also the image), new thumbnail images
are insert not correctly.
Are insered in fullsize directory with a different name.
Why?
I update the attachment in my controller wit...