Преобразование объекта StringIO в Django ImageFile - PullRequest
7 голосов
/ 07 апреля 2011

Я пытаюсь взять данные из StringIO (или, в частности, cStringIO) и преобразовать их в django.core.files.images.ImageFile.

Но это не работает.В любом случае, я имею в виду, что это дает сбой множеством способов, и Google подвел меня.

Пока у меня есть:

pi = ProductImage(product=product)
image = ImageFile(image_file)
image.name = image_name # defined elsewhere
pi.source_image.save(image_name, image)
pi.save()

Мой след стека идет примерно так:

File "dev.py", line 359, in process_csv_item
  pi.source_image.save(image_name, image)
File "C:\Python26\lib\site-packages\django\db\models\fields\files.py", line 92, in save
  self.name = self.storage.save(name, content)
File "C:\Python26\lib\site-packages\django\core\files\storage.py", line 48, in save
  name = self._save(name, content)
File "C:\Python26\lib\site-packages\django\core\files\storage.py", line 168, in _save
  for chunk in content.chunks():
File "C:\Python26\lib\site-packages\django\core\files\base.py", line 65, in chunks
  counter = self.size
File "C:\Python26\lib\site-packages\django\core\files\base.py", line 39, in _get_size
  elif os.path.exists(self.file.name):
AttributeError: 'cStringIO.StringI' object has no attribute 'name'

Где я могу посмотреть дальше?

1 Ответ

15 голосов
/ 07 апреля 2011

Использовать django.core.files.base.ContentFile (image_file):

pi = ProductImage(product=product)
pi.source_image.save(image_name, ContentFile(image_file.read()))
pi.save()
...