Skip to content

Instantly share code, notes, and snippets.

@very
Created November 23, 2012 15:07
Show Gist options
  • Save very/4136049 to your computer and use it in GitHub Desktop.
Save very/4136049 to your computer and use it in GitHub Desktop.
function createRandomGIF(width, height, colors) {
return {
width: width,
height: height,
resolution: 7,
colorTable: {
sorted: false,
colors: random(colors, 0x000000, 0xFFFFFF)
},
background: 0,
aspect: 0,
loopCount: 0,
graphics: [{
type: 'image',
left: 0,
top: 0,
width: width,
height: height,
interlaced: false,
data: random(width*height, 0, colors - 1)
}],
comments: []
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment