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

Method get_size

lib/matplotlib/image.py:303–305  ·  view source on GitHub ↗

Return the size of the image as tuple (numrows, numcols).

(self)

Source from the content-addressed store, hash-verified

301 return {**super().__getstate__(), "_imcache": None}
302
303 def get_size(self):
304 """Return the size of the image as tuple (numrows, numcols)."""
305 return self.get_shape()[:2]
306
307 def get_shape(self):
308 """

Callers 14

set_bboxMethod · 0.45
_get_xy_transformMethod · 0.45
update_positionsMethod · 0.45
get_extentMethod · 0.45
get_extentMethod · 0.45
_draw_text_as_textMethod · 0.45
test_pie_textpropsFunction · 0.45

Calls 1

get_shapeMethod · 0.95