mdanish commited on
Commit
843d2c1
·
1 Parent(s): 3f6b2aa

shrink image viewer

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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", use_column_width=True)
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(