How can I resize image with PIL on upload and serve them with flask-cloudy?
My current solution does't works as expected. I need to get image from formdata
, resize it and upload to local file server using flask-cloudy. How can I transform _io.BufferedWriter
back to file object?
And source code:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
print(file, file=sys.stderr)
uploadId=str(uuid.uuid4())
source = storage.upload(file, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
image_request_result = requests.get(source.full_url)
image = Image.open(io.BytesIO(image_request_result.content))
width, height = image.size
max_size = [200, 200]
image_io = io.BytesIO()
image.save(image_io, format='JPEG')
with open('%s_%s.jpeg' % (uploadId, '200x200'), 'wb') as file_output:
print(file_output, file=sys.stderr)
source0 = storage.upload(file_output, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
print(source0, file=sys.stderr)
resp = json.dumps({
"id": uploadId,
"url": source.url,
"full_url": source.full_url
})
return Response(resp, status=201, mimetype='application/json')
else:
return Response("Not authorized", status=401, mimetype='application/json')
else:
return Response("{request.method} is not allowed!", status=400, mimetype='application/json')
Thanks!
python flask python-imaging-library
add a comment |
My current solution does't works as expected. I need to get image from formdata
, resize it and upload to local file server using flask-cloudy. How can I transform _io.BufferedWriter
back to file object?
And source code:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
print(file, file=sys.stderr)
uploadId=str(uuid.uuid4())
source = storage.upload(file, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
image_request_result = requests.get(source.full_url)
image = Image.open(io.BytesIO(image_request_result.content))
width, height = image.size
max_size = [200, 200]
image_io = io.BytesIO()
image.save(image_io, format='JPEG')
with open('%s_%s.jpeg' % (uploadId, '200x200'), 'wb') as file_output:
print(file_output, file=sys.stderr)
source0 = storage.upload(file_output, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
print(source0, file=sys.stderr)
resp = json.dumps({
"id": uploadId,
"url": source.url,
"full_url": source.full_url
})
return Response(resp, status=201, mimetype='application/json')
else:
return Response("Not authorized", status=401, mimetype='application/json')
else:
return Response("{request.method} is not allowed!", status=400, mimetype='application/json')
Thanks!
python flask python-imaging-library
add a comment |
My current solution does't works as expected. I need to get image from formdata
, resize it and upload to local file server using flask-cloudy. How can I transform _io.BufferedWriter
back to file object?
And source code:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
print(file, file=sys.stderr)
uploadId=str(uuid.uuid4())
source = storage.upload(file, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
image_request_result = requests.get(source.full_url)
image = Image.open(io.BytesIO(image_request_result.content))
width, height = image.size
max_size = [200, 200]
image_io = io.BytesIO()
image.save(image_io, format='JPEG')
with open('%s_%s.jpeg' % (uploadId, '200x200'), 'wb') as file_output:
print(file_output, file=sys.stderr)
source0 = storage.upload(file_output, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
print(source0, file=sys.stderr)
resp = json.dumps({
"id": uploadId,
"url": source.url,
"full_url": source.full_url
})
return Response(resp, status=201, mimetype='application/json')
else:
return Response("Not authorized", status=401, mimetype='application/json')
else:
return Response("{request.method} is not allowed!", status=400, mimetype='application/json')
Thanks!
python flask python-imaging-library
My current solution does't works as expected. I need to get image from formdata
, resize it and upload to local file server using flask-cloudy. How can I transform _io.BufferedWriter
back to file object?
And source code:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
print(file, file=sys.stderr)
uploadId=str(uuid.uuid4())
source = storage.upload(file, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
image_request_result = requests.get(source.full_url)
image = Image.open(io.BytesIO(image_request_result.content))
width, height = image.size
max_size = [200, 200]
image_io = io.BytesIO()
image.save(image_io, format='JPEG')
with open('%s_%s.jpeg' % (uploadId, '200x200'), 'wb') as file_output:
print(file_output, file=sys.stderr)
source0 = storage.upload(file_output, name=uploadId, extension=["jpeg","jpg","png"], overwrite=False, public=True)
print(source0, file=sys.stderr)
resp = json.dumps({
"id": uploadId,
"url": source.url,
"full_url": source.full_url
})
return Response(resp, status=201, mimetype='application/json')
else:
return Response("Not authorized", status=401, mimetype='application/json')
else:
return Response("{request.method} is not allowed!", status=400, mimetype='application/json')
Thanks!
python flask python-imaging-library
python flask python-imaging-library
edited Nov 16 '18 at 14:47
Minato
2,74311423
2,74311423
asked Nov 16 '18 at 11:50
Artemiy VereshchinskiyArtemiy Vereshchinskiy
509
509
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Finally, I've did it! Hope this answer below would be helpful for someone who uses same libraries and for someone who need to create thumbnails and store it somewhere.
Flask cloudy expects from us to pass File or Path/to/file.string. The only solution I've found is get requested file, open in with PIL, make smth, save it to bytes, write those bytes to file and pass this file path to Flask Cloudy.
Solution:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
img_sizes = [(128,128),(300,300),(800,600)]
uploadId=str(uuid.uuid4())
prefix = uploadId + '/'
source = storage.upload(file, name=uploadId, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
for size in img_sizes:
image = Image.open(file)
image_io = io.BytesIO()
image.thumbnail(size)
image.save(image_io, 'jpeg')
thumbName = '%s_%s.jpg' % (uploadId, str('x'.join(tuple(map( str , size )))))
with open(thumbName, 'wb') as file_output:
file_output.write(image_io.getvalue())
file_output.close()
source0 = storage.upload(thumbName, name=thumbName, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
os.remove(thumbName)
resp = json.dumps({
"id": uploadId,
"url": source.url
})
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337318%2fhow-can-i-resize-image-with-pil-on-upload-and-serve-them-with-flask-cloudy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Finally, I've did it! Hope this answer below would be helpful for someone who uses same libraries and for someone who need to create thumbnails and store it somewhere.
Flask cloudy expects from us to pass File or Path/to/file.string. The only solution I've found is get requested file, open in with PIL, make smth, save it to bytes, write those bytes to file and pass this file path to Flask Cloudy.
Solution:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
img_sizes = [(128,128),(300,300),(800,600)]
uploadId=str(uuid.uuid4())
prefix = uploadId + '/'
source = storage.upload(file, name=uploadId, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
for size in img_sizes:
image = Image.open(file)
image_io = io.BytesIO()
image.thumbnail(size)
image.save(image_io, 'jpeg')
thumbName = '%s_%s.jpg' % (uploadId, str('x'.join(tuple(map( str , size )))))
with open(thumbName, 'wb') as file_output:
file_output.write(image_io.getvalue())
file_output.close()
source0 = storage.upload(thumbName, name=thumbName, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
os.remove(thumbName)
resp = json.dumps({
"id": uploadId,
"url": source.url
})
add a comment |
Finally, I've did it! Hope this answer below would be helpful for someone who uses same libraries and for someone who need to create thumbnails and store it somewhere.
Flask cloudy expects from us to pass File or Path/to/file.string. The only solution I've found is get requested file, open in with PIL, make smth, save it to bytes, write those bytes to file and pass this file path to Flask Cloudy.
Solution:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
img_sizes = [(128,128),(300,300),(800,600)]
uploadId=str(uuid.uuid4())
prefix = uploadId + '/'
source = storage.upload(file, name=uploadId, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
for size in img_sizes:
image = Image.open(file)
image_io = io.BytesIO()
image.thumbnail(size)
image.save(image_io, 'jpeg')
thumbName = '%s_%s.jpg' % (uploadId, str('x'.join(tuple(map( str , size )))))
with open(thumbName, 'wb') as file_output:
file_output.write(image_io.getvalue())
file_output.close()
source0 = storage.upload(thumbName, name=thumbName, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
os.remove(thumbName)
resp = json.dumps({
"id": uploadId,
"url": source.url
})
add a comment |
Finally, I've did it! Hope this answer below would be helpful for someone who uses same libraries and for someone who need to create thumbnails and store it somewhere.
Flask cloudy expects from us to pass File or Path/to/file.string. The only solution I've found is get requested file, open in with PIL, make smth, save it to bytes, write those bytes to file and pass this file path to Flask Cloudy.
Solution:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
img_sizes = [(128,128),(300,300),(800,600)]
uploadId=str(uuid.uuid4())
prefix = uploadId + '/'
source = storage.upload(file, name=uploadId, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
for size in img_sizes:
image = Image.open(file)
image_io = io.BytesIO()
image.thumbnail(size)
image.save(image_io, 'jpeg')
thumbName = '%s_%s.jpg' % (uploadId, str('x'.join(tuple(map( str , size )))))
with open(thumbName, 'wb') as file_output:
file_output.write(image_io.getvalue())
file_output.close()
source0 = storage.upload(thumbName, name=thumbName, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
os.remove(thumbName)
resp = json.dumps({
"id": uploadId,
"url": source.url
})
Finally, I've did it! Hope this answer below would be helpful for someone who uses same libraries and for someone who need to create thumbnails and store it somewhere.
Flask cloudy expects from us to pass File or Path/to/file.string. The only solution I've found is get requested file, open in with PIL, make smth, save it to bytes, write those bytes to file and pass this file path to Flask Cloudy.
Solution:
def image_add():
if request.method == 'POST':
if 'username' in session:
file = request.files['image']
img_sizes = [(128,128),(300,300),(800,600)]
uploadId=str(uuid.uuid4())
prefix = uploadId + '/'
source = storage.upload(file, name=uploadId, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
for size in img_sizes:
image = Image.open(file)
image_io = io.BytesIO()
image.thumbnail(size)
image.save(image_io, 'jpeg')
thumbName = '%s_%s.jpg' % (uploadId, str('x'.join(tuple(map( str , size )))))
with open(thumbName, 'wb') as file_output:
file_output.write(image_io.getvalue())
file_output.close()
source0 = storage.upload(thumbName, name=thumbName, prefix=prefix, extension=["jpeg","jpg","png"], overwrite=False, public=True)
os.remove(thumbName)
resp = json.dumps({
"id": uploadId,
"url": source.url
})
answered Dec 19 '18 at 23:02
Artemiy VereshchinskiyArtemiy Vereshchinskiy
509
509
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337318%2fhow-can-i-resize-image-with-pil-on-upload-and-serve-them-with-flask-cloudy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown