php 画像のバッチ透かしコード 一度に大量の画像にウォーターマークを追加する必要があることがよくあります。これは、PHP で画像にウォーターマークを一括で追加する機能を提供します。
透かしコードを画像にバッチで追加するためのphpチュートリアル
一度に大量の画像にウォーターマークを追加する必要があることがよくあります。これは、PHP で画像にウォーターマークを一括で追加する機能を提供します。
//config.php
//==================================ユーザー設定エリア=========== = =====================
$per=1; //毎回処理される写真の数
$dir1='img' //入力ディレクトリ
;
$dir2='img2'; //出力ディレクトリ $dir2/$dir1 ディレクトリに保存されます
$mark_img='www.bKjia.c0m.gif' //透かし画像
;
$mark_text=''; //ウォーターマークテキストコンテンツ[中国語はサポートしていません]
$mark_text_size=25 //ウォーターマークのテキストサイズ
;
$mark_pos=5; //ウォーターマークの位置、0はランダム、1は左上、2は中央上、3は右上、4は左中、5は中央、6は右中、7は左下、8 は底部が中央にあることを意味し、9 は底部が右側にあることを意味します。
//mark.php 透かしファイル関数 go( $url, $t = 0 )
{
exit( ( "" );
}function imagewatermark( $product_img, $waterpos = 0, $waterimage = "", $watertext = "", $textfont = 25, $textcolor = "#ff0000", $newdir = "marked" )
{
echo "画像の処理:".$product_img."
";
$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];
スイッチ ( $water_info[2] )
{
ケース1:
$water_im = imagecreatefromgif( $waterimage );
休憩;
ケース 2:
$water_im = imagecreatefromjpeg( $waterimage );
休憩;
ケース 3:
$water_im = imagecreatefrompng( $waterimage );
休憩;
デフォルト:
echo $formatmsg;
戻る;
}
}
If ( !empty( $product_img ) && file_exists( $product_img ) )
{
$ground_info = getimagesize( $product_img );
$ground_w = $ground_info[0];
$ground_h = $ground_info[1];
スイッチ ( $ground_info[2] )
{
ケース1:
$ground_im = imagecreatefromgif( $product_img );
休憩;
ケース 2:
$ground_im = imagecreatefromjpeg( $product_img );
休憩;
ケース 3:
$ground_im = imagecreatefrompng( $product_img );
休憩;
デフォルト:
echo $formatmsg;
戻る;
}
}
それ以外
{
exit( "透かしを入れる必要のある画像は存在しません!" );
}
もし ( $iswaterimage )
{
$w = $water_w;
$h = $water_h;
$label = "写真";
}
それ以外
{
$temp = @imagettfbbox( @ceil( $textfont * 2.5 ), 0, "arial.ttf", $watertext );
$w = $temp[2] - $temp[6];
$h = $temp[3] - $temp[7];
unset( $temp );
$label = "テキストエリア";
}
If ( $ground_w < $w || $ground_h < $h )
{
echo "ウォーターマークを入れる必要がある画像の長さまたは幅がウォーターマーク「.$label.」より小さいため、ウォーターマークを生成できません!";
}
それ以外
{
スイッチ ($waterpos)
{
ケース0:
$posx = rand( 0, $ground_w - $w );
$posy = rand( 0, $ground_h - $h );
休憩;
ケース1:
$posx = 0;
$posy = 0;
休憩;
ケース 2:
$posx = ( $ground_w - $w ) / 2;
$posy = 0;
休憩;
ケース 3:
$posx = $ground_w - $w;
$posy = 0;
休憩;
ケース4:
$posx = 0;
$posy = ( $ground_h - $h ) / 2;
休憩;
ケース5:
$posx = ( $ground_w - $w ) / 2;
$posy = ( $ground_h - $h ) / 2;
休憩;
ケース6:
$posx = $ground_w - $w;
$posy = ( $ground_h - $h ) / 2;
休憩;
ケース7:
$posx = 0;
$posy = $ground_h - $h;
休憩;
ケース8:
$posx = ( $ground_w - $w ) / 2;
$posy = $ground_h - $h;
休憩;
ケース9:
$posx = $ground_w - $w;
$posy = $ground_h - $h;
休憩;
デフォルト:
$posx = rand( 0, $ground_w - $w );
$posy = rand( 0, $ground_h - $h );
休憩;
}
Imagealphablending( $ground_im, true );
imagecopyresampled($ground_im, $water_im,0,0, $posx, $posy, 0, 0, $water_w, $water_h);
if ( $iswaterimage )
{
Imagecopymerge( $ground_im, $water_im, $posx, $posy, 0, 0, $water_w, $water_h,35 );
}
その他
{
If ( !empty( $textcolor ) && strlen( $textcolor ) == 7 )
{
$r = hexdec( substr( $textcolor, 1, 2 ) );
$g = hexdec( substr( $textcolor, 3, 2 ) );
$b = hexdec( substr( $textcolor, 5 ) );
}
それ以外
{
exit( "水印文字颜色格式不正确!" );
}
imagestring( $ground_im, $textfont, $posx, $posy, $watertext, imagecolorallocate( $ground_im, $r, $g, $b ) ,35);
}
スイッチ ( $ground_info[2] )
{
ケース1:
imagegif( $ground_im, $newdir."/".$product_img );
休憩;
ケース2:
imagejpeg( $ground_im, $newdir."/".$product_img );
休憩;
ケース3:
imagepng( $ground_im, $newdir."/".$product_img );
休憩;
デフォルト:
echo $errormsg;
}
if ( isset( $water_info ) )
{
unset( $water_info );
}
if ( isset( $water_im ) )
{
imagedestroy( $water_im );
}
unset( $ground_info );
imagedestroy( $ground_im );
unset( $water_im );
unset( $ground_im );
}
}set_time_limit( 0 );
include( "config.php" );
if ( $_get[id] )
{
$id = $_get[id];
}
それ以外
{
$id = 1;
}
if ( !is_dir( $dir2."/".$dir1 ) )
{
mkdir( $dir2."/".$dir1, 511 );
}
$ti = 0;
$dir = opendir( $dir1 );
while ( $file = readdir( $dir ) )
{
if ( $file == "." || $file == ".." )
{
}
それ以外
{
++$ティ;
if ( $ti {
}
それ以外
{
if ( ( $id - 1 ) * $per {
imagewatermark( $dir1."/".$file, $mark_pos, $mark_img, $mark_text, $mark_text_size, "#ff0000", $dir2 );
}
if ( $id * $per {
Closedir( $dir );
go( "mark.php?id=".( $id + 1 ) );
}
}
}
}
エコー "