Home Backend Development PHP Tutorial PHP image file upload class (can automatically generate thumbnails)

PHP image file upload class (can automatically generate thumbnails)

Jul 25, 2016 am 08:56 AM

分享一个php图片上传类,且可以自动生成缩略图,有需要的朋友,可以作个参考,希望可以对您有用。

php实现的图片文件上传类,代码:

<?php
/**
功 能:文件上传类 支持文件夹自动分组保存;
创建类:参数(文件域,文件原名,文件大小);
$myupload = new upfileClass($upfile,$upfile_name,$upfile_size);
$myupload->savefile(); # 保存方法 并返回保存路径附带文件名;

@ echo MakeBuild($BuildFile,$newFile,$File_width);
生成指定文件的缩略图;
$myupload->MakeBuild("images/a.jpg","news/b.jpg","100");
*/

class upfileClass
{
var $upfile, $upfile_name, $upfile_size;

var $new_upfile_name;   # 上传后的文件名称 ; 
var $fleth, $fileExtent; # 文件扩展名(类型) ; 
var $f1, $f2, $f3;   # 文件保存路径(多级) upfiles/2008-01/08/;
var $filename;    # 文件(带路径) ;

var $maxSize, $File_type; # 允许上传文件的大小 允许上传文件的类型 ;

var $BuildFile,$newFile,$File_width,$File_height,$rate;

function upfileClass($upfile,$upfile_name,$upfile_size)
{
   $this->upfile = $upfile;
  $this->upfile_name = $upfile_name;
  $this->upfile_size = $upfile_size;
  
  $this->new_upfile_name = $this->CreateNewFilename($this->upfile_name);
  
  $this->f1 = "upfiles";
  $this->f2 = $this->f1."/".date('Y')."-".date('m');
$this->f3 = $this->f2."/".date('d');
  
  $this->filename = $this->f3 . "/" . $this->new_upfile_name;
  $this->maxSize = 500*1024;    # 文件大小 500KB
  $this->File_type = "gif/jpg/jpeg/png"; # 允许上传的文件类型
}

# 创建新文件名 (原文件名)
function CreateNewFilename($file_name)
{
   $this->fleth = explode(".",$file_name);
   $this->fileExtent = $this->fleth[(int)count($this->fleth)-1]; # 获取文件后缀;
   $tmpstr = date('YmdHis') . "." .$this->fileExtent;    # 创建新文件名;
   return $tmpstr;
}

# 检测文件类型是否正确
function chk_fileExtent()
{
   $iwTrue = 0;
   $fle = explode("/",$this->File_type);
   for($i=0; $i < count($fle); $i++){
    if( $this->fileExtent == $fle[$i] )
    {
     $iwTrue = (int) $iwTrue + 1;
    }
   }
   if( $iwTrue == 0 ){
    $this->msg("文件不符合 ".$this->File_type." 格式!");
   }
}

# 提示错误信息并终止操作
function msg($Error)
{
   echo "<script language=/"javascript/">/n";
   echo " alert('".$Error."');/n";
   echo " window.history.back();/n";
   echo "</script>/n";
   die();
}

# 保存文件
function savefile()
{
   $this->chk_fileExtent();
   $this->chk_fileSize();
   $this->CreateFolder( "../".$this->f1 );
   $this->CreateFolder( "../".$this->f2 );
   $this->CreateFolder( "../".$this->f3 );
   return $this->chk_savefile();
}

# 检测上传结果是否成功
function chk_savefile()
{
   $copymsg = copy($this->upfile,"../".$this->filename);
   if( $copymsg ){
    return $this->filename;
   }
   else{
    $this->msg("文件上传失败! /n/n请重新上传! ");
   }
}

# 创建文件夹
function CreateFolder($foldername)
{
   if( !is_dir($foldername) ){
    mkdir($foldername,0777);
   }
}

# 检测文件大小
function chk_fileSize()
{
   if( $this->upfile_size > $this->maxSize ){
    $this->msg("目标文件不能大于". $this->maxSize/1024 ." KB");
   }
}

# 删除文件($filePath 文件相对路径)
function Deletefile($filePath)
{
   if( !is_file($filePath) ){
    return false;
   }
   else{
    $ending = @unlink($filePath);
    return $ending;
   }
}

/*
   函数:生成缩略图
    MakeBuild("images/a.jpg","news/b.jpg","100");
   参数:
   echo $BuildFile;   原图 带路径
   echo $newFile;    生成的缩略图 带路径
   echo $File_width;   缩略图宽度值
   echo $File_height;   缩略图高度值 (默认为宽度的比例值)
   echo $rate;     缩略图象品质;
*/
function MakeBuild($BuildFile,$newFile,$File_width,$File_height=0,$rate=100) 
{ 
   if(!is_file($BuildFile)){
    $this->msg("文件 ".$BuildFile." 不是一个有效的图形文件!/n/n系统无法生成该文件的缩略图!");
    return false;
   }
   $data = GetImageSize($BuildFile); 
   switch($data[2]){ 
   case 1: 
    $im = @ImageCreateFromGIF($BuildFile); 
    break;
   case 2: 
    $im = @ImageCreateFromJPEG($BuildFile); 
    break;
   case 3: 
    $im = @ImageCreateFromPNG($BuildFile); 
    break;
   } 
   if(!$im){
    return false;
   }
   else{
    $srcW=ImageSX($im);  # 取得原图宽度;
    $srcH=ImageSY($im); # 取得原图高度;
    $dstX=0; 
    $dstY=0; 
   
    if($File_height==0){
     $File_height = $File_width/$srcW*$srcH;
    }
   
    if ($srcW*$File_height>$srcH*$File_width){ 
     $fFile_height = round($srcH*$File_width/$srcW); 
     $dstY = floor(($File_height-$fFile_height)/2); 
     $fFile_width = $File_width; 
    } 
    else { 
     $fFile_width = round($srcW*$File_height/$srcH); 
     $dstX = floor(($File_width-$fFile_width)/2); 
     $fFile_height = $File_height; 
    } 
    $ni = ImageCreateTrueColor($File_width,$File_height); 
    $dstX = ($dstX<0)?0:$dstX; 
    $dstY = ($dstX<0)?0:$dstY; 
    $dstX = ($dstX>($File_width/2))?floor($File_width/2):$dstX; 
    $dstY = ($dstY>($File_height/2))?floor($File_height/s):$dstY; 
    ImageCopyResized($ni,$im,$dstX,$dstY,0,0,$fFile_width,$fFile_height,$srcW,$srcH); 
   
    ImageJpeg($ni,$newFile,$rate); # 生成缩略图;
    imagedestroy($im);     # imagedestroy(resource) 释放image关联的内存
   }
} 

}
?>
Copy after login


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

How to Register and Use Laravel Service Providers How to Register and Use Laravel Service Providers Mar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles