i cant display image in oled display ssd1306. i use image2cpp (javl.github.io) to convert in byte
but i cant still display image
here the code
#include <U8g2lib.h>
#include <Wire.h>
U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
const unsigned char epd_bitmap_wifi [] PROGMEM = {
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0f, 0xc7, 0xe3, 0x9f, 0xf9, 0xf0, 0x0f, 0xe3, 0xc7,
0xfe, 0x7f, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};
void setup() {
u8g2.begin();
}
void loop() {
u8g2.clearBuffer();
u8g2.setFontMode(1);
u8g2.setBitmapMode(1);
u8g2.drawXBM(46, 0, 16, 16, epd_bitmap_wifi);
u8g2.sendBuffer();
}
*error on wokwi simulator dislay
can anyone help me



