JPGE 画像と PNG 画像の融合は、実は誰もがよく知っている透かし技術です。以下のコードの最も重要な文は次のとおりです:
//画像のカラーブレンドモードを設定します imagealphablending($ground_im, true);
- /*
- * 関数: PHP 画像透かし (透かしは画像またはテキストをサポートします)
- * パラメーター:
- * $groundImage 背景画像、つまり透かしを入れる必要がある画像は、現在のみサポートされていますGIF、JPG、PNG 形式;
- * $waterPos のウォーターマークの位置は 10 個あり、0 はランダムな位置です
- * 1 は左上、2 は中央上、3 は右上です。左中央、5 は中央中央、6 は中央が右であることを意味します
- * 7 は左下、8 は中央下、9 は右下です。 WaterImage 画像透かし、つまり透かしとして使用される画像は、現在 GIF、JPG、および PNG 形式のみをサポートします
- * $waterText テキスト透かし、つまりテキストは透かしとして使用され、ASCII コードをサポートしますが、中国語はサポートされません。 ;
- * $textFont テキスト サイズ、値は 1、2、3、4、または 5、デフォルトは 5;
- * $textColor テキストの色、値は 16 進数の色の値、デフォルトは #FF0000 (赤)。
- *
- * 注: GD 2.0 をサポート、FreeType、GIF Read、GIF Create、JPG、PNG をサポート
- * $waterImage と $waterText が最適です。同時に使用しないでください。どちらか 1 つを選択して $ を使用してくださいまずは水の画像。
- * $waterImageが有効な場合、パラメータ$waterString、$stringFont、および$stringColorは無効になります。
- ※ウォーターマーク入り画像のファイル名は$groundImageと同じです。
- * 著者:longware @ 2004-11-3 14:15:13
- */
- function imageWaterMark($groundImage,$waterPos=0,$waterImage="",$waterText="",$textFont=5,$ textColor="#FF0000")
- //function imageWaterMark($groundImage,$waterPos=0,$waterImage,$waterText=,$textFont=5,$textColor=#FF0000″)
- {
- $isWaterImage = FALSE;
- $ formatMsg = "このファイル形式はまだサポートされていません。画像処理ソフトウェアを使用して、画像を GIF、JPG、または PNG 形式に変換してください。";
- //ウォーターマーク ファイルを読み取ります
- if(!empty($waterImage) && file_exists($waterImage))
- {
- $isWaterImage = TRUE;
- $water_info = getimagesize($waterImage);
- $water_w = $water_info[ 0 ];//ウォーターマーク画像の幅を取得
- $water_h = $water_info[1];//ウォーターマーク画像の高さを取得
- switch($water_info[2])//ウォーターマーク画像の形式を取得
- {
- ケース 1:$water_im = imagecreatefromgif($waterImage);break;
- ケース 2:$water_im = imagecreatefromjpeg($waterImage);break;
- case 3:$water_im = imagecreatefrompng($waterImage);break;
- デフォルト:die( $formatMsg);
- }
- }
- //チェンバジ?
- if(!empty($groundImage) && file_exists($groundImage))
- {
- $ground_info = getimagesize($groundImage);
- $ground_w = $ground_info[ 0]; //背景画像の幅を取得
- $ground_h = $ground_info[1];//背景画像の高さを取得
- switch($ground_info[2])//背景画像の形式を取得
- {
- case 1:$ground_im = imagecreatefromgif ($groundImage);break;
- case 2:$ground_im = imagecreatefromjpeg($groundImage);break;
- case 3:$ground_im = imagecreatefrompng($groundImage);break;
- デフォルト:die ($formatMsg);
- }
- }
- else
- {
- die("透かしを入れる必要がある画像が存在しません!");
- }
- //透かしの位置
- if($isWaterImage)//画像の透かし
- {
- $w = $water_w;
- $h = $water_h;
- $label = "画像";
- }
- else//テキストの透かし
- {
- $temp = imagettfbbox(ceil($textFont*5),0,". /cour.ttf",$waterText);/ /TrueType フォントを使用してテキストの範囲を取得します
- $w = $temp[2] - $temp[6];
- $h = $temp[3] - $temp[7 ];
- unset($temp);
- $ label = "テキストエリア";
- }
- if( ($ground_w<$w) || ($ground_h<$h) )
- {
- echo "テキストエリアの長さまたは幅透かしを入れる必要がある画像は透かしより大きいです".$label. "透かしを生成するには若すぎます! ";
- return;
- }
- switch($waterPos)
- {
- case 0://random
- $posX = rand(0,($ground_w - $w));
- $posY = rand(0,($ground_h) - $h));
- ブレーク;
- ケース 1://1 は左上
- $posX = 0;
- $posY = 0;
- ブレーク;
- ケース 2://2 は中央上
- $posX = ($ ground_w - $w) / 2;
- $posY = 0;
- ブレーク;
- ケース 3://3 は右上です
- $posX = $ground_w - $w;
- $posY = 0;
- ブレーク;
- ケース 4 : //4 は中心が左側にあることを意味します
- $posX = 0;
- $posY = ($ground_h - $h) / 2;
- Break;
- case 5://5 は中心上の中心です
- $posX = ($ground_w - $w ) / 2;
- $posY = ($ground_h - $h) / 2;
- Break;
- case 6://6 は中央右です
- $posX = $ground_w - $w;
- $ posY = ($ground_h - $h) / 2;
- Break;
- case 7://7 は、下が左側にあることを意味します
- $posX = 0;
- $posY = $ground_h - $h;
- Break;
- case 8://8 は底が中央にあることを意味します
- $posX = ($ground_w - $w) / 2;
- $posY = $ground_h - $h;
- Break;
- case 9://9 は右下です
- $posX = $ground_w - $w;
- $posY = $ground_h - $h;
- ブレーク;
- デフォルト://ランダム
- $posX = rand(0,($ground_w - $w));
- $posY = rand (0,($ground_h - $h) );
- break;
- }
- //画像の色混合モードを設定します
- imagealphablending($ground_im, true);
- if($isWaterImage)//画像ウォーターマーク
- {
- imagecopy($ground_im, $water_im, $posX, $ posY, 0, 0, $water_w,$water_h);//ウォーターマークを対象ファイルにコピーします
- }
- else//テキストウォーターマーク
- {
- if( !empty( $textColor) && (strlen($textColor)==7) )
- {
- $R = hexdec(substr($textColor,1,2));
- $G = hexdec(substr($textColor,3,2)) ;
- $B = hexdec(substr($textColor,5) );
- }
- else
- {
- die("ウォーターマークのテキストの色の形式が正しくありません。 ");
- }
- imagestring ( $ground_im, $textFont, $posX, $posY, $waterText, imagecolorallocate($ground_im, $R, $G, $B));
- }
- //ウォーターマーク生成後の画像
- @unlink($groundImage);
- switch($ground_info[2])//背景画像の形式を取得します
- {
- case 1:imagegif($ground_im,$groundImage);break;
- case 2:imagejpeg($ ground_im,$ groundImage);break;
- case 3:imagepng($ground_im,$groundImage);break;
- default:die($errorMsg);
- }
-
- //メモリを解放
- if(isset($water_info)) unset ($water_info );
- if(isset($water_im)) imagedestroy($water_im);
- unset($ground_info);
- imagedestroy($ground_im);
- }
- $uploadfile="your_picture.jpg"; //背景画像処理対象 Position
- $waterImage="Hat.png"; //透明画像の位置
- imageWaterMark($uploadfile,9,$waterImage);
- //ウェブ上に表示
- echo "";
- ?>
-
コードをコピー
|