V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
Lucups
V2EX  ›  Python

matplotlib: 如何设置生成的图片比例?

  •  
  •   Lucups · 2014-04-09 10:04:35 +08:00 · 12789 次点击
    这是一个创建于 3642 天前的主题,其中的信息可能已经有所发展或是发生改变。
    为了去除图片的边缘空白部分,我使用了

    fig = plt.figure()
    ax = fig.add_subplot(111)
    extent = ax.get_window_extent().transformed(fig.dpi_scale_trans.inverted())
    plt.savefig('test.png', dpi = 200, bbox_inches = extent)

    然后默认生成的图片宽高比例都是 31:24 的。

    测试了一下直接 show

    plt.show()

    show出来的图片宽高比例是1:1的。

    该如何设置图片的比例?
    4 条回复    1970-01-01 08:00:00 +08:00
    autozimu
        1
    autozimu  
       2014-04-09 22:29:24 +08:00   ❤️ 1
    figure(figsize=None, ...)

    figsize : tuple of integers, optional, default : None
    width, height in inches. If not provided, defaults to rc
    figure.figsize.

    为什么要去除空白部分? 使用 savefig 的 transparent=True 参数不是很好吗?
    Lucups
        2
    Lucups  
    OP
       2014-04-10 00:06:52 +08:00
    @autozimu
    非常感谢!
    因为有坐标轴的原因,transparent=True 会把坐标轴包含在内。
    我试了一下 figure(figsize=[n,n]) (n=16, dpi=100) 可以实现等比,本身没有问题,但在我的那个代码里,生成的图片还是有一点点小小的差距(1240*1280)。
    能否不显示坐标轴?
    Hualin
        3
    Hualin  
       2014-04-10 02:26:03 +08:00   ❤️ 1
    @Lucups plt.axis('off')
    Lucups
        4
    Lucups  
    OP
       2014-04-12 22:01:59 +08:00
    @Hualin 我已经找到最优方案, 感谢回答~!
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5837 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 06:18 · PVG 14:18 · LAX 23:18 · JFK 02:18
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.