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."");
/<user>/?fields=picture? the `/<user>/picture endpoint returns a HTTP 301 redirect which may cause problems – Igy Apr 2 '12 at 15:47/<user>/?fields=picturewhich will return the URL of the image - use that in file_get_contents, imagecreatefromjpeg, curl, etc – Igy Apr 2 '12 at 15:53