(self, data)
| 1760 | raise FormatError("tRNS chunk has incorrect length.") |
| 1761 | |
| 1762 | def _process_gAMA(self, data): |
| 1763 | try: |
| 1764 | self.gamma = struct.unpack("!L", data)[0] / 100000.0 |
| 1765 | except struct.error: |
| 1766 | raise FormatError("gAMA chunk has incorrect length.") |
| 1767 | |
| 1768 | def _process_sBIT(self, data): |
| 1769 | self.sbit = data |
nothing calls this directly
no test coverage detected