Home php教程 PHP源码 给图片加水印

给图片加水印

May 23, 2016 am 08:39 AM

跳至

<?php
/**
  * 功能:给一张图片加上水印效果
  *           $i  要加水印效果的图片
  *           $t  水印文字
  *           $size 文字大小
  *           $pos 水印的位置
  *   		   $color 文字的颜色
  *           $flag 是布尔值,主要用来区分是不是原图上加水印
  *           $type 如果$flag等于false 则新图上加上水印 新文件名为 原名_txt.jpg
  */
function txt($i,$t=&#39;版权所有&#39;,$size=25,$pos=5,$color=&#39;rand&#39;,$flag=true,$type=&#39;_txt&#39;){
	$img = imagecreatefromjpeg($i);
	$w = imagesx($img);
	$h = imagesy($img);
	$font = dirname(__FILE__).&#39;/font/ls.ttf&#39;;
	$ps = imagettfbbox($size,0,$font,$t);
	$tw = $ps[4];
	$th = abs($ps[5]);
	switch($pos){
		case 1:break;	
		case 2:break;	
		case 3:break;	
		case 4:break;	
		case 5:$x=($w-$tw)/2;$y=($h-$th)/2+$th;break;	
		case 6:break;	
		case 7:break;	
		case 8:break;	
		case 9:break;	
		default:break;
	}
	$c = getcolor($img,$color);
	imagettftext($img,$size,0,$x,$y,$c,$font,$t);
	if($flag){
		imagejpeg($img,$i);	
	}else{
		$ext = ext($i);
		$ppp = rtrim($i,&#39;.&#39;.$ext);
		$ppp = $ppp.$type.&#39;.&#39;.$ext;
		imagejpeg($img,$ppp);
	}
}

function getcolor($i,$c=&#39;rand&#39;,$a=50){
	$cc = &#39;&#39;;
	switch($c){
		case &#39;white&#39;:$cc=imagecolorallocatealpha($i,255,255,255,$a);break;
		case &#39;black&#39;:$cc=imagecolorallocatealpha($i,0,0,0,$a);break;
		case &#39;red&#39;:$cc=imagecolorallocatealpha($i,255,0,0,$a);break;
		case &#39;green&#39;:$cc=imagecolorallocatealpha($i,0,255,0,$a);break;
		case &#39;blue&#39;:$cc=imagecolorallocatealpha($i,0,0,255,$a);break;
		case &#39;orange&#39;:$cc=imagecolorallocatealpha($i,0xff,0x66,0x33,$a);break;
		case &#39;yellow&#39;:$cc=imagecolorallocatealpha($i,255,255,0,$a);break;
		case &#39;rand&#39;:$cc=imagecolorallocatealpha($i,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255),$a);break;
		default:
			$cs = substr($c,1);
			$ok = str_split($cs,2);
			$cc = imagecolorallocatealpha($i,hexdec($ok[0]),hexdec($ok[1]),hexdec($ok[2]),$a);
		break;		
	}
	return $cc;
}


/**
 * 功能是:返回扩展名
 */
 
function ext($f){
	$exts = explode(&#39;.&#39;,$f);
	return end($exts);
}

/**
  *  功能是:返回文件名,不含扩展名
  */
function name($f){
	$s = explode(&#39;/&#39;,$f);
	$fn = end($s);
	return rtrim($fn,&#39;.&#39;.ext($f));
}
Copy after login

                   

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks 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)