Error while processing the php

93 Views Asked by At

I'm working on a project and I want to display user profile dp on and image background when I'm testing my code on WAMP server its working fine and display things as i required with some error but when i try to test it with my server online then its does not show the image and also with and error of failed to open stream: Connection refused in online

<?php 


    $text = 'Name';
    $t2 = '1594878934116599';

    $image_url="dump/".rawurldecode(trim($t2)).".jpg";
    $text = 'Name';

        $randomNumber = rand(1, 3);
        $im = imagecreatefromjpeg('img/' . $randomNumber . '.jpg');
copyImage($im, "https://graph.facebook.com/".$t2."/picture?width=200&height=200",  60, 80);
function copyImage($im, $dp1_name, $x1, $y1,$name,$g,$h){
                $dp1 = imagecreatefromjpeg($dp1_name);
                list($ow, $oh) = getimagesize($dp1_name);
                imagecopyresized($im, $dp1, $x1, $y1, 0, 0, 180, 180, $ow, $oh);
                            }


        $black = imagecolorallocate($im, 0, 0, 0);

        $font_path = 'LiberationSans-Bold.ttf';
        imagettftext($im, 20, 0, 8,39, $black, $font_path, $text);

        imagejpeg($im,$image_url);
        imagedestroy($im);


    ?>
1

There are 1 best solutions below

7
On

I can confirm that following code is working just fine on my own local MAMP. I've removed some of the unused arguments from the copyImage() function, which caused warning messages. And re-ordered the code a bit. Added my own font and image but you could replace that again for your own. Try it out on your server. And if it gives errors than please post the error here.

<?php 

    function copyImage($im, $dp1_name, $x1, $y1){
        $dp1 = imagecreatefromjpeg($dp1_name);
        list($ow, $oh) = getimagesize($dp1_name);
        imagecopyresized($im, $dp1, $x1, $y1, 0, 0, 180, 180, $ow, $oh);
    }

    $text = 'Name';
    $t2 = '1594878934116599';

    $image_url="dump/".rawurldecode(trim($t2)).".jpg";
    $text = 'Here the name';

    $randomNumber = rand(1, 3);
    $im = imagecreatefromjpeg('penguin02.jpg');

    copyImage($im, "https://graph.facebook.com/".$t2."/picture?width=200&height=200",  60, 80);

    $black = imagecolorallocate($im, 0, 0, 0);

    $font_path = 'impact.ttf';
    imagettftext($im, 20, 0, 8,39, $black, $font_path, $text);

    imagejpeg($im,$image_url);
    imagedestroy($im);

    echo '<img src="'.$image_url.'">';