function addBorderpng($add){
$border=5;
$im=imagecreatefrompng($add);
$width=imagesx($im);
$height=imagesy($im);
$img_adj_width=$width+(2*$border);
$img_adj_height=$height+(2*$border);
$newimage=imagecreatetruecolor($img_adj_width,$img_adj_height);
$border_color = imagecolorallocate($newimage, 255, 255, 255);
imagefilledrectangle($newimage,0,0,$img_adj_width,
$ img_adj_height, $ border_color);
imagecopyresized($newimage,$im,$border,$border,0,0,
$ ширина, $ высота, ширина $, $ высота);
imagepng ($ newimage, $ добавить, 9);
CHMOD ( "$ добавить", 0666);
}