Skip to content

Instantly share code, notes, and snippets.

@amirasaran
Forked from yprez/fields.py
Last active June 11, 2017 10:46
Show Gist options
  • Save amirasaran/b068d0b79ee9086663fda766b41bcb31 to your computer and use it in GitHub Desktop.
Save amirasaran/b068d0b79ee9086663fda766b41bcb31 to your computer and use it in GitHub Desktop.
Django rest framework - Base64 image field
import base64
from django.core.files.base import ContentFile
from rest_framework import serializers
class Base64ImageField(serializers.ImageField):
def to_internal_value(self, data):
if isinstance(data, basestring) and data.startswith('data:image'):
# base64 encoded image - decode
format, imgstr = data.split(';base64,') # format ~= data:image/X,
ext = format.split('/')[-1] # guess file extension
data = ContentFile(base64.b64decode(imgstr), name='temp.' + ext)
return super(Base64ImageField, self).to_internal_value(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment