/*
'-##########################################-|
'| 程序设计:(绿竹居) |
'| MSN:[email]lzj_zhangjun@hotmail.com[/email] |
'| Email:cszjun@gmail.com |
'| 结合自己以前做的上传和生成缩略和改编一个
'| 老前辈的生成图片水印做成这个 |
'| 上传+生成缩略图+生成文字水印和图片水印 |
'| 可以直接引用 |
'-##########################################-|
*/
//审明图片文件夹
$bigfolder="img";
$smallfolder="smallimg";
//审明文件夹名称 以年月日来建议文件夹
$fdate=date("Ymd");
//echo $fdate;
//审明文件名称。以年月日时分秒命名
$fname=date("YmdHis");
$bigname="0724e_com_".$fname;
$smallname="0724e_com_".$fname."_s";
//echo $fname."
".$bigname."
".$smallname;
//确定大小文件夹的名称和路经
$bigaddrname=$bigfolder."/".$fdate."/".$bigname;
$smalladdrname=$smallfolder."/".$fdate."/".$smallname;
//审明小图片的高度和宽度
$RESIZEWIDTH=180;
$RESIZEHEIGHT=150;
//审明水印的文字或图片的地址及字体的地址
$imgaddr="img.jpg"; //图片水印
$fontname="www.0724e.com"; //文字水印
//充许上传的文件扩展名
$exit_name=array(".jpg",".gif",".png");
if (isset($_POST['Submit'])){
//上传部分----------------------------
//定议上传名称和上传错误
$upfile=$_FILES['image']['name'];
$uperror=$_FILES['image']['error'];
//最简表单验证
switch ($uperror) {
case 1:
die("
//检测扩展是否是充许上传的文件类型
//取得文件扩展名
$exname=strrchr($upfile,".");
//判断取得扩展名是否在要求的扩展名内
if(!in_array($exname,$exit_name))
die("
//检测存放图片的目录和子目录是否存在,如果不存在则建目录和子目录,并给目录最大权限777 对LINUX或unix对WINDOWS没必要
//大图
if (!file_exists($bigfolder)){
mkdir($bigfolder,0777);
mkdir($bigfolder."/".$fdate,0777);
}else{
if (!file_exists($bigfolder."/".$fdate)){
mkdir($bigfolder."/".$fdate,0777);
}
}
//缩略图
if (!file_exists($smallfolder)){
mkdir($smallfolder,0777);
mkdir($smallfolder."/".$fdate,0777);
}else{
if (!file_exists($smallfolder."/".$fdate)){
mkdir($smallfolder."/".$fdate,0777);
}
}
//创建目录结束
//得到临时上传的文件
$upfiletmp=$_FILES['image']['tmp_name'];
//判断临时文件是否存在
if ($uperror==6)
die("
//透かし部分============================================
//ウォーターマーク関数の開始============
/**$groundImage 背景画像、つまり透かしを入れる必要がある画像は、現在 GIF、JPG、および PNG 形式のみをサポートしています。
* $waterPos ウォーターマークの位置、10 個の状態があり、0 はランダムな位置です
* 1 は上部が左側にあることを意味し、2 は上部が中央にあることを意味し、3 は上部が右側にあることを意味します
* 4 は中央が左側にあることを意味し、5 は中央が中央にあることを意味し、6 は中央が右側にあることを意味します。
* 7 は下が左側にあることを意味し、8 は下が中央にあることを意味し、9 は下が右側にあることを意味します。
* $waterImage 画像ウォーターマーク、つまりウォーターマークとして使用される画像は、現在 GIF、JPG、および PNG 形式のみをサポートしています。
* $waterText テキスト透かし、つまりテキストは透かしとして使用されます。ASCII コードをサポートしますが、中国語はサポートしません。
* $textFont テキスト サイズ、値は 1、2、3、4、または 5、デフォルトは 5 です。
* $textColor テキストの色、値は 16 進数の色の値、デフォルトは #FF0000 (赤) です。
**/
関数 imageWaterMark($groundImage,$waterPos=0,$waterImage="",$waterText="", $textFont=5,$textColor="#FF0000")
{
$isWaterImage = FALSE;
$formatMsg = "このファイル形式はまだサポートされていません。画像処理ソフトウェアを使用して画像を GIF、JPG、または PNG 形式に変換してください。";
//ウォーターマークファイルを読み込みます
$isWaterImage = TRUE;
$water_info = getimagesize($waterImage);
$ Water_w = $ Water_info [0] // ウォーターマーク画像を取得するためのワイド
$water_h
(Switch ($ Water_info [2]) {// ウォーターマーク画像の形式
ケース 1:$water_im = imagecreatefromgif($waterImage);break;
ケース 3:$water_im = imagecreatefrompng($waterImage);break;
デフォルト:die($formatMsg);
}
}
//背景画像を読み込みます
$ground_info = getimagesize($groundImage);
$ ground_wのみ
$ground_h
switch($ground_info[2]) { // 背景画像の形式を取得します
ケース 1:$ground_im = imagecreatefromgif($groundImage);break;
ケース 2:$ground_im = imagecreatefromjpeg($groundImage);break;
ケース 3:$ground_im = imagecreatefrompng($groundImage);break;
デフォルト:die($formatMsg);
} その他 {
die("透かしを入れる必要のある画像は存在しません!");
}
//ウォーターマークの位置
If($isWaterImage) { //画像の透かし
$w = $water_w;
$h = $water_h;
$label = "写真";
} else { //テキストの透かし
$temp = imagettfbbox(ceil($textFont*2.5),0,"./cour.ttf",$waterText);//TrueType フォントを使用してテキストの範囲を取得します
$w = $temp[2] - $temp[6];
$h = $temp[3] - $temp[7];
unset($temp);
$label = "テキストエリア";
}
If( ($ground_w
echo "ウォーターマークを入れる必要がある画像の長さまたは幅がウォーターマーク「.$label.」より小さいため、ウォーターマークを生成できません!";
戻る;
}
スイッチ($waterPos) {
ケース0://ランダム
$posX = rand(0,($ground_w - $w));
$posY = rand(0,($ground_h - $h));
休憩;
case 1://1 は、上が左側にあることを意味します
$posX = 0;
$posY = 0;
休憩;
case 2://2 がトップとセンターです
$posX = ($ground_w - $w) / 2;
$posY = 0;
休憩;
case 3://3 は、上が右側にあることを意味します
$posX = $ground_w - $w;
$posY = 0;
休憩;
Case 4://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;
$posY = ($ground_h - $h) / 2;
休憩;
case 7://7 は下が左側にあることを意味します
$posX = 0;
$posY = $ground_h - $h;
休憩;
case 8://8 は下部が中央にあることを意味します
$posX = ($ground_w - $w) / 2;
$posY = $ground_h - $h;
休憩;
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);
}
//水印函数完
//存在则移动完在上传
$goodupfile=@move_uploaded_file($upfiletmp,$bigaddrname.$exname);
if (!$goodupfile){
die("
//画像の透かし
//imageWaterMark($bigaddrname.$exname,5,$imgaddr);
//ウォーターマーク部分を終了====================================
//缩略图部分------------------------------------------------------------
//判断缩略图大小函数-----
function ResizeImage($im,$maxwidth,$maxheight,$name){
$width = imagesx($im);
$height = imagesy($im);
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){
if($maxwidth && $width > $maxwidth){
$widthratio = $maxwidth/$width;
$RESIZEWIDTH=true;
}
if($maxheight && $height > $maxheight){
$heightratio = $maxheight/$height;
$RESIZEHEIGHT=true;
}
if($RESIZEWIDTH && $RESIZEHEIGHT){
if($widthratio < $heightratio){
$ratio = $widthratio;
}else{
$ratio = $heightratio;
}
}elseif($RESIZEWIDTH){
$ratio = $widthratio;
}elseif($RESIZEHEIGHT){
$ratio = $heightratio;
}
$newwidth = $width * $ratio;
$newheight = $height * $ratio;
if(function_exists("imagecopyresampled")){
$newim = imagecreatetruecolor($newwidth, $newheight);
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}else{
$newim = imagecreate($newwidth, $newheight);
imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}
ImageJpeg ($newim,$smalladdrname.$name.".jpg");
ImageDestroy ($newim);
}else{
ImageJpeg ($im,$smalladdrname.$name.".jpg");
}
}
//生成部分
if($_FILES['image']['size']){
if($_FILES['image']['type'] == "image/pjpeg"){
$im = imagecreatefromjpeg($bigaddrname.$exname);
}elseif($_FILES['image']['type'] == "image/x-png"){
$im = imagecreatefrompng($bigaddrname.$exname);
}elseif($_FILES['image']['type'] == "image/gif"){
$im = imagecreatefromgif($bigaddrname.$exname);
}
if($im){
if(file_exists($smalladdrname.".jpg")){
unlink($smalladdrname.".jpg");
}
ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$smalladdrname);
ImageDestroy ($im);
}
}
echo "
<フォームアクション="" メソッド="ポスト" enctype="multipart/form-data" name="form1" id="form1">
フォーム>