hong-xl
commited on
Commit
·
266e51e
1
Parent(s):
a2f6548
update application file
Browse files
app.py
CHANGED
@@ -4,9 +4,10 @@ import io
|
|
4 |
|
5 |
|
6 |
# 定义一个函数,它接受一张图片和一些文本,返回一个 HTML 页面
|
7 |
-
def create_html_page(input_image
|
8 |
# 将输入图片转换为 Pillow Image 对象
|
9 |
-
image = Image.open(io.BytesIO(input_image))
|
|
|
10 |
# 创建一个新的 Pillow Image 对象,大小为原始图片大小加上文本高度
|
11 |
new_image = Image.new('RGB', (image.width, image.height + 50), color = 'white')
|
12 |
new_image.paste(image, (0, 0))
|
|
|
4 |
|
5 |
|
6 |
# 定义一个函数,它接受一张图片和一些文本,返回一个 HTML 页面
|
7 |
+
def create_html_page(input_image):
|
8 |
# 将输入图片转换为 Pillow Image 对象
|
9 |
+
# image = Image.open(io.BytesIO(input_image))
|
10 |
+
image = input_image
|
11 |
# 创建一个新的 Pillow Image 对象,大小为原始图片大小加上文本高度
|
12 |
new_image = Image.new('RGB', (image.width, image.height + 50), color = 'white')
|
13 |
new_image.paste(image, (0, 0))
|