MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / frame_size

Method frame_size

lib/matplotlib/animation.py:178–181  ·  view source on GitHub ↗

A tuple ``(width, height)`` in pixels of a movie frame.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

get_size_inchesMethod · 0.80

Tested by

no test coverage detected