“Wygeneruj gif py” Kod odpowiedzi

Zrób gif z obrazów w Pythonie

import glob
import os

gif_name = 'outputName'
file_list = glob.glob('*.png') # Get all the pngs in the current directory
list.sort(file_list, key=lambda x: int(x.split('_')[1].split('.png')[0])) # Sort the images by #, this may need to be tweaked for your use case

with open('image_list.txt', 'w') as file:
    for item in file_list:
        file.write("%s\n" % item)

os.system('convert @image_list.txt {}.gif'.format(gif_name)) # On windows convert is 'magick'
Energetic Earthworm

Wygeneruj gif py

import imageio
images = []
for filename in filenames:
    images.append(imageio.imread(filename))
imageio.mimsave('/path/to/movie.gif', images)
Sparkling Squirrel

Odpowiedzi podobne do “Wygeneruj gif py”

Pytania podobne do “Wygeneruj gif py”

Więcej pokrewnych odpowiedzi na “Wygeneruj gif py” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu