[Rails] Re: How to create thumbnail

2013-07-15 Thread Rick
It's really hard to help you without seeing the code that is causing the error and the log that gives the details of the error message. For example, your problem could be as simple as using *:style => *(singular) instead of *:styles =>* (plural) in your model. Also, it's could be that you are

[Rails] Re: How to create thumbnail

2013-07-15 Thread danny thyui
I do this almost daily. I use an imaging sdk which can create thumbnails found on the internet . Install it and it becomes a selectable processing option.Then you can create thumbnails in your image in any program at all, including Adobe Acrobat . Just open the images, select thumbnail,and foll

[Rails] Re: How to create thumbnail

2010-07-09 Thread debadatta
On Jul 8, 6:20 pm, debadatta wrote: > On Jul 8, 5:46 pm, Ar Chron wrote: > > > > > catz wrote: > > > Just try paperclip, very simple solution for it. > > > +1 for the paperclip recommendation, but you also need some image > > processing package installed and available... ImageMagick, or somethi

[Rails] Re: How to create thumbnail

2010-07-08 Thread debadatta
On Jul 8, 5:46 pm, Ar Chron wrote: > catz wrote: > > Just try paperclip, very simple solution for it. > > +1 for the paperclip recommendation, but you also need some image > processing package installed and available... ImageMagick, or something > similar. > > Then it's almost as simple as: > >

[Rails] Re: How to create thumbnail

2010-07-08 Thread Ar Chron
catz wrote: > Just try paperclip, very simple solution for it. +1 for the paperclip recommendation, but you also need some image processing package installed and available... ImageMagick, or something similar. Then it's almost as simple as: class Image < ActiveRecord::Base has_attachment :co