Is this possible? I want to be able to upload animated gifs and have attachment_fu retain the animation. I''ve got everything set up but when I upload .gifs the new files do not animated. Is there something special I need to do to enable this or is it just not possible? Thanks. -- Posted via ruby-forum.com. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Lar Van der jagt wrote:> Is this possible? I want to be able to upload animated gifs and have > attachment_fu retain the animation. I''ve got everything set up but when > I upload .gifs the new files do not animated. Is there something special > I need to do to enable this or is it just not possible? Thanks.What is their file extension after the file is uploaded? --Scott T. -- Posted via ruby-forum.com. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 6/13/07, Scott thorpe <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Lar Van der jagt wrote: > > Is this possible? I want to be able to upload animated gifs and have > > attachment_fu retain the animation. I''ve got everything set up but when > > I upload .gifs the new files do not animated. Is there something special > > I need to do to enable this or is it just not possible? Thanks. > > What is their file extension after the file is uploaded?You''re not resizing them are you? I''ve never worked with animated files. Feel free to send in a tested patch if you have to fix something. -- Rick Olson lighthouseapp.com weblog.techno-weenie.net mephistoblog.com --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Scott thorpe wrote:> > What is their file extension after the file is uploaded? > > --Scott T.File extension stays .gif. I am using thumbnails, which I do not need to animate, but the full size needs to animate. I have it set to resize to fit 800x800 and the image is smaller than that, but still looks like it has been resized with some dither options on, because the quality is not as good. This is for my portfolio website, and I have done some animated banner ads that I want to include. I''m new to Ruby on Rails so a patch might be beyond my skills at this point, but if I figure out a work around I will post it. -- Posted via ruby-forum.com. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Jun 13, 2007, at 4:00 PM, Lar Van der jagt wrote:> Scott thorpe wrote: >> >> What is their file extension after the file is uploaded? >> >> --Scott T. > > File extension stays .gif. I am using thumbnails, which I do not > need to > animate, but the full size needs to animate. I have it set to > resize to > fit 800x800 and the image is smaller than that, but still looks > like it > has been resized with some dither options on, because the quality > is not > as good. > > This is for my portfolio website, and I have done some animated banner > ads that I want to include. > > I''m new to Ruby on Rails so a patch might be beyond my skills at this > point, but if I figure out a work around I will post it.Since you mention that your gifs are smaller than the 800x800, use the form of the resize option that says "only if they need to be made smaller": "800x800>" See: imagemagick.org/RMagick/doc/image1.html#change_geometry imagemagick.org/RMagick/doc/imusage.html#geometry imagemagick.org/RMagick/doc/struct.html#Geometry -Rob Rob Biedenharn agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Rob Biedenharn wrote:> > Since you mention that your gifs are smaller than the 800x800, use > the form of the resize option that says "only if they need to be made > smaller": > > "800x800>" > > See: > > imagemagick.org/RMagick/doc/image1.html#change_geometry > imagemagick.org/RMagick/doc/imusage.html#geometry > imagemagick.org/RMagick/doc/struct.html#Geometry > > > -Rob > > Rob Biedenharn agileconsultingllc.com > Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.orgI actually am using that form, and it works fine except that it still seems to save a new copy anyways, thus losing the rest of the frames. -- Posted via ruby-forum.com. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---