Home Backend Development PHP Tutorial PHP supports generating thumbnail file upload code_PHP tutorial

PHP supports generating thumbnail file upload code_PHP tutorial

Jul 13, 2016 am 10:45 AM
doctype h php upload code support Tutorial document generate

php tutorial supports generating thumbnail file upload code
?>




Untitled Document


class upfileclass {

var $upfile, $upfile_name, $upfile_size;
# $upfile temporary file name $_files['tmp_name'], $upfile_name file name $_files['name'], $upfile_size file size $_files['size'];

var $new_upfile_name; # The name of the uploaded file;
var $fleth, $fileextent; # File extension (type);
var $f1, $f2, $f3; # File saving path (multi-level) upfiles/2008-01/08/;
var $filename; #File (with path);
var $filepath; #Relative path is used to delete files;
var $maxsize, $file_type; # The size of files allowed to be uploaded and the type of files allowed to be uploaded;

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; #File size 500kb
$this->file_type = "gif/jpg/jpeg/png/bmp"; # File types allowed to be uploaded
}

#Create new file name (original file name)
function createnewfilename($file_name){
$this->fleth = explode(".",$file_name);
$this->fileextent = $this->fleth[(int)count($this->fleth)-1]; # Get file suffix;
$tmps tutorial tr = date('ymd').rand(0,time()) . "." .$this->fileextent; # Create a new file name;
Return $tmpstr;
}

# Check whether the file type is correct
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("The file does not conform to the ".$this->file_type." format!");
}
}

# Prompt an error message and terminate the operation
function msg($error){
echo "n";
Die();
}

# Save file
function savefile(){
$this->chk_fileextent();
$this->chk_filesize();
$this->createfolder( "../".$this->f1 );
$this->createfolder( "../".$this->f2 );
$this->createfolder( "../".$this->f3 );
Return $this->chk_savefile();
}

# Check whether the upload result is successful
function chk_savefile(){
$copymsg = copy($this->upfile,"../".$this->filename);
If( $copymsg ){
Return $this->filename;
}
else{
$this->msg("File upload failed! nnPlease upload again! ");
}
}

# Create folder
function createfolder($foldername){
If( !is_dir($foldername) ){
mkdir($foldername,0777);
}
}

#Detect file size
function chk_filesize(){
If( $this->upfile_size > $this->maxsize ){
$this->msg("The target file cannot be larger than ". $this->maxsize/1024 ." kb");
}
}

#Delete file ($filepath file relative path)
function deletefile($filepath){
If( !is_file($filepath) ){
Return false;
}
else{
$ending = @unlink($filepath);
Return $ending;
}
}

/*
Function: Generate thumbnail
makebuild("/www.bKjia.c0m/a.jpg","news/b.jpg","100");
Parameters:
Echo $buildfile; Original image with path
Echo $newfile; Generated thumbnail with path
Echo $file_width; Thumbnail width value
Echo $file_height; Thumbnail height value (default is the proportion of width)
Echo $rate; Thumbnail image quality;
*/
function makebuild($buildfile,$newfile,$file_width,$file_height=0,$rate=100) {
If(!is_file($buildfile)){
$this->msg("The file ".$buildfile." is not a valid graphics file! The nn system cannot generate a thumbnail for the file!");
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); # Get the width of the original image;
$srch = imagesy($im); # Get the height of the original image;
$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); # Generate thumbnail;
imagedestroy($im); # imagedestroy(resource) Release the memory associated with image
}
}

}
?>


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/633037.htmlTechArticlephp tutorial supports generating thumbnail file upload code? !doctype html public -//w3c//dtd xhtml 1.0 transitional //en http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd html xmlns=ht...
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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles