read the (width, height) from a GIF header
(data)
| 826 | |
| 827 | |
| 828 | def _gifxy(data): |
| 829 | """read the (width, height) from a GIF header""" |
| 830 | return struct.unpack('<HH', data[6:10]) |
| 831 | |
| 832 | |
| 833 | def _webpxy(data): |
no outgoing calls
no test coverage detected
searching dependent graphs…