Como fazer um GIF com grandes dimensões?

0

Eu tenho 4 fotos grandes (2448x3264). Eu gostaria de transformá-los em um GIF do mesmo tamanho com 4 quadros separados por 100ms.

Eu tentei vários softwares fora da rede (Free Gif Maker e similares), mas todos eles parecem limitar as dimensões a tamanhos relativamente pequenos.

Como posso fazer o GIF que eu quero?

    
por AngryHacker 15.10.2013 / 08:49

1 resposta

2

imagemagick é um utilitário de linha de comando de código aberto (gratuito) que permite converter imagens:

link

Veja um tutorial sobre GIFs: link

O comando que você está procurando é "converter"

convert -delay 20 -loop 0 sphere*.gif animatespheres.gif 

( -delay está em ms, -loop é opcional)

This will take all of the source frames and will make them into one animated GIF image called animatespheres.gif. The -delay 20 argument will cause a 20 hundredths of a second delay between each frame, and the -loop 0 will cause the gif to loop over and over again.

    
por 15.10.2013 / 09:03

Tags