<?php $img = 'file.jpg'; /// путь к картинке которую копирайтим $im = imagecreatefromjpeg($img); $lg = imagecreatefrompng('copy.png') ; /// наша картинка копирайта $img_x = imagesx($im); $img_y = imagesy($im); $img_x_copy = imagesx($lg); $img_y_copy = imagesy($lg); imagecopy($im, $lg, $img_x-$img_x_ copy, $img_y-$img_y_copy, 0, 0, $img_x_ copy, $img_y_copy); header('Content-Type: image/jpeg'); imagejpeg($im); imagedestroy($im); /// чистим мусор imagedestroy($lg); /// чистим мусор ?>