Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Questions:

  1. In Google App Engine Blobstore, is there a way to convert the original picture uploaded to thumbnail picture?

  2. Is converting the picture to thumbnail picture a good idea or there are better ways?

  3. What are the best optimization if I wish to use thumbnail picture as well as normal pictures? What I meant is that, shall I waste additional storage just to store the thumbnail pictures?

Performance is preferred very much. Thank you in advance for who's willing to help !

share|improve this question

1 Answer

up vote 2 down vote accepted

You don't necessarily need to store additional thumbnail versions of pictures. Check out get_serving_url().

You can use that function to generate a -public, but not guessable- URL to the picture with parameters to do resizing on the fly and it's optimized for performance. I think it's well suited for your needs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.