如何从Image中获取一个8位的8位整数列表?

How to get a 8, 8-bit integer list from a Image?

我正在使用其 python 框架在我的 RasperryPi 和 Display-O-Tron 3000 上编写一些代码。

谁能解释一下如何从图像中获取包含 8 个 8 位值的列表?

列表如下:

吃豆子:

pacman = [
    [0x0e, 0x1f, 0x1d, 0x1f, 0x18, 0x1f, 0x1f, 0x0e],
    [0x0e, 0x1d, 0x1e, 0x1c, 0x18, 0x1c, 0x1e, 0x0f]
]

或向下箭头:

arr = [
    [31, 14, 4, 0, 0, 0, 0, 0],
    [0, 31, 14, 4, 0, 0, 0, 0],
    [0, 0, 31, 14, 4, 0, 0, 0],
    [0, 0, 0, 31, 14, 4, 0, 0],
    [0, 0, 0, 0, 31, 14, 4, 0],
    [0, 0, 0, 0, 0, 31, 14, 4],
    [4, 0, 0, 0, 0, 0, 31, 14],
    [14, 4, 0, 0, 0, 0, 0, 31]
]

我正在尝试从图像中获取类似这样的列表。

这很棒 Online-tool 解决了我的问题

http://blog.riyas.org/2013/12/online-led-matrix-font-generator-with.html

干杯克里斯