Send And Receive Back Image By Post Method In Python Flask
I want to send an image by POST method to server (e.g by Postman), and then send back the same image to user. Here's what I have and i have no idea how to put image back to user wi
Solution 1:
If you would send only image then you could use send_file() to send it as is (as bytes). And then browser could display it directly.
But if you want to send image with other values in JSON then you have to convert it from bytes to base64 and add to JSON
data = file.stream.read()
data = base64.encodebytes(data)
return jsonify({'msg': 'success', 'size': [img.width, img.height], 'img': data})
And later you would need JavaScript code to convert it back and display using canvas in browser - or it create <img> using base64 in url -
for jpeg:
<imgsrc="data:image/jpeg;base64,...base64 data...">for png:
<imgsrc="data:image/png;base64,...base64 data...">so you would have to send also information what image it is - JPG or PNG.
img.formatMinimal working code which send image in JSON
from flask import Flask, request, jsonify
from PIL import Image
import base64
app = Flask(__name__)
@app.route('/')defindex():
return'''Server Works!<hr>
<form action="/processing" method="POST" enctype="multipart/form-data">
<input type="file" name="image">
<button>OK</button>
</form>
'''@app.route('/processing', methods=['POST'])defprocess():
file = request.files['image']
img = Image.open(file.stream)
data = file.stream.read()
#data = base64.encodebytes(data)
data = base64.b64encode(data).decode()
return jsonify({
'msg': 'success',
'size': [img.width, img.height],
'format': img.format,
'img': data
})
if __name__ == '__main__':
app.run(debug=True)
If you want to send image after changes (without writing on disk) then would need to use io.Bytes() to convert object PIL.Image to compressed file in memory.
I also show how to use base64 image directly in HTML
@app.route('/processing', methods=['POST'])
def process():
file = request.files['image']
img = Image.open(file.stream)
img = img.convert('L') # ie. convert to grayscale
#data = file.stream.read()
#data = base64.b64encode(data).decode()
buffer = io.BytesIO()
img.save(buffer, 'png')
buffer.seek(0)
data = buffer.read()
data = base64.b64encode(data).decode()
#return jsonify({
# 'msg': 'success',
# 'size': [img.width, img.height],
# 'format': img.format,
# 'img': data
# })
return f'<img src="data:image/png;base64,{data}">'
Post a Comment for "Send And Receive Back Image By Post Method In Python Flask"