• Hey Guest. Check out your NeoGAF Wrapped 2025 results here!

How do you make a gif?

Status
Not open for further replies.
ok, ok. I'll show you what to do. It's pretty labor intensive, but here's the gist of it.

Open notepad, and paste this:
Code:
GIF_IMAGE
{	
	NumberOfImages	:	3;
	Loop		:	-1;

	Image1
	{
		name		:	theImage.xxx;
		duration	:	.1s;
	};
	
	Transition
	{
		type		:	star-wipe;
		duration	:	.5s;
	};

	Image2
	{
		name		:	theImage2.xxx;
		duration	:	.1s;
	};

	Transition
	{
		type		:	star-wipe;
		duration	:	.5s;
	};

	Image3
	{
		name		:	theImage3.xxx;
		duration	:	.1s;
	};

	Transition
	{
		type		:	star-wipe;
		duration	:	.5s;
	};

};

and save it as a gif.

Change the image names and durations to your liking, and make sure the correct images are in the same directory or you'll run into problems.

You might want to look online to see what different types of transitions you can use as well.
 
Status
Not open for further replies.
Top Bottom