Assigned
Status Update
Comments
gp...@gmail.com <gp...@gmail.com> #2
[Comment deleted]
je...@google.com <je...@google.com>
je...@google.com <je...@google.com> #3
Would you be able to provide an example app which produces an error for which gcloud doesn't report, but appcfg.py does?
gp...@gmail.com <gp...@gmail.com> #4
In this case it is not app specific, The 400 error is due to quota of the application versions being over the limit which is 10 (but for this specific project it has been increased to 60). So any project with more than 10 versions will experience this.
gp...@gmail.com <gp...@gmail.com> #5
[Comment deleted]
je...@google.com <je...@google.com> #6
I have forwarded this request/report to the engineering team. We will update this issue with any progress updates and a resolution.
Description
Something like this:
img = images.Image(self.request.get("fileToUpload"))
img.rotate(90)
img_data = img.execute_transforms(images.JPEG, quality=85)
Keeps the image size unchanged. For a rectangular image, the center is indeed rotated, but the margins are cropped and black padding is added. My understanding is that rotate(90) should change an image of size (width, height) to one of size (height, width) with no cropping and no padding.