userform = UserForm(request.POST, request.FILES) raw_image = userform.cleaned_data["image"] content = BytesIO(raw_image.read()) image = Img.open(content)
.....
But i received the result...
.....
Exception Type: OSError Exception Value: cannot identify image file
Thanks for the advice
Hanz