I want to rotate and save an image which was already stored in blobstore. For this I tried using images.Image.rotate
method
img = images.Image(blob_key=image.blob)
img.rotate(180)
final_image = img.execute_transforms(output_encoding=images.PNG)
I don't know how to save the rotated image again to the blobstore.