Matplotlib text dimensions

前端 未结 4 999
青春惊慌失措
青春惊慌失措 2020-11-30 03:08

Is it possible to determine the dimensions of a matplotlib text object? How can I find the width and height in pixels?

Thanks

Edit: I think

4条回答
  •  有刺的猬
    2020-11-30 03:57

    from matplotlib import pyplot as plt
    
    f = plt.figure()
    r = f.canvas.get_renderer()
    t = plt.text(0.5, 0.5, 'test')
    
    bb = t.get_window_extent(renderer=r)
    width = bb.width
    height = bb.height
    

提交回复
热议问题