Django DB에 이미지 저장 및 가져오기

2021. 2. 11. 19:01파이썬/Django

    image_data = models.BinaryField(null=True)
    
   	box.image_data = base64.b64encode(output.getvalue())
    
    if self.image_data != None :
    	return format_html("<img src='data:image/png;base64,{}'/>",self.image_data.decode('UTF-8'))