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 tried to post a picture to user's wall, but I don't know how I can modify the picture size (width, height). I'm using PHP, here is my code:

$post = array('access_token' => $token, 
'message'=> '...',
'link'=> 'https://...',
'picture'=> '../..jpg',
'name'=> '...',
'caption'=> '...',
'description'=> '...');  

try{  
$res = $facebook->api('/me/feed','POST',$post);  
} catch (Exception $e){  
echo $e->getMessage();  
}

Please help! Thanks a lot!

share|improve this question
1  
If the question is only about image resizing - how is it related to the facebook? – zerkms Jan 18 '12 at 22:56

1 Answer

You'll want to use something like ImageMagick or phpThumb().

share|improve this answer
Thanks, but i always get an error message: Error messages disabled. (phpThumb) – user1153459 Jan 18 '12 at 23:41

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.