This is the code that I used:
$background = imagecreatetruecolor(76,84);
$image = imagecreatefrompng("bronze/1-plateborder.png");
$width_x = imagesx($image);
$height_y = imagesy($image);
imagecopymerge($background,$image,0,0,0,0,$width_x,$height_y,100);
imagedestroy($image);
imagepng($background);
imagedestroy($background);
Thank you for trying to help me. I really appreciate it.