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'm currently posting an action to the graph API, where the images being referenced are 120 x 55. This is above the 50 x 50 minimum, and below the 3:1 aspect ratio limit. The tags I'm using are:

<meta property="og:image" content="http://www.pickmoto.com/img/pennants/ravens_fb.png" />
<meta property="og:image:width" content="120" />
<meta property="og:image:height" content="55" />
<meta property="og:image:type" content="image/png" />

The image is showing up, but it's cut-off. enter image description here

How do I fix this? I want the image to be legible at least. Is there a way to force facebook to shrink the image, or show it in the correct aspect ratio?

share|improve this question

1 Answer

up vote 1 down vote accepted

You'll have to re-size the image. Increase the height without stretching the image (the way Photoshop handles Canvas Resize). To simplify things, some people do image re-sizing on-the-fly.

share|improve this answer
Yep, I just ended up resizing the images to be square. – dreadpirateryan Nov 15 '12 at 21:55

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.