$ico_pic 是你要给图片加水印的水印图片,其它的参数都有详细的说明,如果你下大找这类代码可以下载保存成php文件再利用后面说的调用方法来调用本生成水印图片类代码。
$ico_pic 是你要给图片加水印的水印图片,其它的参数都有详细的说明,如果你下大找这类代码可以下载保存成php教程文件再利用后面说的调用方法来调用本生成水印图片类代码。
*/
class smallpic{
private $src_pic;//原图
private $ico_pic = "003.png";//水印图
private $ico_text = "水印";//水印文字
private $small_width;//缩略图宽度
private $small_height;//缩略图高度
private $is_ico_pic = true;//是否加图片水印
private $is_text = true;//是否加文字水印
private $src_x = 20;//水印在原图的x坐标
private $src_y = 20;//水印在原图的y坐标
private $ut = "utf-8";//文字编码
private $font_color = "#990000";//文字水印颜色
private $samll_pic_name = "smallpic";//小图的名称
private $big_pic_name = "bigpic";//大图的名称
function __construct($src_pic,$small_width,$small_height){
$this->checkfile($src_pic);
$this->checkfile($this->ico_pic);
$this->src_pic = $src_pic;
$this->small_width = $small_width;
$this->small_height = $small_height;
}private function __get($property_name){
return $this->$property_name;
}private function __set($property_name,$value){
return $this->$property_name = $value;
}
/**
* 取得图片的一些基本信息,类型为array
*/
function getimageinfo($image){
return @getimagesize($image);
}/**
* 把图片加载到php中
* $image 传进来的图片
*/
function getimage($image){
$image_info = $this->getimageinfo($image);
switch($image_info[2]){
case 1:
$img = @imagecreatefromgif($image);
break;
case 2:
$img = @imagecreatefromjpeg($image);
break;
case 3:
$img = @imagecreatefrompng($image);
break;
}
return $img;
}function createimageforsuffix($big_pic,$new_pic){
$image_info = $this->getimageinfo($this->src_pic);
switch($image_info[2]){
case 1:
//输出大图
@imagegif($big_pic,$this->big_pic_name.".gif");
//输出小图
@imagegif($new_pic,$this->samll_pic_name.".gif");
break;
case 2:
//输出大图
@imagejpeg($big_pic,$this->big_pic_name.".jpg");
//输出小图
@imagejpeg($new_pic,$this->samll_pic_name.".jpg");
break;
case 3:
//输出大图
@imagepng($big_pic,$this->big_pic_name.".png");
//输出小图
@imagepng($new_pic,$this->samll_pic_name.".png");
break;
}
}function checkfile($file){
if(!file_exists($file)){
die("图片:".$file."不存在!");
}
}function createsmallimage(){
$big_pic = $this->getimage($this->src_pic);
$big_pic_info = $this->getimageinfo($this->src_pic);
$new_pic = $this->getimage($this->ico_pic);
$new_pic_info = $this->getimageinfo($this->ico_pic);
$rgb = $this->convcolor();//判断是按宽比例缩放还是按高比例缩放
if($big_pic_info[0] > $big_pic_info[1]){
$ratio = $this->small_width/(int)$big_pic_info[0];
$small_pic_width = $this->small_width;
$small_pic_height = (int)($big_pic_info[1]*$ratio);
}else{
$ratio = $this->small_height/(int)$big_pic_info[1];
$small_pic_height = $this->small_height;
$small_pic_width = (int)($big_pic_info[0]*$ratio);
}//echo $small_pic_width = (int)($big_pic_info[0]*$ratio);
//echo $small_pic_height = (int)($big_pic_info[1]*$ratio);//是否打图片水印
if ($this->is_ico_pic){
//打图片水印
@imagecopy($big_pic,$new_pic,$this->src_x,$this->src_y,0,0,$new_pic_info[0],$new_pic_info[1]);
}
//是否打文字水印
if ($this->is_text){
//设置文字颜色
$text_color = @imagecolorallocate($big_pic,$rgb[0],$rgb[1],$rgb[2]);
//转换文字编码
$text = @iconv($this->ut,"utf-8",$this->ico_text);
//打文字水印
@imagettftext($big_pic,12,0,$this->src_x,$this->src_y,$text_color,"simkai_0.ttf",$text);
}
//新建一个新图片的画板
$new_pic = @imagecreatetruecolor($small_pic_width,$small_pic_height);
//生成缩略图
@imagecopyresized($new_pic,$big_pic,0,0,0,0,$small_pic_width,$small_pic_height,$big_pic_info[0],$big_pic_info[1]);
//输出图
$this->createimageforsuffix($big_pic,$new_pic);
}/**
* 类内部的功能函数把#000000转换成255,255,255
*/
private function convcolor(){
$rgb = array();
$color = preg_replace("/#/","",$this->font_color);
$c = hexdec($color);
$r = ($c >> 16) & 0xff;
$g = ($c >> 8) & 0xff;
$b = $c & 0xff;
$rgb[0] = $r;
$rgb[1] = $g;
$rgb[2] = $b;
return $rgb;
}
}
//调用方法
$pic = new smallpic("002.jpg",600,300);
$pic->is_text = true;
$pic->is_ico_pic = true;
$pic->ico_pic = "./images/004.png";
$pic->ico_text = "新年快乐!";
//$pic->src_x = 80;
$pic->src_y = 80;
$pic->ut = "utf-8";
$pic->font_color = "#0521f8";
$pic->samll_pic_name = "hslsamll";
$pic->big_pic_name = "hslbig";
$pic->createsmallimage();
?>

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

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

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

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

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

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

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

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


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

禅工作室 13.0.1
功能强大的PHP集成开发环境

Atom编辑器mac版下载
最流行的的开源编辑器

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

Dreamweaver Mac版
视觉化网页开发工具