roni280
roni280

Reputation: 67

How to make gif at pygame?

I have 6 photos that I wanna make GIFs from them and show them on Pygame. I get that I can't preview it simply, so what I can do to show the animation like a gif?

Python 2.7

Upvotes: 0

Views: 1155

Answers (1)

Ted Klein Bergman
Ted Klein Bergman

Reputation: 9756

You can create a class that switch between your images based on a time interval.

class Animation(pygame.sprite.Sprite):

    def __init__(self, images, time_interval):
        super(Animation, self).__init__()
        self.images = images
        self.image = self.images[0]
        self.time_interval = time_interval
        self.index = 0
        self.timer = 0

    def update(self, seconds):
        self.timer += seconds
        if self.timer >= self.time_interval:
            self.image = self.images[self.index]
            self.index = (self.index + 1) % len(self.images)
            self.timer = 0

I created a small sample program to try it out.

import pygame
import sys

pygame.init()


class Animation(pygame.sprite.Sprite):

    def __init__(self, images, time_interval):
        super(Animation, self).__init__()
        self.images = images
        self.image = self.images[0]
        self.time_interval = time_interval
        self.index = 0
        self.timer = 0

    def update(self, seconds):
        self.timer += seconds
        if self.timer >= self.time_interval:
            self.image = self.images[self.index]
            self.index = (self.index + 1) % len(self.images)
            self.timer = 0


def create_images():
    images = []
    for i in xrange(6):
        image = pygame.Surface((256, 256))
        image.fill((255 - i * 50, 255, i * 50))
        images.append(image)
    return images


def main():
    images = create_images()  # Or use a list of your own images.
    a = Animation(images, 0.25)

    # Main loop.
    while True:
        seconds = clock.tick(FPS) / 1000.0  # 'seconds' is the amount of seconds each loop takes.

        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                sys.exit()

        a.update(seconds)
        screen.fill((0, 0, 0))
        screen.blit(a.image, (250, 100))
        pygame.display.update()


if __name__ == '__main__':
    screen = pygame.display.set_mode((720, 480))
    clock = pygame.time.Clock()
    FPS = 60
    main()

Upvotes: 2

Related Questions