[IMP] don't reimplement randint manually

bzr revid: xmo@openerp.com-20130116143556-qlagrw7qhpuk8fuy
This commit is contained in:
Xavier Morel 2013-01-16 15:35:56 +01:00
parent bffe30c15b
commit 3ee58b2a23
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ except ImportError:
from PIL import Image
from PIL import ImageOps
from random import random
from random import randint
# ----------------------------------------
# Image resizing
@ -124,7 +124,7 @@ def image_colorize(original, randomize=True, color=(255, 255, 255)):
image = Image.new('RGB', original.size)
# generate the background color, past it as background
if randomize:
color = (int(random() * 192 + 32), int(random() * 192 + 32), int(random() * 192 + 32))
color = (randint(32, 224), randint(32, 224), randint(32, 224))
image.paste(color)
image.paste(original, mask=original)
# return the new image