I have the following code:
print(img.size) print(10 * img.size)
This will print:
(70, 70) (70, 70, 70, 70, 70, 70, 70, 70,
Might be a nicer way, but this should work
tuple([10*x for x in img.size])