將用pillow處理後的圖片,直接生成內容返回到網頁

咱們能夠用 Django 直接把生成的內容返回到網頁,如下是操做過程:
from django.utils.six import BytesIO
#視圖層代碼
def home(request):   image=Image.open(r'D:\webtest\untitled1\app01\aaa.png')   buf=BytesIO()   image.save(buf,'png')   image_stream=buf.getvalue()   #print(image_stream,type(image_stream))   return HttpResponse(image_stream, content_type="image/png")
相關文章
相關標籤/搜索