Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -57,7 +57,7 @@ def center_image(image, new_width, new_height):
|
|
| 57 |
return new_image
|
| 58 |
|
| 59 |
# 기사 시작
|
| 60 |
-
st.markdown('# 늘어나는 무인 점포 절도 업주들 "피해 막막해"')
|
| 61 |
|
| 62 |
st.write("<br><br><br>", unsafe_allow_html=True) # 3줄 띄어쓰기
|
| 63 |
# Replace 'uploaded_image.jpg' with the path to your image file
|
|
@@ -148,7 +148,7 @@ st.markdown("#### 무인점포 절도를 막기 위한 정책 다양화... 실
|
|
| 148 |
image_path = 'photo4.jpeg'
|
| 149 |
image = Image.open(image_path)
|
| 150 |
new_width = 400
|
| 151 |
-
new_height =
|
| 152 |
centered_image = center_image(image, new_width, new_height)
|
| 153 |
|
| 154 |
st.image(centered_image, caption='출처 안성경찰서', use_column_width=True)
|
|
|
|
| 57 |
return new_image
|
| 58 |
|
| 59 |
# 기사 시작
|
| 60 |
+
st.markdown('# 늘어나는 무인 점포 절도, 업주들 "피해 막막해"')
|
| 61 |
|
| 62 |
st.write("<br><br><br>", unsafe_allow_html=True) # 3줄 띄어쓰기
|
| 63 |
# Replace 'uploaded_image.jpg' with the path to your image file
|
|
|
|
| 148 |
image_path = 'photo4.jpeg'
|
| 149 |
image = Image.open(image_path)
|
| 150 |
new_width = 400
|
| 151 |
+
new_height = 600
|
| 152 |
centered_image = center_image(image, new_width, new_height)
|
| 153 |
|
| 154 |
st.image(centered_image, caption='출처 안성경찰서', use_column_width=True)
|