Is Arduino Micro enough to use with OLED Display?

Hi Everyone!

I have a Monochrome 128x32 SPI OLED Display ( http://www.adafruit.com/products/661 ) and I want to use it with an Arduino Micro. Is my Micro strong enough or does it have enough RAM to buffer the images that will be displayed? If not then what Arduino boards can I use?

Thanks!
Max Kulik

From your link:

You can download our SSD1306 OLED display Arduino library from github which comes with example code. The library can print text, bitmaps, pixels, rectangles, circles and lines. It uses 512 bytes of RAM since it needs to buffer the entire display but its very fast! The code is simple to adapt to any other microcontroller.

From http://arduino.cc/en/Main/ArduinoBoardMicro:

SRAM 2.5 KB (ATmega32u4)

Thanks for the help!