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.

I would like to retrieve a Facebook user's profile picture, but at a custom size (e.g.: 40px x 40px). Is this possible, or only the default values (normal, square, small and large) are fetchable?

share|improve this question
1  
FYI: I updated my answer per some new features Facebook has built in recently. – Jimmy Sawczuk Sep 28 '12 at 21:49

2 Answers

up vote 5 down vote accepted

Only those three values are valid from the API. For a 40x40 image though, you can easily resize the 50x50 (square) image.

Per this blog post it's now possible to get custom profile picture sizes:

https://graph.facebook.com/<ID>/picture?width=<width>&height=<height>
share|improve this answer
Thanks for your answer. I thought it would be a built-in solution in the Facebook Graph API. – linkyndy Jul 12 '11 at 20:15

Only normal, square, small, and large are available, but if you are putting them on a website you can put it into a fixed size div to clip it, or you can download the image programmatically and re-size it yourself.

share|improve this answer
I hoped that I can fetch images at whatever size I want. OK, so then I'll try to resize it myself. Thanks for your answer. Oh, and by the way, why have you deleted the 'Thank you!' part from my original message? :) – linkyndy Jul 12 '11 at 19:06
Oh, sorry, didn't know that. Won't happen :) – linkyndy Jul 12 '11 at 19:44

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.