Jeff Epler
c34b6f757f
Implement gifio.GifWriter
...
This involves:
* Adding a new "L8" colorspace for colorconverters
* factoring out displayio_colorconverter_convert_pixel
* Making a minimal "colorspace only" version of displayio for the
unix port (testing purposes)
* fixing an error message
I only tested writing B&W animated images, with the following script:
```python
import displayio
import gifio
with gifio.GifWriter("foo.gif", 64, 64, displayio.Colorspace.L8) as g:
for i in range(0, 256, 14):
data = bytes([i, 255-i] * 32 + [255-i, i] * 32) * 32
print("add_frame")
g.add_frame(data)
# expected to raise an error, buffer is not big enough
with gifio.GifWriter("/dev/null", 64, 64, displayio.Colorspace.L8) as g:
g.add_frame(bytes([3,3,3]))
```
2021-10-26 08:54:18 -05:00
..
2021-10-26 08:54:18 -05:00
2021-06-18 10:54:19 -05:00
2021-06-18 10:54:19 -05:00
2021-05-03 14:01:18 -07:00
2021-05-03 14:01:18 -07:00
2021-06-18 10:54:19 -05:00
2021-06-18 10:54:19 -05:00
2021-05-20 23:43:25 +10:00
2021-05-04 18:06:33 -07:00
2021-05-04 18:06:33 -07:00
2021-05-04 18:06:33 -07:00
2021-05-03 14:01:18 -07:00
2021-05-04 18:06:33 -07:00
2021-05-04 18:06:33 -07:00
2021-06-18 10:54:19 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-05-03 14:01:18 -07:00
2021-05-04 18:06:33 -07:00
2021-05-04 18:06:33 -07:00
2021-10-21 18:07:07 -04:00
2021-10-15 08:20:54 -05:00
2021-10-26 08:54:18 -05:00
2021-10-15 10:39:47 -05:00
2021-10-26 08:54:18 -05:00
2021-06-18 10:54:19 -05:00
2021-05-03 14:01:18 -07:00
2021-10-15 08:20:54 -05:00
2021-05-03 14:01:18 -07:00
2021-05-03 14:01:18 -07:00
2021-05-12 17:51:42 -07:00
2021-04-21 15:59:17 -07:00
2021-06-18 16:59:48 -05:00
2021-05-03 14:01:18 -07:00
2021-05-11 15:07:40 -07:00
2021-05-11 15:07:40 -07:00
2018-09-04 14:31:28 +10:00
2021-10-15 08:20:54 -05:00
2018-09-04 14:31:28 +10:00
2018-09-04 14:31:28 +10:00
2021-05-03 14:01:18 -07:00
2018-09-04 14:31:28 +10:00
2021-05-03 14:01:18 -07:00
2021-05-05 17:51:52 -07:00
2021-03-15 19:27:36 +05:30
2021-05-04 18:06:33 -07:00
2020-07-06 19:16:25 +01:00
2021-04-19 22:22:44 -07:00
2021-04-26 15:47:41 -07:00
2021-04-26 15:47:41 -07:00
2018-01-24 10:33:46 -08:00
2021-09-14 16:24:37 -07:00
2021-05-12 17:51:42 -07:00
2021-05-03 14:01:18 -07:00
2021-05-04 18:06:33 -07:00
2020-07-06 19:16:25 +01:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2020-04-20 10:32:49 +10:00
2021-04-30 15:30:13 -05:00
2021-08-07 09:23:35 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 10:40:04 -05:00
2021-04-21 15:59:17 -07:00
2021-05-11 15:07:40 -07:00
2021-10-15 08:20:54 -05:00
2021-10-15 15:11:21 -05:00
2021-08-07 20:25:32 +10:00
2021-10-15 08:20:54 -05:00
2021-04-26 15:47:41 -07:00
2021-10-15 08:20:54 -05:00
2021-05-04 18:06:33 -07:00
2021-03-15 19:27:36 +05:30
2021-04-19 22:22:44 -07:00
2021-10-15 08:20:54 -05:00
2021-05-11 15:07:40 -07:00
2021-08-19 16:49:33 -07:00
2021-05-05 17:51:52 -07:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-05 18:45:44 +05:30
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-05-11 15:07:40 -07:00
2021-08-29 11:36:29 -05:00
2021-10-15 08:20:54 -05:00
2020-07-06 19:16:25 +01:00
2021-10-15 08:20:54 -05:00
2021-05-04 18:06:33 -07:00
2021-10-15 08:20:54 -05:00
2021-06-02 12:10:41 +09:00
2021-05-08 20:17:16 -05:00
2021-05-08 20:17:16 -05:00
2021-04-19 22:22:44 -07:00
2021-05-12 17:51:42 -07:00
2021-06-18 10:54:19 -05:00
2021-05-03 14:01:18 -07:00
2020-07-06 19:16:25 +01:00
2021-05-04 18:06:33 -07:00
2021-06-18 10:54:19 -05:00
2021-05-04 18:06:33 -07:00
2021-04-19 22:22:44 -07:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-05-11 15:07:40 -07:00
2021-07-12 06:57:59 -05:00
2021-10-15 08:20:54 -05:00
2021-07-12 06:57:59 -05:00
2021-04-19 22:22:44 -07:00
2021-07-12 06:57:59 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-08-04 12:10:57 +05:30
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-05-03 14:01:18 -07:00
2021-10-15 08:20:54 -05:00
2020-07-06 19:16:25 +01:00
2021-10-15 08:20:54 -05:00
2021-05-04 18:06:33 -07:00
2021-05-11 15:07:40 -07:00
2021-10-15 08:20:54 -05:00
2021-05-04 18:06:33 -07:00
2021-10-15 08:20:54 -05:00
2021-02-27 21:13:55 +01:00
2021-10-15 08:20:54 -05:00
2021-08-16 08:50:57 -05:00
2021-05-03 14:01:18 -07:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-07-12 06:57:59 -05:00
2021-10-15 08:20:54 -05:00
2021-07-12 06:57:59 -05:00
2021-10-15 08:20:54 -05:00
2020-07-06 19:16:25 +01:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-07-12 06:57:59 -05:00
2021-10-15 08:20:54 -05:00
2021-10-19 10:52:14 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2020-07-06 19:16:25 +01:00
2021-08-17 17:41:59 -07:00
2021-08-23 20:23:23 -05:00
2021-08-04 12:10:57 +05:30
2021-10-15 08:20:54 -05:00
2021-04-19 22:22:44 -07:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-07-12 07:03:52 -05:00
2020-03-26 01:21:04 +11:00
2020-03-26 01:21:04 +11:00
2021-10-15 08:20:54 -05:00
2021-05-11 15:07:40 -07:00
2021-06-18 10:54:19 -05:00
2020-07-06 19:16:25 +01:00
2021-04-19 22:22:44 -07:00
2020-07-06 19:16:25 +01:00
2021-05-23 08:57:41 +01:00
2021-05-03 14:01:18 -07:00
2021-10-15 08:20:54 -05:00
2021-05-03 14:01:18 -07:00
2021-07-12 07:04:04 -05:00
2021-07-12 07:04:04 -05:00
2021-08-04 12:10:57 +05:30
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-04-19 22:22:44 -07:00
2021-08-31 13:38:37 -07:00
2021-05-11 15:07:40 -07:00
2021-04-21 15:59:17 -07:00
2021-05-04 18:06:33 -07:00
2020-07-06 19:16:25 +01:00
2021-10-15 08:20:54 -05:00
2021-03-15 19:27:36 +05:30
2021-06-18 11:24:39 -05:00
2020-07-06 19:16:25 +01:00
2021-05-03 14:01:18 -07:00
2021-05-03 14:01:18 -07:00
2021-05-03 14:01:18 -07:00
2018-07-11 16:45:30 -04:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-10-15 08:20:54 -05:00
2021-05-11 15:07:40 -07:00
2021-05-11 15:07:40 -07:00
2021-05-05 17:51:52 -07:00
2021-10-15 08:20:54 -05:00
2020-07-06 19:16:25 +01:00
2021-10-15 08:20:54 -05:00
2021-04-19 22:22:44 -07:00
2021-06-18 10:54:19 -05:00
2021-05-05 17:51:52 -07:00
2021-05-05 11:00:35 -05:00
2021-05-04 18:06:33 -07:00
2020-07-06 19:16:25 +01:00
2021-03-31 00:26:01 +11:00
2021-10-15 08:20:54 -05:00
2021-05-11 15:07:40 -07:00
2021-04-26 15:47:41 -07:00
2021-04-26 15:47:41 -07:00