php ウォーターマーク コードの拡張バージョン

WBOY
リリース: 2016-07-25 09:07:15
オリジナル
804 人が閲覧しました
  1. /*

  2. * 関数: PHP 画像透かし (透かしは画像またはテキストをサポートします)
  3. * パラメーター:
  4. * $groundImage 背景画像、つまり、必要な画像一時的に透かしを入れる GIF、JPG、PNG 形式のみをサポートします
  5. * $waterPos の透かし位置、10 個の状態があります、0 はランダムな位置です
  6. * 1 は左上、2 は上中央、3 は右上です。 4 は左中央、5 は中央中央、6 は右中央を意味します
  7. * 7 は左下を意味します、8 は中央下を意味します、9 は右下を意味します
  8. * $waterImage 画像の透かし、つまり現在透かしとして使用されている画像です。 GIF、JPG、PNG 形式のみをサポートします。
  9. * $waterText テキスト透かし、つまりテキストが透かしとして使用されます。ASCII コードをサポートしますが、中国語はサポートされません。
  10. * $textFont テキスト サイズ、値は 1、2、3 です。 、4 または 5、デフォルトは 5 ;
  11. * $textColor テキストの色、値は 16 進数の色の値、デフォルトは #FF0000 (赤);
  12. *
  13. * 注: GD 2.0 をサポート、FreeType、GIF 読み取りをサポート、 GIF Create、JPG、PNG
  14. * $ WaterImage と $waterText を同時に使用しないことをお勧めします。どちらかを選択し、最初に $waterImage を使用します。
  15. * $waterImage が有効な場合、パラメータ $waterString、$stringFont、および $stringColor は無効になります。
  16. * 透かし入り画像のファイル名は$groundImageと同じです。
  17. * 作者: longware
  18. */
  19. function imageWaterMark($groundImage,$waterPos=9,$waterImage=””,$waterText=””,$textFont=5,$textColor=”#FF0000″)
  20. {
  21. $isWaterImage = FALSE;
  22. $formatMsg = "このファイル形式はまだサポートされていません。画像処理ソフトウェアを使用して、画像を GIF、JPG、または PNG 形式に変換してください。”;
  23. //ウォーターマークファイルを読み込みます
  24. if(!empty($waterImage) && file_exists($waterImage))
  25. {
  26. $isWaterImage = TRUE;
  27. $water_info = getimagesize($waterImage);
  28. $water_w = $water_info[ 0 ];//ウォーターマーク画像の幅を取得
  29. $water_h = $water_info[1];//ウォーターマーク画像の高さを取得
  30. switch($water_info[2])//ウォーターマーク画像の形式を取得
  31. {
  32. ケース 1:$water_im = imagecreatefromgif($waterImage);break;
  33. ケース 2:$water_im = imagecreatefromjpeg($waterImage);break;
  34. ケース 3:$water_im = imagecreatefrompng($waterImage);break;
  35. default:die( $formatMsg);
  36. }
  37. }
  38. //背景画像を読み込みます
  39. if(!empty($groundImage) && file_exists($groundImage))
  40. {
  41. $ground_info = getimagesize($groundImage);
  42. $ground_w = $ground_info[ 0];// 背景画像の幅を取得
  43. $ground_h = $ground_info[1];// 背景画像の高さを取得
  44. switch($ground_info[2])// 背景画像の形式を取得
  45. {
  46. case 1:$ground_im = imagecreatefromgif($ groundImage);break;
  47. case 2:$ground_im = imagecreatefromjpeg($groundImage);break;
  48. case 3:$ground_im = imagecreatefrompng($groundImage);break;
  49. default:die ($formatMsg);
  50. }
  51. }
  52. else
  53. {
  54. die("透かしを入れる必要のある画像が存在しません!");
  55. }
  56. //透かしの位置
  57. if($isWaterImage)//画像の透かし
  58. {
  59. $w = $water_w;
  60. $h = $water_h;
  61. $label = "画像";
  62. }
  63. else//テキスト透かし
  64. {
  65. $temp = imagettfbbox(ceil($textFont*2.5),0,"simfang .ttf",$waterText);//TrueType を使用してフォント テキストの範囲を取得します
  66. $w = $temp[2] – $temp[6];
  67. $h = $temp[3] – $temp[7];
  68. unset($temp);
  69. $label = “テキストエリア”;
  70. }
  71. if( ($ground_w<$w) || ($ground_h<$h) )
  72. {
  73. echo "画像の長さまたは幅ウォーターマークを付ける必要があるのはウォーターマーク「.$label.」より小さいため、ウォーターマークを生成できません。 ”;
  74. return;
  75. }
  76. switch($waterPos)
  77. {
  78. case 0://random
  79. $posX = rand(0,($ground_w – $w));
  80. $posY = rand(0,($ground_h) – $h));
  81. break;
  82. case 1://1は左上
  83. $posX = 0;
  84. $posY = 0;
  85. break;
  86. case 2://2は中央上
  87. $posX = ($ ground_w – $w) / 2;
  88. $posY = 0;
  89. break;
  90. case 3://3 は右上です
  91. $posX = $ground_w – $w;
  92. $posY = 0;
  93. break;
  94. case 4 : //4 は中央左を意味します
  95. $posX = 0;
  96. $posY = ($ground_h – $h) / 2;
  97. break;
  98. case 5://5 は中央中央を意味します
  99. $posX = ($ground_w – $w ) / 2;
  100. $posY = ($ground_h – $h) / 2;
  101. break;
  102. case 6://6 は中右です
  103. $posX = $ground_w – $w;
  104. $posY = ($ground_h – $ h) / 2;
  105. break;
  106. case 7://7 は、下が左側にあることを意味します
  107. $posX = 0;
  108. $posY = $ground_h – $h;
  109. break;
  110. case 8://8 は、一番下は中央です
  111. $posX = ($ground_w – $w) / 2;
  112. $posY = $ground_h – $h;
  113. break;
  114. case 9://9 は右下です
  115. $posX = $ground_w – $ w;
  116. $posY = $ground_h – $h;
  117. break;
  118. default://random
  119. $posX = rand(0,($ground_w – $w));
  120. $posY = rand(0,($ground_h – $h) );
  121. break;
  122. }
  123. //画像ブレンドモードを設定します
  124. imagealphablending($ground_im, true);
  125. if($isWaterImage)//画像ウォーターマーク
  126. {
  127. imagecopy($ground_im, $water_im, $posX , $ posY, 0, 0, $water_w,$water_h);//ウォーターマークを対象ファイルにコピー
  128. }
  129. else//テキストウォーターマーク
  130. {
  131. if( !empty($textColor) && (strlen($textColor)== 7) )
  132. {
  133. $R = hexdec(substr($textColor,1,2));
  134. $G = hexdec(substr($textColor,3,2));
  135. $B = hexdec(substr($textColor, 5) );
  136. }
  137. else
  138. {
  139. die("透かしのテキストの色の形式が正しくありません。 ”);
  140. }
  141. //$waterText=iconv('utf-8','gbk',$waterText);
  142. imagestring ( $ground_im, $textFont, $posX, $posY, $waterText, imagecolorallocate($ground_im, $R, $G, $B));
  143. }
  144. //透かし入り画像を生成
  145. @unlink($groundImage);
  146. switch($ground_info[2])//背景画像のフォーマットを取得
  147. {
  148. case 1 :imagegif($ground_im,$groundImage);break;
  149. case 2:imagejpeg($ground_im,$groundImage);break;
  150. case 3:imagepng($ground_im,$groundImage);break;
  151. default:die($errorMsg) ) ;
  152. }
  153. //メモリを解放します
  154. if(isset($water_info)) unset($water_info);
  155. if(isset($water_im)) imagedestroy($water_im);
  156. unset($ground_info);
  157. imagedestroy($ ground_im );
  158. }

  159. //---------------

  160. if(isset($_FILES) && !empty($_FILES[ ' userfile']) && $_FILES['userfile']['size']>0)
  161. {
  162. $uploadfile = “./”.time().”_”.$_FILES['userfile'][' name '];
  163. if (copy($_FILES['userfile']['tmp_name'], $uploadfile))
  164. {
  165. echo "OK
  166. ";
  167. //テキストウォーターマーク
  168. imageWaterMark($uploadfile,9,"Noname .gif”,”www.nj-kingsway.com “,5,”#FF0000″);
  169. //画像ウォーターマーク
  170. //$waterImage=”./Hanweb_shuiyin.gif”;//ウォーターマーク画像パス
  171. //imageWaterMark ( $uploadfile,0,$waterImage);
  172. echo "";
  173. }
  174. else
  175. {
  176. echo "Fail
  177. ";
  178. }
  179. }
  180. ?>

コードをコピー



ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート