如何扩展具有不同x和y边框的Python Pillow Image?

问题描述 投票:0回答:1

有一个函数.expand(),但它不能以不同的方式扩展每个维度。有什么办法可以做到吗?

python image python-imaging-library editing
1个回答
0
投票

PIL.ImageOps.expand()
函数的
border
参数接受单个整数大小或
(w, h)
的元组。后者解决了你的问题。

© www.soinside.com 2019 - 2024. All rights reserved.