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.

I use the following code to use imagettftext() function on a png image.

But it does not seem to work.

Any solutions?

The ttf font is in the current directory of the index.php file

<?php 
        require ("sdk/src/facebook.php");
        $facebook=new Facebook(array('appId'=>'144694832322411','secret'=>'56456456456e6f75a5c4657befa','fileUpload'=>true,));

        $user = $facebook->getUser();

        if($user){
                 echo "User";
                 $im = imagecreate(200,200);
                 $rt='font.ttf';
                 $col = imagecolorallocate($im,255,0,0);
                 $v= imagecolorallocate($im,255,0,0);
                 try{
                imagettftext($im,30.0,0.0,0,0,$v,$rt,"Hello");} catch (Exception $e){print_r($e);}
                 imagepng($im,'img.png');
                 echo "<img src='img.png'></img>";
             } else {
                      $auth= "https://www.facebook.com/dialog/oauth/?client_id=144694832322411&redirect_uri=".urlencode("https://apps.facebook.com/lucky_elements")."&scope=user_about_me";
                       echo "<script>top.location.href=\"$auth\"</script>";
                      }


        ?>
share|improve this question

1 Answer

heroku doesn't support imagettftext(), it doesn't support pfb fonts, and it has buggy gdf support, which doesn't look to work properly. so either change server, or try building custom builds ( https://github.com/heroku/heroku-buildpack-php )

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.