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.

hi i want to get users profile image from

https://graph.facebook.com/<?php echo $fbid ?>/picture?type=large

and them save it temporarily on the server so that i can use it in php gd image maupulation...

i used this code...but its not working...

//remote image to copy
$remoteImageURL = 'https://graph.facebook.com/<?php echo $fbid ?>/picture?type=large';

//local directory to store image
$dir_path = '/images/".$fbid."'; 

if($remoteImageURL){ 

require_once('class.get.image.php');

// initialize the class
$image = new GetImage;

// just an image URL
$image->source = $remoteImageURL;
$image->save_to = $dir_path; // with trailing slash at the end

$get = $image->download('curl'); // using cURL

$pic = $dir_path.basename($remoteImageURL);

And in the php gb code i used

$canvas = imagecreatefromjpeg ("/images/".$fbid."");
share|improve this question
What isn't working exactly? Why not use the value of /<user>/?fields=picture? the `/<user>/picture endpoint returns a HTTP 301 redirect which may cause problems – Igy Apr 2 '12 at 15:47
do you know any other way to get the image from graph api url and save it on server with fb id as its name.... – Ramanvir Sodhi Apr 2 '12 at 15:53
use /<user>/?fields=picture which will return the URL of the image - use that in file_get_contents, imagecreatefromjpeg, curl, etc – Igy Apr 2 '12 at 15:53
copy('graph.facebook.com/<?php echo $fbid ?>/picture?type=large', 'images/<?php echo $fbid ?>.jpg'); not working if variables are put (<?php echo $fbid ?>) working with a definite path... – Ramanvir Sodhi Apr 2 '12 at 18:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.