Upimages.class.php php アップロード クラス
コードをコピー コードは次のとおりです:
class UpImages {
var $annexFolder = "upload";//添付ファイルの保存ポイント、デフォルトは次のとおりです: annex
var $smallFolder = "small";/ / サムネイル ストレージ パス、注意: $annexFolder の下のサブディレクトリに配置する必要があります。デフォルトは次のとおりです: smallimg
var $markFolder = "mark";//ウォーターマーク画像の保存場所
var $upFileType = "jpg gif png ";//アップロードの種類、デフォルトは: jpg gif png rar zip
var $upFileMax = 1024;//アップロード サイズの制限、単位は「KB」、デフォルトは: 1024KB
var $fontType; // Font
var $maxWidth = 500; //画像の最大幅
var $maxHeight = 600; //画像の最大高さ
function UpImages($annexFolder,$smallFolder,$includeFolder) {
$this ->annexFolder = $annexFolder;
$this->smallFolder;
$this->fontType = $includeFolder."/04B_08__.TTF"; function upLoad ($inputName) {
$imageName = time();// 現在の時刻を画像名として設定します
if(@empty($_FILES[$inputName]["name"])) die( "画像情報がアップロードされていません。確認してください");
$name =explode(".",$_FILES[$inputName]["name"]);//アップロードする前にファイルを区切って、 file type
$imgCount = count($name);//インターセプトされた数値を取得します
$imgType = $name[$imgCount-1];//ファイルの種類を取得します
if(strpos($this ->upFileType ,$imgType) === false) die(error("アップロード ファイル タイプは ".$this->upFileType" のみをサポートし、".$imgType" はサポートしません)); = $imageName."." .$imgType;//データベースに書き込まれるファイル名
$uploadFile = $this->annexFolder."/".$photo;//アップロードされたファイル名
$ upFileok = move_uploaded_file($_FILES[ $inputName]["tmp_name"],$uploadFile);
if($upFileok) {
$imgSize = $_FILES[$inputName]["size"]; $kSize =round($imgSize /1024);
if($kSize > ($this->upFileMax*1024)) {
@unlink($uploadFile);アップロード ファイルが ".$this ->upFileMax."KB" を超えています));
}
} else {
die(error("画像のアップロードに失敗しました。アップロードしたファイルが次の値を超えていないことを確認してください$upFileMax KB またはアップロード時間がタイムアウトしました") );
}
return $photo;
}
function getInfo($photo) {
$photo = $this-> annexFolder."/".$photo;
$imageInfo = getimagesize($photo);
$imgInfo["width"] = $imageInfo["height"]; imageInfo[1];
$imgInfo[" type"] = $imageInfo[2];
return $imgInfo>;
function smallImg($photo,$width= 128,$height=128) {
$imgInfo = $this->getInfo($photo);
$photo = $this->annexFolder. "/".$photo;//画像ソースを取得します
$newName = substr($imgInfo["name"],0,strrpos($imgInfo["name"], "."))."_thumb. jpg";//新しい画像名
if( $imgInfo["type"] == 1) {
$img = imagecreatefromgif($photo);
} elseif($imgInfo["type"] == 2) {
$img = imagecreatefromjpeg( $photo);
} elseif($imgInfo["type"] == 3) {
$img = imagecreatefrompng($photo); } else {
$img = "";
}
if(empty($img)) return False;
$width = ($width > $imgInfo["width"]) ? $imgInfo["幅"] : $width;
$height = ($height > $imgInfo["height"]) :
$srcW = $imgInfo ["幅"];
$srcH = $imgInfo["高さ"];
if ($srcW * $width > $srcH * $height) {
$height =round($srcH * $width / $srcW);
} else {
$width =round($srcW * $height / $srcH)
}
if (function_exists("imagecreatetruecolor"); >$newImg = imagecreatetruecolor($width, $height);
ImageCopyResampled($newImg, $img, 0, 0, 0, 0, $width, $height, $imgInfo["width"], $imgInfo[" height"]);
} else {
$newImg = imagecreate($width, $height);
ImageCopyResize($newImg, $img, 0, 0, 0, 0, $width, $height) , $imgInfo["width"], $imgInfo[" height"]);
}
if ($this->toFile) {
if (file_exists($this->annexFolder.") /".$this->smallFolder."/" .$newName)) @unlink($this->annexFolder."/".$this->smallFolder."/".$newName);
ImageJPEG($newImg,$this->annexFolder." /".$this->smallFolder."/".$newName);
return $this->annexFolder."/".$this-> ;smallFolder."/".$newName;
ImageJPEG($newImg)
ImageDestroy($img); return $newName;
関数 WaterMark ($photo,$text) {
$imgInfo = $this->getInfo($photo); ."/".$photo;
$newName = substr($imgInfo["name"], 0, strrpos($imgInfo["name"], ".")) "_mark.jpg"; >switch ($imgInfo["type"]) {
ケース 1:
$img = imagecreatefromgif($photo);
ブレイク;
$img = imagecreatefromjpeg($写真);
ブレイク;
ケース 3:
$img = imagecreatefrompng($photo);
デフォルト:
を返します。
if (empty($img)) は False を返します。
$width = ($this->maxWidth > $imgInfo["width"]) ? $imgInfo["幅"] : $this->maxWidth;
$height = ($this->maxHeight > $imgInfo["height"]) ? $imgInfo["高さ"] : $this->maxHeight;
$srcW = $imgInfo["width"];
$srcH = $imgInfo["高さ"];
if ($srcW * $width > $srcH * $height) {
$height =round($srcH * $width / $srcW);
} else {
$width =round($srcW * $height / $srcH);
}
if (function_exists("imagecreatetruecolor")) {
$newImg = imagecreatetruecolor($width, $height);
ImageCopyResampled($newImg, $img, 0, 0, 0, 0, $width, $height, $imgInfo["width"], $imgInfo["height"]);
} else {
$newImg = imagecreate($width, $height);
ImageCopyResize($newImg, $img, 0, 0, 0, 0, $width, $height, $imgInfo["width"], $imgInfo["height"]);
}
$white = imageColorAllocate($newImg, 255, 255, 255);
$black = imageColorAllocate($newImg, 0, 0, 0);
$alpha = imageColorAllocateAlpha($newImg, 230, 230, 230, 40);
ImageFilledRectangle($newImg, 0, $height-26, $width, $height, $alpha);
ImageFilledRectangle($newImg, 13, $height-20, 15, $height-7, $black);
ImageTTFText($newImg, 4.9, 0, 20, $height-14, $black, $this->fontType, $text[0]);
ImageTTFText($newImg, 4.9, 0, 20, $height-6, $black, $this->fontType, $text[1]);
if($this->toFile) {
if (file_exists($this->annexFolder."/".$this->markFolder."/".$newName)) @unlink($ this->annexFolder."/".$this->markFolder."/".$newName);
ImageJPEG($newImg,$this->annexFolder."/".$this->markFolder."/".$newName);
return $this->annexFolder."/".$this->markFolder."/".$newName;
} else {
ImageJPEG($newImg);
}
ImageDestroy($newImg);
ImageDestroy($img);
$newName を返します;
}
}
?>
复制代码代码如下:
「Upimages.class.php」をインクルードします。
$max="アップロード"; //文件上传路径
$mix="small"; //缩略图路径(必须在アップロード下建立)
$mark="mark"; //加水引の画像保存経路
$text = array("oktang","2012"); //水印内容
$img= new UpImages($max,$mix,$max); //实例化类文件
$photo = $img->upLoad("file"); // 上の文書ドメイン
$img->maxWidth = $img->maxHeight = 600; //設置高,和宽
$img->toFile = true;
$newSmallImg = $img->smallImg($photo);
$newMark = $img->waterMark($photo,$text);
エコー $newSmallImg;
echo $newMark;
echo "
";
echo "
";