“Rette Gif Python” Code-Antworten

Machen Sie GIF aus Bildern in Python

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

Rette Gif Python

first_im.save('out.gif', save_all=True, append_images=list_im, duration=100, loop=0)
Friendly Frog

Ähnliche Antworten wie “Rette Gif Python”

Fragen ähnlich wie “Rette Gif Python”

Weitere verwandte Antworten zu “Rette Gif Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen