gpt4 book ai didi

python-3.x - 如何调整 st.image 显示的图像大小

转载 作者:行者123 更新时间:2023-12-03 08:06:45 27 4
gpt4 key购买 nike

我有以下代码:

bottom_image = st.file_uploader('', type='jpg', key=6)
if bottom_image is not None:
st.image(bottom_image)

我遇到的问题是一些图像非常大,我希望能够将它们调整为固定大小。

不确定这是否有影响,但 file_uploader 位于一列中。

我考虑过创建缩略图,但我无法弄清楚。

想法?

最佳答案

您可以调整宽度参数。

st.image(bottom_image, width=400)

或者您可以使用 Pillow 库来操纵宽度和高度。

from PIL import Image

bottom_image = st.file_uploader('', type='jpg', key=6)
if bottom_image is not None:
image = Image.open(bottom_image)
new_image = image.resize((600, 400))
st.image(new_image)

关于python-3.x - 如何调整 st.image 显示的图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72131751/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com