top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create a GIF image?

+7 votes
322 views

I want to create a GIF file in which some object is constant and some object and changing its position over time. Any suggestion on how to achieve this?

posted Feb 3, 2014 by Salil Agrawal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
  • Download and install Photobie to your computer.

    1. Once the program has been opened, open each of the images you wish to use in your animated image.
    2. Determine one picture that will be your starting frame and then select the image that will be the next frame. Click Region and then Select whole image region or press CTRL+A to select the complete image.
    3. Click Edit and then Copy or press CTRL + C to copy the image. Select the picture that you determined to be your starting frame earlier and then click Edit and then Paste as new layer or CTRL + V.
    4. Once done you should have a new layer in the starting frame. Repeat steps 3-5 for each additional image (frame)
    5. you wish to use in the animated image. Once all images have been added as layers into the starting image, click GIF_Animation and then Animation control panel. In the Animation control panel you should see each of the layers.
    6. If you do not, click the green arrows to refresh the image view. Clicking the green box with a play triangle in it will play the animation.
    7. If it's going too fast select one of the frames and increase the millisecond delay time.
    8. Once the animation looks good click the blue diskette icon to save the animation.
answer Feb 6, 2014 by Amit Kumar Pandey
Similar Questions
+4 votes

I want to make an animated GIF from 3200+ png. I searched and found http://code.google.com/p/visvis/source/browse/#hg/vvmovie and I wrote:

allPic=glob.glob('*.png')
allPic.sort()
allPic=[Image.open(i) for i in allPic]
writeGif('lala3.gif',allPic, duration=0.5, dither=0)

However I got

 allPic=[Image.open(i) for i in allPic]
 File "e:prgpypython-2.7.3libsite-packagesPILImage.py", line 1952, in open
 fp = __builtin__.open(fp, "rb")
IOError: [Errno 24] Too many open files: 'out0572.png'

Is there other lib for py?

+4 votes

Most of the times when it comes to button or gif creation, I used to try several online tools to get one. This takes a lot of effort and time. I need name of online free Button/GIF/Logo generator Websites ?
(What you guys are using??) Thanks in Advance.

0 votes

In my wordpress site I have a picture in header section. On a full screen it looks ok but on mobile and when minimized the picture is on the left of the page. I would like it to be on the right. I thought that maybe I had to use CSS to reposition it so I did the following:
.widget-header img { float: left; } to .widget-header img { float: right; }
in hopes that it would work. However nothing seems to have changed. Can anybody help me how I fix this problem?

...