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.

Here is a snippet of my code

<?php
$me = $facebook->api('/me/friends');
foreach( $me['data'] as $frns ) {
?>
<img src="https://graph.facebook.com/"<?php echo $frns['id'] ?>"/picture" 
      title="<?php echo $frns['name'] ?>"/>
<?php
}

I want to merge all of the images using something like

$im = mergeImages( array( image1, image2, etc ) );

How can I limit the merge to only the first 196 or a random number of images?

share|improve this question
1  
I'm not at all sure what it is you're actually asking here. – Xyon Oct 18 '12 at 16:27
ok . let me explain . in this script . i have over 1600 friends . so when i run this script . i got my all friends profile pic in one page . but i want reduce it too only 100 friends only . – Vikas Kapadiya Oct 18 '12 at 16:30
consider array_slice($friends_array, 0, 160, true) to keep only 160... – Claudrian Oct 18 '12 at 16:30
Argh. I accidentally left two quotes on the img tag's src attribute. I can't edit it because of the 6 char restriction. – BryanH Oct 18 '12 at 18:49

1 Answer

Change your code to this. You won't have to make another series of API calls to get the urls for the pictures, and your script won't have to deal with the 301 redirects Facebook typically throws for an image.

$me = $facebook->api('/me/friends?fields=name,picture');
echo "<br />Total friends".sizeof($me['data'])."<br />";

echo "<br /> Friends collage<br /><br />";

$frns_images = array();
$i = 1;
foreach($me['data'] as $frns)
{
   if ($i >= 100) break;
   $img = $frns['picture']['data']['url']; //Double check this.
   if ('jpg' === substr($img, -3)) {
     printf ('<img  src="%s" title="%s" />', $img, $frns['name']);
     $frns_images[] = $img;
     $i++;
   }
}
$im = mergeImages($frns_images);
share|improve this answer
Thank you for your Ans . but some people have profile pic in .gif . so it is give error like this Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: 'http://profile.ak.fbcdn.net/static-ak/rsrc.php/v2/yo/r/UlIqmHJn-SK.gif' is not a valid JPEG file in /home/repackg1/public_html/crazy4tech.in/fb/index.php on line 122. so . please i want only profile pic in JPG . and also i want only 100 profile pic . – Vikas Kapadiya Oct 18 '12 at 16:51
This is My App source code . please see this tny.cz/417d9262 and i want to use this script in this APP snipplr.com/view/13146 – Vikas Kapadiya Oct 18 '12 at 17:09
Edited my answer. Alternatively you could accept all image types by changing line 54 of the snipplr code to $tmp = imagecreatefromstring( file_get_contents($images[$i]) ); – cpilko Oct 18 '12 at 18:27
this is final source code but it is not working . tny.cz/dd3e22c2 and one thing . i don't want to show profile pic separate . i want merge into one pic . so people can upload in FB . – Vikas Kapadiya Oct 19 '12 at 6:00
What about it is not working? Yes, you aren't doing anything to output the image. See this thread for more details: stackoverflow.com/questions/6961097/… – cpilko Oct 19 '12 at 12:52
show 2 more comments

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.