On Apr 4, 2010, at 10:13 PM, [email protected] wrote:
>
> Hi All,
>
> My application is using paperclip and its working fine without any
> problems, I am able to generate the thumb images and big images from
> actual uploaded images. There are many images already uploaded by the
> users. Now I want to create small images from the original uploaded
> image. For the newly uploaded images its working fine but how can I do
> the same for already uploaded image??
>
> if photo.get_photo(:small).nil?
>
> end
>
> what the code I can write inside or any other way I can do the same??
>
> Thanks,
> Ramu.
This might get you goingL
File.open(existing_file_name, "rb") {|file|
self.image = file
}
HTH
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.