


PHP supports generating thumbnail file upload code_PHP tutorial
php tutorial supports generating thumbnail file upload code
?>
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
}
}
}
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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
