<?php // スタンプと、それをすかしとして適用する写真を読み込みます $im = imagecreatefromjpeg('photo.jpeg'); // まず、スタンプ画像を GD で作成します $stamp = imagecreatetruecolor(100, 70); imagefilledrectangle($stamp, 0, 0, 99, 69, 0x0000FF); imagefilledrectangle($stamp, 9, 9, 90, 60, 0xFFFFFF); imagestring($stamp, 5, 20, 20, 'libGD', 0x0000FF); imagestring($stamp, 3, 20, 40, '(c) 2007-9', 0x0000FF); // スタンプの余白を設定し、スタンプ画像の幅と高さを取得します $marge_ri