6ae4f56ed7a7b99d529dbcae551b727737d81b4f,imagekit/models.py,ImageSpecFile,_create,#ImageSpecFile#,100

Before Change


                extension = os.path.splitext(self.name)[1].lower()
                // Try to guess the format from the extension.
                format = Image.EXTENSION.get(extension)
            format = format or img.format or "JPEG"

            // save the new image to the cache
            if format != "JPEG":
                imgfile = img_to_fobj(img, format)
            else:
                imgfile = img_to_fobj(img, format,
                                          quality=int(self.field.quality),
                                          optimize=True)
            content = ContentFile(imgfile.read())
            self._file = self.storage.save(self.name, content)
        else:
            // TODO: Should we error here or something if the imagefield doesn"t exist?
            img = None

After Change


            fp.seek(0)
            fp = StringIO(fp.read())

            img, content = self._process_content(self.name, fp)
            self._file = self.storage.save(self.name, content)
        else:
            // TODO: Should we error here or something if the imagefield doesn"t exist?
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: matthewwithanm/django-imagekit
Commit Name: 6ae4f56ed7a7b99d529dbcae551b727737d81b4f
Time: 2011-09-23
Author: matthew@exanimo.com
File Name: imagekit/models.py
Class Name: ImageSpecFile
Method Name: _create


Project Name: matthewwithanm/django-imagekit
Commit Name: 6ae4f56ed7a7b99d529dbcae551b727737d81b4f
Time: 2011-09-23
Author: matthew@exanimo.com
File Name: imagekit/models.py
Class Name: ProcessedImageFieldFile
Method Name: save


Project Name: riga/tfdeploy
Commit Name: 2984beef3784e514a7b8512ab0e658ad01e86564
Time: 2016-03-11
Author: marcelrieger@me.com
File Name: setup.py
Class Name:
Method Name: