コード例 #1
0
ファイル: GDImage.php プロジェクト: alexbrombal/saffyre-junk
 public function overlay(GDImage $image, $x = 0, $y = 0)
 {
     imagecopy($this->image, $image->image, $x, $y, 0, 0, $image->width(), $image->height());
 }