Reputation: 8221
I am using Google Appengine images service to serve the uploaded images in my application. The case is that some of my images are screenshots and their length is greater than 1600px which it looks to be the limitation from the service when I am calling the serving url of the image concatenating =s2000 for example. Is there a way to serve my lengthy images?
Upvotes: 3
Views: 268
Reputation: 2265
Yes, you can set =s0
to show the actual/original size image.
The docs don't really explain the =s0
functionality too well, but they are pointing out that only numbers from 0-1600 are allowed in the =sxx
.
Upvotes: 6