テキストの透かし:
コードをコピー コードは次のとおりです:
$w = 80;
$h = 20; ;
$im = imagecreatetruecolor($w,$h);
$textcolor = imagecolorallocate($im, 123, 12, 255);
$white = imagecolorallocate($im, 255, 255, 255) );
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolourallocate($im, 0, 0, 0); 399, 29 , $grey); // 長方形を描いて塗りつぶします
// 画像の左上隅に文字列を書き込みます
imagestring($im, 3, 2, 3, " Hello world!", $textcolor );
// 出力画像
header("Content-type: image/jpeg");
imagejpeg($im);
imagedestroy($ im);
画像ウォーターマーク
$groundImg = "DSC05940.jpeg";
$groundInfo = getimagesize($groundImg);
//print_r( $groundInfo);
$ground_h = $groundInfo[1];
switch($groundInfo[2]){
ケース 1:
$ground_im = imagecreatefromgif($ groundImg);
ブレイク ;
ケース 2:
$ground_im = imagecreatefromjpeg($groundImg);
ケース 3:
$ground_im = imagecreatefrompng($groundImg); 🎜>break;
}
$waterImg = "DSC05949.jpeg"; $water_w = $imgInfo[1 ];
switch($imgInfo[2]){
ケース 1:
$water_im = imagecreatefromgif($waterImg);ケース 2:
$water_im = imagecreatefromjpeg($waterImg);
ケース 3:
$water_im = imagecreatefrompng($waterImg);
imagecopy($ground_im,$water_im ,100,100,0,0,500,500);
header("Content-type: image/jpeg");
画像のマージ php には多くの機能があります: 例: imagecopymerge、imagecopyresize