search
HomeBackend DevelopmentPHP TutorialPHP image upload code (with the function of generating thumbnails and adding watermarks)_PHP tutorial
PHP image upload code (with the function of generating thumbnails and adding watermarks)_PHP tutorialJul 13, 2016 am 10:45 AM
phpuploadandcodeFunctionCanpictureIncreasepaymentwatermarksource codegenerate

This image upload source code can upload images and also has the function of generating thumbnails and adding watermarks to uploaded images. It can be said to be a perfect image uploader.

php tutorial image upload code (with the function of generating thumbnails and adding watermarks)
This image upload source code can upload images and also has the function of generating thumbnails and adding watermarks to uploaded images. It can be said to be a perfect image uploader.

class upfile {
public $filepath = "www.bKjia.c0m/"; //Folder to store uploaded files

public $filesize = 1000000; //Allow upload size

//If you want to modify the types of files allowed to be uploaded, please search [ switch ($upfiletype) { //File type ]

public $reimagesize = array (
true, //Whether to generate thumbnails
400, //Thumbnail width
300,//Thumbnail height
"" //Thumbnail storage folder. If empty, it is in the same directory as the current file to generate thumbnails. The file prefix is ​​r_
); //Whether to generate thumbnail array (generate or not, thumbnail width, thumbnail height, storage folder); Note: the storage folder is followed by '/'

public $india = true; //Whether to watermark true or false

public $indiaimage = ""; //If the watermark image address is empty, the image watermark will not be printed. If there is a text watermark, it is recommended not to enable the image watermark

public $indiaimagex = 100; //The distance between the image and the left side of the image

public $indiaimagey = 10; //The distance between the picture and the top of the picture

public $indiatext = "www.bKjia.c0m"; //Watermark text

public $fontsize = 6; //Watermark text size, 1 minimum and 6 maximum

public $indiatextx = 10; //The distance between the text and the left side of the image

public $indiatexty = 10; //The distance between the text and the top of the picture

public $r = 250; //Three primary colors of picture color $r red

public $g = 250; //$g green

public $b = 250; //$bblue

public $indiapath = ""; //The watermarked picture saving path, if it is empty, it will directly replace the original picture

 //开始上传处理
 function uploadfile($upfile) {
  if ($upfile == "") {
   die("uploadfile:参数不足");
  }
  if (!file_exists($this->filepath)) {
   mkdir($this->filepath);
  }
  $upfiletype = $upfile['type'];
  $upfilesize = $upfile['size'];
  $upfiletmpname = $upfile['tmp_name'];
  $upfilename = $upfile['name'];
  $upfileerror = $upfile['error'];
  if ($upfilesize > $this->filesize) {
   return false; //文件过大
  }
  switch ($upfiletype) { //文件类型
   case 'image/jpeg' :
    $type = 'jpg';
    break;
   case 'image/pjpeg' :
    $type = 'jpg';
    break;
   case 'image/png' :
    $type = 'png';
    break;
   case 'image/gif' :
    $type = 'gif';
    break;
  }
  if (!isset ($type)) {
   return false; //不支持此类型
  }
  if (!is_uploaded_file($upfiletmpname) or !is_file($upfiletmpname)) {
   return false;
   ; //文件不是经过正规上传的;
  }
  if ($this->upfileerror != 0) {
   return false; //其他错误
  }
  if ($this->upfileerror == 0) {
   if (!file_exists($upfiletmpname)) {
    return false; //临时文件不存在
   } else {
    $filename = date("ymdhis", time() + 3600 * 8); //图片已当前时间命名
    $filename = $this->filepath . $filename . "." . $type;
    if (!move_uploaded_file($upfiletmpname, $filename)) {
     return false; //文件在移动中丢失
    } else {
     if ($this->india == true) {
      $this->goindia($filename, $type,true);
     } else {
      if ($this->reimagesize[0] == true) {
       $this->goreimagesize($filename, $type);
      } else {
       return true; //上传成功!
       unlink($upfiletmpname);
      }
     }
    }

   }
  }

}
//Add watermark processing
function goindia($filename, $filetype,$reimage=false) {
if (!file_exists($filename)) {
$this->reerror(7); //The file to be watermarked does not exist
} else {
if ($filetype == "jpg") {
$im = imagecreatefromjpeg($filename);
} else
if ($filetype == "gif") {
       $im = imagecreatefromgif($filename);
} else
If ($filetype == "png") {
        $im = imagecreatefrompng($filename);
}
If ($this->indiatext != "") { //If the watermark text is not empty
$textcolor = imagecolorallocate($im, $this->r, $this->g, $this->b); //Set text color
Imagestring($im, $this->fontsize, $this->indiatextx, $this->indiatexty, $this->indiatext, $textcolor); //Write text into the image
}
if ($this->indiaimage != "") {//If the watermark image is not empty
$indiaimagetype = getimagesize($this->indiaimage);
$logow = $indiaimagetype[0]; //Get the width of the watermark image
$logoh = $indiaimagetype[1]; //Get the height of the watermark image
Switch ($indiaimagetype[2]) { //Determine the format of the watermark image
case 1 :
       $indiaimagetype = "gif";
$logo = imagecreatefromgif($this->indiaimage);
        break;
Case 2:
       $indiaimagetype = "jpg";
$logo = imagecreatefromjpeg($this->indiaimage);
        break;
Case 3:
       $indiaimagetype = "png";
$logo = imagecreatefrompng($this->indiaimage);
        break;
}
Imagealphablending($im, true); //Turn on color blending mode
Imagecopy($im, $logo, $this->indiaimagex, $this->indiaimagey, 0, 0, $logow, $logoh);
Imagedestroy($im);
Imagedestroy($logo);
}
}
if ($this->indiapath == "") { //If the watermark storage address is not empty
if ($filetype == "jpg") {
Imagejpeg($im, $filename);
} else
if ($filetype == "gif") {
Imagegif($im, $filename);
} else
If ($filetype == "png") {
Imagepng($im, $filename);
}
if($reimage == true){
$this->goreimagesize($filename,$filetype);
}else{
Return true; //Watermark added successfully
}
} else {
if (!file_exists($this->indiapath)) {
mkdir($this->indiapath);
Return false; //Please re-upload
} else {
$indianame = basename($filename);
$indianame = $this->indiapath . $indianame;
If ($filetype == "jpg") {
Imagejpeg($im, $indianame);
} else
If ($filetype == "gif") {
Imagegif($im, $indianame);
} else
If ($filetype == "png") {
Imagepng($im, $indianame);
}
If($reimage == true){
$this->goreimagesize($indianame,$filetype);
echo $indianame;
}else{
Return true; //Watermark added successfully
}
}
}
}
function goreimagesize($filename, $filetype) {
if (!file_exists($filename)) {
Return false; //The picture to be generated as a thumbnail does not exist
} else {
if ($filetype == 'jpg') {
$reimage = imagecreatefromjpeg($filename);
}
elseif ($filetype == 'png') {
$reimage = imagecreatefrompng($filename);
} else
if ($filetype == 'gif') {
$reimage = imagecreatefromgif($filename);
}
if (isset ($reimage)) {
$srcimagetype = getimagesize($filename);
$srcimagetypew = $srcimagetype[0]; //Get the original image width
$srcimagetypeh = $srcimagetype[1]; //Get the original image height
$reim = imagecreatetruecolor($this->reimagesize[1], $this->reimagesize[2]);
Imagecopyresized($reim, $reimage, 0, 0, 0, 0, $this->reimagesize[1], $this->reimagesize[2], $srcimagetypew, $srcimagetypeh);
$reimagepath = $this->reimagesize[3];
If ($reimagepath != "") { //If the watermark storage address is not empty
If (!file_exists($reimagepath)) {
         mkdir($reimagepath);
} else {
        $reimagename = basename($filename);
$reimagename = $reimagepath . "r_" . $reimagename;
If ($filetype == "gif")
Imagegif($reim, $reimagename);
       else
If ($filetype == "jpg")
Imagejpeg($reim, $reimagename);
       else
           if ($filetype == "png")
Imagepng($reim, $reimagename);
        return true;
}
} else {
$filename = basename($filename);
If($this->indiapath == ""){
$filename = $this->filepath."r_" . $filename;
      }else{
$filename = $this->indiapath."r_" . $filename;
}
If ($filetype == "gif")
Imagegif($reim, $filename);
      else
If ($filetype == "jpg")
Imagejpeg($reim, $filename);
       else
If ($filetype == "png")
Imagepng($reim, $filename);
Return true;
}

}
}
}

}
if ($_post["submit"]) {
$file = $_files['uploadfile'];
$upfile = new upfile();
echo $upfile->uploadfile($file);
}
?>





www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/633045.htmlTechArticleThis image upload source code is a tool that can upload images and also has the ability to generate thumbnails and add images to uploaded images. With the watermark function, it can be said to be a perfect image uploader. PHP teaching...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft