views:

50

answers:

1

How can I get the size of an image transformed with the app engine images API?

Note: I mean the size in bytes, not the dimensions.

+3  A: 

execute_transforms returns a str (bytestring), so you can just call len(image_str).

Matthew Flaschen