Upload Image Field? ASAP PLS

2018-11-17 Thread Richard Vo
Need to upload an image, manipulate the image through Python Pillow, then display it. Whatever additional information I need to provide, please let me know. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and s

Re: Upload Image Field? ASAP PLS

2018-11-17 Thread Shashank Singh
Why not doing it? Where are you stuck? On Sun, 18 Nov, 2018, 8:02 AM Richard Vo Need to upload an image, manipulate the image through Python Pillow, then > display it. > > Whatever additional information I need to provide, please let me know. > > -- > You received this message because you are sub

Re: Upload Image Field? ASAP PLS

2018-11-18 Thread Yavin Aalto Arba
Assuming this is just a general question about the subject: Django Models has an imagefield option: https://docs.djangoproject.com/en/2.1/ref/models/fields/#django.db.models.ImageField The image has a .url attribute which you can use for displaying (or you can use the % static % method). cf. "For