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.
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.
execute_transforms
returns a str
(bytestring), so you can just call len(image_str)
.