-
Notifications
You must be signed in to change notification settings - Fork 147
/
app.py
27 lines (24 loc) · 1014 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from flask import Flask, render_template, request, send_file
from rembg import remove
from PIL import Image
from io import BytesIO
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
if 'file' not in request.files:
return 'No file uploaded', 400
file = request.files['file']
if file.filename == '':
return 'No file selected', 400
if file:
input_image = Image.open(file.stream)
output_image = remove(input_image, post_process_mask=True)
img_io = BytesIO()
output_image.save(img_io, 'PNG')
img_io.seek(0)
# return send_file(img_io, mimetype='image/png') # Change download in separatre browser tab
return send_file(img_io, mimetype='image/png', as_attachment=True, download_name='_rmbg.png')
return render_template('index.html')
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True, port=5100)