+
+ def render_sprite(self):
+ sponsor_ids = []
+ for column in self.get_sponsors_value():
+ sponsor_ids.extend(column['sponsors'])
+ sponsors = Sponsor.objects.in_bulk(sponsor_ids)
+ sprite = Image.new('RGBA', (THUMB_WIDTH, len(sponsors) * THUMB_HEIGHT))
+ for i, sponsor_id in enumerate(sponsor_ids):
+ simg = Image.open(sponsors[sponsor_id].logo.path)
+ if simg.size[0] > THUMB_WIDTH or simg.size[1] > THUMB_HEIGHT:
+ size = (
+ min(THUMB_WIDTH,
+ simg.size[0] * THUMB_HEIGHT / simg.size[1]),
+ min(THUMB_HEIGHT,
+ simg.size[1] * THUMB_WIDTH / simg.size[0])
+ )
+ simg = simg.resize(size, Image.ANTIALIAS)
+ sprite.paste(simg, (
+ (THUMB_WIDTH - simg.size[0]) / 2,
+ i * THUMB_HEIGHT + (THUMB_HEIGHT - simg.size[1]) / 2,
+ ))
+ imgstr = StringIO()
+ sprite.save(imgstr, 'png')
+
+ if self.sprite:
+ self.sprite.delete(save=False)
+ self.sprite.save('sponsorzy/sprite/%s-%d.png' % (self.name, time.time()), ContentFile(imgstr.getvalue()), save=False)
+