“Сделайте GIF с изображениями Python” Ответ

Сделайте GIF с изображениями Python

import imageio
with imageio.get_writer('/path/to/movie.gif', mode='I') as writer:
    for filename in filenames:
        image = imageio.imread(filename)
        writer.append_data(image)
Vast Vicuña

Сделайте GIF из изображений в 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

Ответы похожие на “Сделайте GIF с изображениями Python”

Вопросы похожие на “Сделайте GIF с изображениями Python”

Больше похожих ответов на “Сделайте GIF с изображениями Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования