Guys I think I didn't know how to explain correctly, what I wanted to find is a way to convert an image or an app that would create the lines automatically without having to create a 40-pixel block at a time, I'll post an example of the code based on the image that I posted above, supposing that I would do the logo, I would start with the first block, second and third in "white" starting from the fourth block, I would start "painting" the pixels and so until the block 19/3, see that in the lines that I did I would already be building the logo of block 0/0 until 6/0 but I would have to do all of them until the last one.
byte char00[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
byte char10[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
byte char20[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
byte char30[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x07};
byte char40[8] = { 0x00, 0x00, 0x03, 0x0F, 0x1F, 0x1F, 0x1F, 0x1F};
byte char50[8] = { 0x07, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1C, 0x10};
byte char60[8] = { 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00};