Reputation: 5879
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.
Upvotes: 0
Views: 808
Reputation: 284786
execute_transforms
returns a str
(bytestring), so you can just call len(image_str)
.
Upvotes: 4