python - Uploaded image is broken after writing to file -


i have image got post request. want save in files directory. use following code write file, afterwards file doesn't show image. how correctly save file?

img = form.imagen.data filename = secure_filename(img) path=os.path.join(app.config['upload_folder'], filename) open(path, 'wb+') f:     f.close() 

don't open , write file use flask framework abstract you

img = request.files['imugen'] filename = secure_filename(img.filename) img.save(os.path.join(app.config['upload_folder'], filename)) 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -