On Aug 14, 1:31 pm, "Marty Alchin" <[EMAIL PROTECTED]> wrote: > You'll want to skip StringIO now, because Django provides its own > file-like object you can use directly. When you want to save the file, > you can open up a new File and just use that instead. > > from django.core.files.storage import default_storage > > file = default_storage.open('path/to/file', 'wb') > pil_image.save(file, format='png')
What if the file never has a path and exists just as StringIO? I can't seem to get it to be a "Django file"... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---