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.

Hello facebook developers can any one help me a quick summary how can user photo merge in background image which i provided?

I already try the text and its working.

EDIT:

Hello Here Is Some Code I Got: where $name is " name of the user" i made it correct.

       $canvas = imagecreatefromjpeg ("bg.jpg");      
       $black = imagecolorallocate( $canvas, 61, 61, 61 );
       $font = "font.ttf";
       imagettftext( $canvas, 15, -1, 51, 60, $black, $font, $name );

       imagejpeg( $canvas, "img/".$fbid.".jpg", 50 );
       ImageDestroy( $canvas );

and now my problem is how to include the photo of the user in the background?

share|improve this question
1  
Your question is not really helpful. Have you tried something before? Can you post some Code? – Stony Jul 6 '12 at 13:40
@Stony i added some codes i got without merging picture of user... can you help me... – Viola Courtney Jul 7 '12 at 3:22

1 Answer

In order to accomplish this, you'll need to make use of ImageMagick for PHP: http://php.net/manual/en/book.imagick.php.

$img1 = new Imagick( "YOUR_BACKGROUND.png" );
$img2 = new Imagick( "FB_IMAGE.png" );

$img1->compositeImage( $img2, imagick::COMPOSITE_COPYOPACITY, 0, 0 );

header('Content-type: image/png');
echo $img1;

?>

Good luck!

share|improve this answer

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.