Convert GIF animations into optimized C arrays for ESP32 OLED displays.
Perfect for smooth frame-based animation on 128x64 OLED.
- Upload a GIF
- Frames are extracted automatically
- Converted into monochrome bitmap
- Generates optimized C array code
- Ready to use in ESP32 / Arduino
- 🎞️ GIF → frame-by-frame C conversion
- ⚡ Optimized for OLED performance
- 📏 Auto scaling for 128x64 displays
- 🌐 Works fully in browser (no install)
- 🧠 Efficient memory-friendly output
const unsigned char frames[][1024] = {
{0x00, 0xFF, 0xA5, ...},
{0x00, 0xAA, 0x55, ...},
};If you found this project useful:
- ⭐ Star the repository
- 🍴 Fork and improve it
- 🐛 Report issues or suggest features
Contributions are always welcome!
Have ideas or improvements?
Feel free to open an issue or reach out — would love to see what you build with Pixel2Code 🚀
Made with ❤️ by Surya.S
⚡ Turning pixels into code