Skip to content

Instantly share code, notes, and snippets.

@rodolfofadino
Created November 7, 2011 13:39
Show Gist options
  • Save rodolfofadino/1344991 to your computer and use it in GitHub Desktop.
Save rodolfofadino/1344991 to your computer and use it in GitHub Desktop.
1x1 transparent GIF
// 1x1 transparent GIF
private readonly byte[] GifData = {
0x47, 0x49, 0x46, 0x38, 0x39, 0x61,
0x01, 0x00, 0x01, 0x00, 0x80, 0xff,
0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
0x00, 0x2c, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x01, 0x00, 0x00, 0x02,
0x02, 0x44, 0x01, 0x00, 0x3b
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment