/**- * 写真をアップロードします
- */
- class imgUpload{
- static protected $a;
- protected $formName; //フォーム名
- protected $directory //ディレクトリにアップロードされたファイル
- protected $ maxSize; //最大ファイルアップロードサイズ
- protected $canUpload; //アップロード可能かどうか
- protected $doUpFile; //アップロードファイル名
-
- private function __construct($_formName='file; ', $_directory='./images/uploads/', $_maxSize=1048576){ //1024*1024=1M
- //初期化パラメータ
- $this->formName = $_formName;
- $this->ディレクトリ= $_directory;
- $this->maxSize = $_maxSize;
- $this->canUpload = true;
- $this->doUpFile = '';
- $this->sm_File = '';
- }
-
- //画像が許可された形式内であるかどうかを判断します
- static public function Type($_formName='file'){
- $_type = $_FILES[$_formName]['type'];
- switch ($_type){
- case 'image/gif':
- if (self::$a==NULL)
- self::$a = new imgUpload($_formName);
- Break;
- case 'image/pjpeg':
- if (self:: $a ==NULL)
- self::$a = new imgUpload($_formName);
- Break;
- case 'image/x-png':
- if (self::$a==NULL)
- self::$ a = new imgUpload($_formName);
- break;
- default:
- self::$a = false;
- }
- return self::$a;
- }
-
- //ファイルサイズを取得
- public function getSize($ _format=' K'){
- if ($this->canUpload) {
- if (0 == $_FILES[$this->formName]['size']) {
- $this->canUpload = false ;
- return $this->canUpload;
- Break;
- }
- switch ($_format){
- case 'B':
- return $_FILES[$this->formName]['size'];
- Break;
- case 'K ':
- returnround($_FILES[$this->formName]['size'] / 1024);
- Break;
- case 'M':
- returnround($_FILES[$this->formName] ][' size'] / (1024*1024),2);
- Break;
- }
- }
- }
-
- //ファイルタイプを取得
- public function getExt(){
- if ($this->canUpload) {
- $_name = $_FILES[$this->formName]['name'];
- $_nameArr =explode('.',$_name);
- $_count = count($_nameArr)-1;
- }
- return $_nameArr[ $_count];
- }
-
- //ファイル名を取得
- public function getName(){
- if ($this->canUpload) {
- return $_FILES[$this->formName][' name'];
- }
- }
-
- //新しいファイル名を作成します
- public function newName(){
- return date('YmdHis').rand(0,9);
- }
-
- //ファイルをアップロードします
- public function Upload(){
- if ($this->canUpload)
- {
- $_getSize = $this->getSize('B');
- if (!$_getSize)
- {
- return $_getSize;
- Break ;
- }
- else
- {
- $_newName = $this->newName();
- $_ext = $this->getExt();
- $_doUpload = move_uploaded_file($_FILES[$this->formName]['tmp_name' ], $this->directory.$_newName.".".$_ext);
- if ($_doUpload)
- {
- $this->doUpFile = $_newName;
- }
- return $_doUpload;
- }
- }
- }
-
- //创建缩略图
- public functionThumb($_dstChar='_m', $_max_len=320){ //$_dstChar:_m , _s
- if ($this->canUpload && $this-> doUpFile != "") {
- $_ext = $this->getExt();
- $_srcImage = $this->gt;directory.$this->doUpFile.".".$_ext;
-
- //得られる画像情報数グループ
- $_date = getimagesize($_srcImage, &$info);
-
- $src_w = $_date[0]; //ソース图片宽
- $src_h = $_date[1]; //ソース图片高
- $src_max_len = max($src_w, $src_h); //求得长边
- $src_min_len = min($src_w, $src_h); //求得短边
- $dst_w = ''; //目标图片宽
- $dst_h = ''; //目标图片高
-
- //宽高比放,最长边は$_max_lenを超えない
- if ($src_max_len>$_max_len)
- {
- $percent = $src_min_len / $src_max_len;
- if ($src_w == $src_max_len)
- {
- $dst_w = $_max_len;
- $dst_h = $percent * $dst_w;
- }
- else
- {
- $dst_h = $_max_len;
- $dst_w = $percent * $dst_h;
- }
- }
- else
- {
- $dst_w = $src_w;
- $dst_h = $src_h;
- }
-
- //建立缩略图時、ソース图片の位置
- $src_x = '';
- $src_y = '';
-
- //ロゴに略図が使用されていると判断した場合は、裁定
- if ('s_' == $_dstChar) {
- $src_x = $src_w * 0.10;
- $src_y = $src_h * 0.10;
- $src_w *= 0.8;
- $src_h *= 0.8;
- }
-
- //判断图片类型并创建对应新图片
- switch ($_date[2]){
- case 1:
- $src_im = imagecreatefromgif($_srcImage);
- Break;
- case 2:
- $src_im = imagecreatefromjpeg($_srcImage);
- ブレーク;
- ケース 3:
- $src_im = imagecreatefrompng($_srcImage);
- ブレーク;
- ケース 8:
- $src_im = imagecreatefromwbmp($_srcImage);
- ブレーク;
- }
-
- //创建一幅新画像
- if ($_date[2]==1) { //gif無法应用imagecreatetruecolor
- $dst_im = imagecreate($dst_w, $dst_h);
- }else {
- $dst_im = imagecreatetruecolor($dst_w, $dst_h);
- }
-
- //この画像のサムネイルのコピーを作成します
- // $bg = imagecolorallocate($dst_im,255,255,0);
- imagecopyresize($dst_im,$src_im, 0, 0, $src_x, $src_y, $dst_w, $ dst_h, $src_w, $src_h );
- //画像に対してアンチエイリアス処理を実行します
- imageantialias($dst_im, true);
-
- switch ($_date[2]) {
- case 1:
- $cr = imagegif( $ dst_im, $this->directory.$this->doUpFile.$_dstChar.".".$_ext, 100);
- Break;
- case 2:
- $cr = imagejpeg($dst_im, $this-> ; directory.$this->doUpFile.$_dstChar.".".$_ext, 100);
- Break;
- case 3://imagepng には問題があるため、ここでは代わりに imagejpg を使用してください
- $cr = imagejpeg( $dst_im, $this->directory.$this->doUpFile.$_dstChar.".".$_ext, 100);
- Break;
- }
- // $cr = imagejpeg($dst_im, $this-> ;ディレクトリ。$_dstChar.$this->doUpFile, 90);
- if ($cr) {
- $this->sm_File = $this->doUpFile.$_dstChar."。 ".$ _ext;
-
- return $this->sm_File;
- }else {
- return false;
- }
- }
- imagedestroy($dst_im);
- imagedestroy($cr);
- }
-
- //アップロードされたファイルを取得ファイル名
- public function getUpFile(){
- if ($this->doUpFile!='') {
- $_ext = $this->getExt();
- return $this->doUpFile."."。 $_ext ;
- }else {
- return false;
- }
- }
-
- //アップロードされたファイルのフルパスを取得します
- public function getFilePatch(){
- if ($this->doUpFile!='') {
- $_ext = $this->getExt();
- return $this->directory.$this->doUpFile.".".$_ext;
- }else {
- return false;
- }
- }
-
- / /省略形を取得 サムネイル ファイルのフル パス
- public function getThumb(){
- if ($this->sm_File!='') {
- return $this->sm_File;
- }else {
- return false;
- }
- }
- // アップロードされたファイルのパスを取得します
- public function getDirectory(){
- if ($this->directory!='') {
- return $this->directory;
- }else {
- return false;
- }
- }
- }
- ?>
コードをコピー
|