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 I am new to facebook app development and working over my first app. My app includes the functionality of retrieving user profile picture and merges it with another picture.

Problem is the picture format of the profile picture that facebook will be returning cannot be determined learned it here, so I decided to keep .gif as a default file Type and created a condition to check the type and then convert any format to a .gif format so it can be used further.

But the problem is while during the conversion process the picture loses its quality to a very big extent which of course not acceptable in an ideal situation.

// Create image instances
$url = "http://graph.facebook.com/{$userId}/picture?type=large";
$dpImage = 'temp/' . $userId . '_dpImage_' . rand();
file_put_contents($dpImage, file_get_contents($url));
$dpImageGif = 'temp/' . $userId . '_dpImageGif_' . rand() . '.gif';

if (exif_imagetype($dpImage) == IMAGETYPE_GIF) {
$imageObject = imagecreatefromgif($dpImage);
}
if (exif_imagetype($dpImage) == IMAGETYPE_JPEG) {
$imageObject = imagecreatefromjpeg($dpImage);
}
if (exif_imagetype($dpImage) == IMAGETYPE_PNG) {
$imageObject = imagecreatefrompng($dpImage);
}
imagegif($imageObject, $dpImageGif);

$src = imagecreatefromgif($dpImageGif);
$dest = imagecreatefromgif($textImage);

$dst_x = 3;
$dst_y = 69;
$src_x = 0;
$src_y = 0;
$src_w = imagesx($imageObject);
$src_h = imagesy($imageObject);
$pct = 100;

imagecopyresampled($dest, $src, $dst_x, $dst_y, $src_x, $src_y, 200, 280, 180, 252);
$resultImage = "temp/" . $userId . '_resultImage_' . rand() . ".gif";
imagegif($dest, $resultImage);
imagedestroy($dest);
imagedestroy($src);

Is there a way to work around with this without losing the image quality. Kindly help me through this Thank you.

share|improve this question

1 Answer

Keep the original image format because I believe GIF is only working with 256 colors.

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.