例1
コードのコピー コードは以下のとおりです:
Header("Content-type: image/png") /*画像を出力することをブラウザに通知*/
$im = imagecreate (400, 300); /*画像のサイズを定義します*/
$gray = ImageColorAllocate($im, 235, 235, 235);
$pink = ImageColorAllocate($im, 255, 128, 255); fontfile = "simkai.ttf";
/* $fontfile フォントのパスは、オペレーティング システムに応じて、simhei.ttf (Helvetica)、SIMKAI.TTF (Kaili)、SIMFANG.TTF (Imitation Song Princess) になります。 SIMSUN.TTC (宋王朝と新宋王朝) など GD は中国語フォントをサポートします*/
$str = iconv('GB2312','UTF-8','中国語ウォーターマーク') /*gb2312 文字セットを UTF に変換します。 -8 文字*/
ImageTTFText($im, 30 , 0, 100, 200, $pink , $fontfile , $str);
/* 中国語の透かしを追加*/
Imagepng($im)
ImageDestroy($im); ;
?>
例 2
コードをコピーする コードは次のとおりです:
// ****************** *************** * //
// 関数: 画像にテキストを追加します
// パラメーター: $img 画像ファイル名
// $new_img 画像ファイル名を保存します (場合)空です。画像を保存しないことを意味します
// $text 文字列内容
// text_size 文字列サイズ
// text_angle フォント文字列出力角度
// text_x 文字列出力 x 座標
// text_y 文字列出力 y 座標
/ / $text_font フォントファイル名
// $r,$g,$ b 文字列カラー RGB 値
// ************************** ************** / /
function img_text($img, $new_img, $text, $text_size, $text_angle, $text_x, $text_y, $text_font, $r, $g, $b){
$text=iconv("gb2312","UTF-8",$text);
Header("コンテンツタイプ: image/gif")
$im = @imagecreatefromstring(file_get_contents($img)) ) または die ("画像を開けませんでした!");
$color = ImageColorAllocate($im, $r,$g,$b);
//ImageTTFText(int im, int size, int angle, int x, int) y, int col, string fontfile, string text):
//This この関数は、TTF (TrueType フォント) フォント テキストを画像に書き込みます。
//パラメータ: size はフォントのサイズです。
// angle は時計回りに計算されたフォントの角度です。0 度は水平 (左から右へ)、90 度はテキストを下から上に示します
/ / 2 つのパラメータ x と y はテキストの座標値です (原点は左上隅です)
//col はテキストの色です
// fontfile はフォント ファイルの名前です。 // text は文字列の内容です。
ImageTTFText($im, $text_size, $text_angle, $text_x, $text_y, $color, $text_font, $text);
if ($new_img==""): // しないでください。 save Picture、表示のみ
else:
ImageGif($im,$new_img); // 画像を保存しますが、表示されません
ImageDestroy($im); // グラフィックを終了し、メモリ領域を解放します
}
? >
例 3
コードをコピーする コードは次のとおりです:
/*
* 関数: PHP 画像透かし (透かしは画像またはテキストをサポートします)
* パラメーター:
* $groundImage 背景画像、透かしを入れる必要がある画像。一時的に GIF、JPG、PNG 形式のみをサポートします。
* $waterPos 透かし位置、10 個の状態があり、0 はランダムな位置です。
* 1 は左上、2 は中央上、3 です。右上です。
* 4 は左中央、5 は中央、6 は右下です。
* 7 は左下、8 は中央下、9 は右下です。つまり、透かしとして使用される画像は、現在 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 を同時に使用しないことをお勧めします。どちらかを選択し、最初に $waterImage を使用してください。
* $waterImage が有効な場合、パラメータ $waterString、$stringFont、および $stringColor は無効になります。
* 透かし入り画像のファイル名は$groundImageと同じです。
* 著者:longware @ 2004-11-3 14:15:13
*/
function imageWaterMark($groundImage,$waterPos=0,$waterImage=””,$waterText=””,$textFont=5,$textColor =”#FF0000″)
{
$isWaterImage = FALSE;
$formatMsg = “このファイル形式はまだサポートされていません。画像を GIF、JPG、または PNG 形式に変換してください。”;ウォーターマーク ファイルの読み取り
if(!emptyempty($waterImage) && file_exists($waterImage))
{
$isWaterImage = TRUE;
$water_w = $water_info[0];//Getウォーターマーク画像の幅
$water_h = $water_info[1];//ウォーターマーク画像の高さを取得します
switch($water_info[2])//ウォーターマーク画像の形式を取得します
{
case 1:$water_im = imagecreatefromgif($waterImage);break;
case 2:$water_im = imagecreatefromjpeg($waterImage);break; case 3 :$water_im = imagecreatefrompng($waterImage);break;
default:die($formatMsg)
}
}
//背景画像を読み取る
if(!emptyempty($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;
default:die($formatMsg)
}
}
else
{
die("透かしを入れる必要のある画像が存在しません!"); }
//ウォーターマークの位置
if($ isWaterImage)//画像のウォーターマーク
$w = $water_w;
$label = "画像"
}
else//テキストのウォーターマーク
{
$temp = imagettfbbox(ceil($ textFont*5),0,”./cour.ttf”,$waterText);//TrueType フォントを使用してテキストの範囲を取得します
$w = $temp[2] - $temp [6];
$h = $temp[3] - $temp[7];
$label = "テキストエリア"; ($ground_h<$h) )
{
echo "ウォーターマークを入れる必要がある画像の長さまたは幅がウォーターマーク「.$label.」より小さいため、ウォーターマークを生成できません! ”;
return;
}
switch($waterPos)
{
case 0://random
$posX = rand(0,($ground_h); - $h));
break;
case 1://1 は左上
$posY = 0;
case 2://2 は上中央
$posX =
$posY = 0;
$posY = 0;
$posY = 0; //4 は左側の中央です
$posX = 0;
$posY = ($ground_h - $h) / 2;
case 5://5 は中央の中央です
$posX = ( $ground_w - $w ) / 2;
$posY = ($ground_h - $h) / 2;
case 6://6 は右中央です
$posX = $ground_w - $w; = ($ground_h - $h) / 2;
case 7://7 は左にあることを意味します
$posY = $ground_h - $h; ://8 は中央にあります
$posX = ($ground_w - $w) / 2;
case 9://9 は右下です
$ posX = $ground_w - $w;
$posY = $ground_h - $h;
default://random
$posX = rand(0,($ground_w - $w)); 0,($ground_h - $h) ; posY, 0, 0, $water_w,$water_h);//ウォーターマークを対象ファイルにコピー
}
else//テキストウォーターマーク
{
if( !emptyempty($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)) $water_info) ;
if(isset($water_im))
unset($ground_im)
//———————————— —— ——————————————
$id=$_REQUEST['id'];
$num = count($_FILES['userfile']['name']); ($ _FILES['ユーザーファイル']);
print_r($_FILES['ユーザーファイル']['名前']);
echo “
”; {
for($i=0;$iif(isset($_FILES) && !emptyempty($_FILES['userfile']) && $_FILES['userfile']['size']>0)
{
$uploadfile = “./”.time() .”_”.$_FILES['ユーザーファイル'][名前][$i];
エコー「
」;
echo $uploadfile;
if (copy($_FILES['userfile']['tmp_name'][$i], $uploadfile))
{
echo “OK
”;
//文字水印
//imageWaterMark($uploadfile,5,”",”HTTP://www.lvye.info”,5,”#cccccc”);
//图片水印
$waterImage=”logo_ok1. gif”;//水印图片路径
imageWaterMark($uploadfile,9,$waterImage);
echo “”;
}
else
{
echo “Fail
”;
}
}
}
}
?>