Added openFLASH option for ESP8266
My gif.open() function was using memcpy to access the source data and on the ESP32, this worked because it recognizes FLASH vs RAM addresses. On the 8266 the address spaces overlap and this was causing problems, so I added gif.openFLASH() which uses memcpy_P to correctly access the FLASH address space.