Questions tagged [animated-gif]

An animated .GIF image is an image file which displays an animation.

This tag should be used in questions asking for help using an animated GIF in their applications, modifying an animated GIF in code, or reading pixels from an animated GIF in code.

Useful links

Pages where animated GIFs can be created

1436 questions
-1
votes
2 answers

How to run gif one time in tkinter?

from tkinter import * import time import os root = Tk() frameCnt = 12 frames = [PhotoImage(file='mygif.gif',format = 'gif -index %i' %(i)) for i in range(frameCnt)] def update(ind): frame = frames[ind] ind += 1 if ind == frameCnt: …
-1
votes
1 answer

How to combine a Gif Image into UIImageView with overlaying UIImageView in swift?

A gif image is loaded into a UIImageView (by using this extension) and another UIImageView is overlaid on it. Everything works fine but the problem is when I going for combine both via below code, it shows a still image (.jpg). I wanna combine both…
-1
votes
1 answer

How to add a Gif on my widget in SwiftUI?

In my app i have widget support, And now i want to add a gif on my widget. Is it possible? If adding a gif on widget is possible, then please provide me some example or source.
Tipu
  • 19
  • 4
-1
votes
1 answer

GIPHY Favorites to Google Sheets?

Does anyone know of a way to import GIPHY Favorites into Google Sheets? I hate the fact that I can't share my favorites with anyone else, and that they're completely private. Wondering if there's a way to use the GIPHY API to import all of them into…
-1
votes
1 answer

Having troubles loading a GIF image in my application

so i was trying to load a GIF image using a link into my application, but i couldn't find how. i tried using Glide and Picasso but i still couldn't resolve my problem, at first i thought i might have something in my app that's stopping the GIF from…
user19595313
-1
votes
1 answer

Is it possible to use Lottie for emails?

I am not a programmer, I am a graphic designer. I have designed a banner for an email animated in after effects. I would like to find a solution for not heavy animation on email. I have researched that Lottie could be good for file size the problem…
-1
votes
1 answer

How to make an animation (or animated gif), from a number of geopandas plots

I have a Geodataframe ("mhg") in which the index are months (i.e. "2019-01-01", "2019-02-01", ...), and the GDF have a column that is the geometry of certain regions (i.e. POLYGON(...)), and finally another column that is the population…
ElTitoFranki
  • 375
  • 1
  • 7
-1
votes
2 answers

If I change tabs and come back, my GIF freezes for a while (p5.js)

Code for Catbus game Whenever I try to run it, it works fine, but when I change to another tab and back, the gif freezes for the same amount of time I was in the other tab. I'm trying to be able to run both the background AND the gif. So, do y'all…
-1
votes
1 answer

How to add text to a gif node.js

I am dealing with a problem. I want to download a gif and place text at the top for example add the text "Top text" on this gif. I have looked through google codegrepper and stackoverflow for an answer but nothing How would i accomplish that?…
-1
votes
2 answers

Adding JSON as a picture in HTML file

I have to add a json file, which is a gif, as a picture in a HTML file, so it can display on the page. I tried: But it does not seems to work. I looked online, especially to see if there was any Lottie json insertion…
Camille D
  • 69
  • 1
  • 5
-1
votes
1 answer

C# Timer not working when using animated gif

I am busy with creating an GUI which should have some animations in it. My idea was to use an animated gif as background with controls on top. This all is working fine until I wanted to add an timer to update some values each second, then the timer…
-1
votes
2 answers

Exploding Animated GIF and Manipulating Frames (GD Library)

So since animated GIFs are a series of GIFs concatenated together with "\x00\x21\xF9\x04", I am able to explode the GIF and implode it to take it apart and build it again. However I can't seem to get GD to create an image from the data. Is there…
user10577558
-1
votes
1 answer

Need help improving this GIF appearance while it runs inside shiny

I'm trying to run a GIF inside my shiny App. I'm technically using this code to generate a GIF and upload it manually from my computer inside the APP. Part of my dataset is shown below, what I'm trying to do is run a GIF that shows the top 10 movies…
-1
votes
1 answer

Simple usage example of gif-h library

I'm attempting to create a minimal usage example for https://github.com/ginsweater/gif-h But, starting with a vector of size imageWidth*imageHeight, the second GifWriteFrame call throws an access violation reading location exception My…
WurmD
  • 1,231
  • 5
  • 21
  • 42
-1
votes
1 answer

How to display GIF in app?

i am trying to load gif in my project as per my requirement to show animation, i have used third-party lib for showing gif animation, i have copied same code from demo project but not working in my project. Here is my code : let animatedGif =…
user137418
  • 81
  • 3
  • 9