Search found 3 matches

by searene
2017-04-15T08:44:39-07:00
Forum: Users
Topic: Create a gif out of multiple png files and retain the original size
Replies: 5
Views: 5011

Re: Create a gif out of multiple png files and retain the original size

Hi snibgo,

Thanks for the explanation, it's very clear.
by searene
2017-04-15T07:33:49-07:00
Forum: Users
Topic: Create a gif out of multiple png files and retain the original size
Replies: 5
Views: 5011

Re: Create a gif out of multiple png files and retain the original size

Hi snibgo,

Thank you for your reply and suggestion.

These png files are originally 1920x1080, I cropped them to 575x500 using this command.

mogrify -crop 575x500+715+322 *.png

This is the output of identify *.png:


➜ Desktop identify *.png
2017-04-15-160537_1920x1080_scrot.png PNG 575x500 ...
by searene
2017-04-15T01:59:10-07:00
Forum: Users
Topic: Create a gif out of multiple png files and retain the original size
Replies: 5
Views: 5011

Create a gif out of multiple png files and retain the original size

I have multiple png files, all of them are of size 575x500, I created a gif out of those png files using the following command:

convert -delay 100 -loop 0 *.png a.gif

It worked, except the size of a.gif was 1920x1080, which was the same as my screen resolution. Most areas of the gif is ...