7e20b75ced0e9be0b1db6160692637dc5c91709a,imagekit/models.py,_ImageSpecMixin,process,#_ImageSpecMixin#Any#Any#,27
Before Change
img = image.copy()
processors = ProcessorPipeline(self.processors)
img, fmt = processors.process(img, fmt, file)
return img, self.format or fmt
class ImageSpec(_ImageSpecMixin):
After Change
def process(self, image, file):
processors = ProcessorPipeline(self.processors)
return processors.process(image.copy(), file)
class ImageSpec(_ImageSpecMixin):
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 4
Instances
Project Name: matthewwithanm/django-imagekit
Commit Name: 7e20b75ced0e9be0b1db6160692637dc5c91709a
Time: 2011-09-23
Author: matthew@exanimo.com
File Name: imagekit/models.py
Class Name: _ImageSpecMixin
Method Name: process
Project Name: matthewwithanm/django-imagekit
Commit Name: 15e0981835bf6620d8a68f57436ea3c0863928d5
Time: 2012-02-11
Author: matthew@exanimo.com
File Name: imagekit/processors/resize.py
Class Name: Cover
Method Name: process
Project Name: matthewwithanm/django-imagekit
Commit Name: 4278a950019d85260d7a6727dd0752ffd55d6d17
Time: 2012-02-11
Author: matthew@exanimo.com
File Name: imagekit/processors/crop.py
Class Name: Crop
Method Name: process
Project Name: matthewwithanm/django-imagekit
Commit Name: b073868bb740f0b9e84da045c412cac0cad4b9d2
Time: 2012-02-17
Author: jan@netrebel.de
File Name: imagekit/processors/resize.py
Class Name: Mat
Method Name: process