animated-gif

So which is faster truly? Flash, Silverlight or Animated gifs?

I am trying to develop a multimedia site and I am leaning heavily toward Silverlight however Flash is always a main player. I am a Speed and performance type developer. Which Technology will load fastest in the given scenarios? 56k, DSL and Cable? ...

Loading animated gif from JAR file into ImageIcon

I'm trying to create a ImageIcon from a animated gif stored in a jar file. ImageIcon imageIcon = new ImageIcon(ImageIO.read(MyClass.class.getClassLoader().getResourceAsStream("animated.gif"))); The image loads, but only the first frame of the animated gif. The animation does not play. If I load the animated gif from a file on the f...

Animated Gifs in Flex 3

Believe it or not I need a way of displaying animated gifs in Flex 3. This guy has a component for sale but it's Flex 2 only: http://dougmccune.com/blog/2007/01/19/how-to-load-animated-gifs-using-adobe-flex-20/. And I’ve implemented this example: http://www.bytearray.org/?p=95, but for larger gifs it’s very CPU intensive and causes the ...

How do you show animated GIFs on a Windows Form (c#)

I have a form showing progress messages as a fairly long process runs. It's a call to a web service so I can't really show a percentage complete figure on a progress bar meaningfully. (I don't particularly like the Marquee property of the progress bar) I would like to show an animated GIF to give the process the feel of some activity (e...

Where can I find a large AJAX loader .gif?

I searched the Web, but the most I was able to find was 180x180 pixels. I'm looking for a ajax loader .gif animation that is at least 400x400 pixels. File size is not very important, it's for intranet application. UPDATE: solution must be free as in beer. I don't own a copy of Photoshop, for example. ...

Export video into animated gif?

Is there any recommended programs that will output an animated gif based on a video input? Preferably mac but windows is fine as well. ...

Exporting Flash movie to downloadable animated GIF, server-side

Let's say that I have a Flash website where you could create an avatar and some motion. Is there a way to save those into an animated GIF with a server-side language ? (php is preferred) I've looked around and all I've got are ways to do that with the Flash software itself. Has anybody tried this ? Thanks in advance. ...

Access GIF frames with C#

Hi, I'm a beginner in C#. I would like to know if there's a way to access different frames inside a GIF animation with C#. I'm using Visual Studio 2008. ...

How to display animation in a JTable cell

I am looking for a way to display an animated progress indicator (animated GIF, a rotating wheel rendered through Java2D etc., no preference here) in a table cell until the value that is to be finally displayed has been computed or retrieved. So far I have just put a static "pending..." text into each cell that is not yet ready to speed...

Resize animated gif file without destroying animation

Hi guys, I need to resize a animated gif file without destroying the animation. Let I have a flower animated file name: flower.gif size is: 700x700, frame no: 5. I need to resize it 128x128 & 240x320 without destroy animation . Each resized animated file must hold same frame number as uploaded animated file. How can I do it using PHP?...

How to edit and watermark animated gifs, preferably through php?

Ive been looking everywhere for something that could manipulate animated gif files, server-side, preferably through php, but simple command line tools that could be executed via exec() would do also. Essentially Im looking to watermark animated gif files, as well as have the ability to cull frames out of animations (every 2nd, 3rd frame ...

Programmatically generate video or animated GIF in Python?

I have a series of images that I want to create a video from. Ideally I could specify a frame duration for each frame but a fixed frame rate would be fine too. I'm doing this in wxPython, so I can render to a wxDC or I can save the images to files, like PNG. Is there a Python library that will allow me to create either a video (AVI, M...

How can I ensure my GIFs keep animating even after document.location="" has been run

Take the following HTML: <img src="/any-animated-gif.gf" alt="" /> <br /><br /> <a href="#" onclick="document.location='/anything-that-takes-a-few-seconds-to-load.html';return false;">Click Here</a> When I click the link the icon stops. ...

Creating animated GIF with ImageIO?

Has anybody managed to convince ImageIO to write an animated GIF, and in particular setting the correct metadata? My first attempt is roughly as follows (where b1 and b2 are BufferedImages): ImageTypeSpecifier spec = new ImageTypeSpecifier(b1); ImageWriter wr = ImageIO.getImageWriters(spec, "GIF").next(); wr.setOutput(ImageIO.createImag...

Animated GIF in IE stopping

Hi, Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers. Thanks. ...

Animated GIF in ImageList / TabPage

I'd like to show an animated GIF as the tab image on a TabPage. If I add my image to an ImageList and use the TabPage.ImageIndex property, it only shows the first frame (and doesn't animate): ImageList imageList = new ImageList(); imageList.Images.Add(Properties.Resources.my_animated_gif); tabControl.ImageList = imageList; tabPage.Ima...

Android: How do a display a large animated gif given a url?

Suppose I have the URL for large animated gif and I wanted to make a youtube like activity that displays the animation in a streaming way. How do I stream in the image? get it do display with actual animation? I know ImageView is not the answer as it only shows the first frame. A bonus would be having access to its buffering sta...

How to add animated gif to a button?

Hi, Can you tell me how to add an animation gif to a button in c#. Just by adding gif to resources and setting as button image didn't work very well (next frames apear over the previous ones). The problem seems to be in a way how c# is treating transparency but I don't know how to fix it. Thanks in advance. --- edit --- After playing...

Animated gif on button stops after moving (redrawing) the form.

Hi, I have an animated gif placed on the button. It's animating ok (most of the times :P) but when the windows is redrawn (repainted) the animation stops. I have tried to refresh the button (button.Refresh() ) while handling Paint event but it didn't solve the issue. \ Anyone knows how to fix this? ...

Image animation stops on minimizing and restoring

I have a .NET WinForms application with an animated GIF in a PictureBox. It's a loading animation, shown while a BackgroundWorker does some processing in another thread. I load the image by setting the Image property and it animates on its own. All is fine until I minimize and restore the application. At which point, the image stops ani...