Home Backend Development PHP Tutorial PHP function code for adding watermark function and thumbnail to pictures_PHP tutorial

PHP function code for adding watermark function and thumbnail to pictures_PHP tutorial

Jul 20, 2016 am 11:07 AM
php for code function add and picture watermark of

php function code for adding watermark function and thumbnail to pictures
/**
* Add watermark to the image
* @param string $desImg The target image parameter format is ./images/pic.jpg
* @param string $waterImg The watermark image parameter format is the same as above, and the watermark image is in png format. Background transparent
* @param int positon Watermark position 1: Top left 2: Top right 3: Center 4: Bottom left 5: Bottom right
* @param bool $saveas Whether to save as, default value false, Indicates overwriting the original image
* @param int $alpha The opacity of the watermark image
* @return string $savepath The path of the new image
* **/
function watermark($desImg,$waterImg,$positon=1,$saveas=false,$alpha =30)
{
//Get the basic information of the target image
$temp=pathinfo($desImg);
$name=$temp["basename"];//File name
$path=$temp["dirname"];//The folder where the file is located
$extension=$temp["extension"];//File extension
if($saveas)
{
//Need to save as
$name=rtrim($name,".$extension")."_2.";//Rename
$savepath=$path."/".$name .$extension;
}
else
{
//Overwrite the original image if there is no need to save as
$savepath=$path."/".$name;
}
$info=getImageInfo($desImg);//Get the information of the target image
$info2=getImageInfo($waterImg);//Get the information of the watermark image

$desImg=create($desImg );//Create from the original image
$waterImg=create($waterImg);//Create from the watermark image
//Position 1: top left
if($positon==1)
{
$x=0;
$y=0;
}
//Position 2: Top right
if($positon==2)
{
$x=$info[0]-$info2[0];
$y=0;
}
//Position 3: Centered
if($positon==3)
{
$x=($info[0]-$info2[0])/2;
$y=($info[1]-$info2[1])/2;
}
//Position 4: bottom left
if($positon==4)
{
$x=0;
$y=$info[1]-$info2[1];
}
//Position 5: bottom right
if($positon==5)
{
$x=$info[0]-$info2[0];
$y=$info[1]-$info2[1];
}
imagecopymerge($desImg,$waterImg,$x,$y,0,0,$info2[0],$info2[ 1],$alpha);
imagejpeg($desImg,$savepath);
imagedestroy($desImg);
imagedestroy($waterImg);
return $savepath;
}
/**
* Get image information, width, height, image/type
* @param string $src image path
* @return array
* **/
function getImageInfo($src)
{
return getimagesize($src);
}
/**
* Create an image and return the resource type
* @param string $src Image path
* @return resource $im Return the resource type
* **/
function create($src)
{
$info=getImageInfo($src);
switch ($info[2])
{
case 1:
$im=imagecreatefromgif ($src);
break;
case 2:
$im=imagecreatefromjpeg($src);
break;
case 3:
$im=imagecreatefrompng($src) ;
break;
}
return $im;
}
/**
* Thumbnail main function
* @param string $src image path
* @param int $w thumbnail width
* @param int $h thumbnail height
* @return mixed Return thumbnail path
* **/

function resize($src,$w,$h)
{
$temp=pathinfo($src);
$name=$temp["basename"];//File name
$dir=$temp["dirname"];// The folder where the file is located
$extension=$temp["extension"];//File extension
$savepath="{$dir}/{$name}.thumb.jpg";//Thumbnail Save path, the new file name is *.thumb.jpg

//Get the basic information of the image
$info=getImageInfo($src);
$width=$info[0]; //Get the image width
$height=$info[1];//Get the image height
$per1=round($width/$height,2);//Calculate the original image aspect ratio
$per2=round($w/$h,2);//Calculate the thumbnail aspect ratio

//Calculate the scaling ratio
if($per1>$per2||$per1==$ per2)
{
//The aspect ratio of the original image is greater than or equal to the aspect ratio of the thumbnail, then the width will be given priority
$per=$w/$width;
}
if( $per1<$per2)
{
//The aspect ratio of the original image is smaller than the aspect ratio of the thumbnail, then the height priority is given
$per=$h/$height;
}
$temp_w=intval($width*$per);//Calculate the width of the original image after scaling
$temp_h=intval($height*$per);//Calculate the height of the original image after scaling
$temp_img =imagecreatetruecolor($temp_w,$temp_h);//Create canvas
$im=create($src);
imagecopyresampled($temp_img,$im,0,0,0,0,$temp_w,$temp_h ,$width,$height);
if($per1>$per2)
{
imagejpeg($temp_img,$savepath);
return addBg($savepath,$w,$h, "w");
//Width priority, add the background if the height is insufficient after scaling
}
if($per1==$per2)
{
imagejpeg($ temp_img,$savepath);
return $savepath;
//proportional scaling
}
if($per1<$per2)
{
imagejpeg($temp_img,$savepath );

return addBg($savepath,$w,$h,"h");
//Height priority, if the width is insufficient after scaling, add the background
}
}
/**
* Add background
* @param string $src image path
* @param int $w background image width
* @param int $h background image height
* @param String $first Determines the final position of the image, w width takes precedence h height takes precedence wh: proportional
* @return returns the image with background
* **/
function addBg($src,$w,$h,$fisrt="w")
{
$bg=imagecreatetruecolor($w,$h);
$white = imagecolorallocate($bg,255,255,255);
imagefill($bg,0,0,$white);//Fill the background

//Get the target image information
$info =getImageInfo($src);
$width=$info[0];//Target image width
$height=$info[1];//Target image height
$img=create($ src);
if($fisrt=="wh")
{
//Constant scaling
return $src;
}
else
{
if($fisrt=="w")
{
$x=0;
$y=($h-$height)/2;//Vertically centered
}
if ($fisrt=="h")
{
$x=($w-$width)/2;//Horizontal centering
$y=0;
}
imagecopymerge( $bg,$img,$x,$y,0,0,$width,$height,100);
imagejpeg($bg,$src);
imagedestroy($bg);
imagedestroy ($img);
return $src;
}

}


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/444990.htmlTechArticlephp Add watermark function and thumbnail function code for pictures/** * Add watermark for pictures* @param string $desImg target image parameter format is ./images/pic.jpg * @param string $waterImg watermark...
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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
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 尊渡假赌尊渡假赌尊渡假赌

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)

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.

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

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles