0

フレームにプロフィール写真を作成する際に問題があります。しかし、私はPNGのプロフィール写真の内枠を作りたいです。

ここに画像の説明を入力

$picurl = "profile_pic_resize/$get_id.jpg";      
$frame = imagecreatefrompng($cover_select);
$img = imagecreatefromjpeg($picurl);


imagealphablending($frame, false);
imagesavealpha($frame, true);

imagecopy($frame, $img, 20, 137, 0, 40, 130, 160); //have to play with these numbers for it to work for you, etc.

$getid = $_GET['id'];

imagepng($frame,"ready_pics/$getid.png");

imagedestroy($frame);
imagedestroy($img);
4

1 に答える 1