A tuple ``(width, height)`` in pixels of a movie frame.
(self)
| 176 | |
| 177 | @property |
| 178 | def frame_size(self): |
| 179 | """A tuple ``(width, height)`` in pixels of a movie frame.""" |
| 180 | w, h = self.fig.get_size_inches() |
| 181 | return int(w * self.dpi), int(h * self.dpi) |
| 182 | |
| 183 | def _supports_transparency(self): |
| 184 | """ |
nothing calls this directly
no test coverage detected