Reputation: 17053
This gets me a small square FB thumbnail: http://graph.facebook.com/5/picture?type=square
(UID example could be 5).
'd like a larger image (75 or 100px?) that is still cropped at the same points as the thumbnail. I know the param square can be large, but then it loses its crop positioning. Is this possible?
Thanks in advance.
Upvotes: 2
Views: 4807
Reputation: 3657
Now you can specify a custom width and height!
Example: https://graph.facebook.com/shaverm/picture?width=60&height=150
Doc: https://developers.facebook.com/docs/reference/api/using-pictures/
Upvotes: 1
Reputation: 979
I was having a similar issue and went about solving it the hard way. This code will give you an imitation of a Facebook thumbnail in the largest possible size without losing resolution. Read more in the README.
https://github.com/bradley/Large-Profile-Thumbnails-for-Facebook-Developers
Upvotes: 6
Reputation: 5664
Yes, square, small, normal and large
Try
http://graph.facebook.com/5/picture?type=small
http://graph.facebook.com/5/picture?type=normal
http://graph.facebook.com/5/picture?type=large
Source : http://developers.facebook.com/docs/reference/api/
Go to pictures section.
Upvotes: 1