hong-xl commited on
Commit
f8c2103
·
1 Parent(s): f3b1117

update application file

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -6,9 +6,9 @@ import io
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
- print(input_image)
12
  # 创建一个新的 Pillow Image 对象,大小为原始图片大小加上文本高度
13
  new_image = Image.new('RGB', (image.width, image.height + 50), color = 'white')
14
  new_image.paste(image, (0, 0))
 
6
  # 定义一个函数,它接受一张图片和一些文本,返回一个 HTML 页面
7
  def create_html_page(input_image):
8
  # 将输入图片转换为 Pillow Image 对象
9
+ image = Image.open(input_image)
10
+ # image = input_image
11
+ print(input_image.shape)
12
  # 创建一个新的 Pillow Image 对象,大小为原始图片大小加上文本高度
13
  new_image = Image.new('RGB', (image.width, image.height + 50), color = 'white')
14
  new_image.paste(image, (0, 0))