shrink image viewer
Browse files
app.py
CHANGED
@@ -93,7 +93,7 @@ def main():
|
|
93 |
try:
|
94 |
response = requests.get(image_data['thumb_1024_url'])
|
95 |
image = Image.open(BytesIO(response.content))
|
96 |
-
st.image(image, caption="Street View",
|
97 |
|
98 |
# Add download button
|
99 |
st.download_button(
|
|
|
93 |
try:
|
94 |
response = requests.get(image_data['thumb_1024_url'])
|
95 |
image = Image.open(BytesIO(response.content))
|
96 |
+
st.image(image, caption="Street View", width=400)
|
97 |
|
98 |
# Add download button
|
99 |
st.download_button(
|