Django / PIL - save thumbnail version right when image is uploaded

前端 未结 6 921
挽巷
挽巷 2021-01-30 09:39

This is my forms.py:

class UploadImageForm(forms.ModelForm):
    class Meta:
        model = UserImages
        fields = [\'photo\']

and this i

6条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-30 10:00

    If you don't want to implement a solution from scratch I suggest you to use a django app called sorl-thumbnail

提交回复
热议问题