您的位置:

php代理直播源加水印,php直播源代理论坛

本文目录一览:

我这有个已经实现了php上传图片的功能的类,但是现在还要给上传的每张图片加水印,请高手帮忙……

给你一个封装的图片处理的类吧!包含缩放和剪切功能!

构造方法只需要传递图片所在路径即可!对应方法及参数都有注释!

请给予最佳答案!!

?php

class Img{

private $path;

//构造方法,初始化图片信息

function __construct($path='./imgs/'){

$this-path=rtrim($path,'/').'/';

}

/**

* 对图片进行缩放

* 参数对应:文件名 缩放后宽度 缩放后高度 缩放后图片名前缀

*/

function thumb($name,$width,$height,$pre="th_"){

if(file_exists($this-path.$name)){

$imgInfo=$this-getInfo($name);

$img=$this-getImg($name,$imgInfo);

$newSize=$this-getNewSize($name,$width,$height,$imgInfo);

$newImg=$this-getNewInfo($img,$newSize,$imgInfo);

return $this-createNewImage($newImg, $pre.$name, $imgInfo);

}else{

echo '图片'.$this-path.$name.'不存在,请检查文件名及路径是否填写正确';

}

}

//辅助图片处理,获取图片的宽、高、类型属性

private function getInfo($name){

$temp=getImageSize($this-path.$name);

$imgInfo['width']=$temp[0];

$imgInfo['height']=$temp[1];

$imgInfo['type']=$temp[2];

return $imgInfo;

}

//辅助图片处理,获取创建的图片资源

private function getImg($name,$imgInfo){

$src=$this-path.$name;

switch($imgInfo['type']){

case 1:

$img=imagecreatefromgif($src);

break;

case 2:

$img=imagecreatefromjpeg($src);

break;

case 3:

$img=imagecreatefrompng($src);

break;

}

return $img;

}

//辅助图片处理,获取创建的图片资源

private function getNewSize($name,$width,$height,$imgInfo){

$newSize['width']=$imgInfo['width'];

$newSize['height']=$imgInfo['height'];

if($width$imgInfo['width']){

$newSize['width']=$width;

}

if($height$imgInfo['height']){

$newSize['height']=$height;

}

if($imgInfo["width"]*$newSize["width"] $imgInfo["height"] * $newSize["height"]){

$newSize["height"]=round($imgInfo["height"]*$newSize["width"]/$imgInfo["width"]);

}else{

$newSize["width"]=round($imgInfo["width"]*$newSize["height"]/$imgInfo["height"]);

}

print_r($newSize);

return $newSize;

}

//辅助图片处理,获取缩放的图片资源

private function getNewInfo($img,$newSize,$imgInfo){

$newImg=imagecreatetruecolor($newSize['height'],$newSize['height']);

$otsc=imagecolortransparent($img);

if($otsc =0 $otsc = imagecolorstotal($img)){

$tran=imagecolorsforindex($img, $otsc);

$newt=imagecolorallocate($newImg, $tran["red"], $tran["green"], $tran["blue"]);

imagefill($newImg, 0, 0, $newt);

imagecolortransparent($newImg, $newt);

}

imagecopyresized($newImg, $img, 0, 0, 0, 0, $newSize["width"], $newSize["height"], $imgInfo["width"], $imgInfo["height"]);

imagedestroy($img);

return $newImg;

}

//辅助图片处理,创建新的图片

private function createNewImage($newImg, $newName, $imgInfo){

switch($imgInfo["type"]){

case 1://gif

$result=imageGif($newImg, $this-path.$newName);

break;

case 2://jpg

$result=imageJPEG($newImg, $this-path.$newName);

break;

case 3://png

$return=imagepng($newImg, $this-path.$newName);

break;

}

imagedestroy($newImg);

return $newName;

}

/**

* 对图片加水印

* 参数对应:需水印图片 水印图片 加水印后图片名前缀

*/

function waterMark($name,$wname,$pre="wa_"){

if(file_exists($this-path.$name)){

if(file_exists($this-path.$wname)){

$info=$this-getInfo($name);

$winfo=$this-getInfo($wname);

if($p=$this-getPosition($info,$winfo)){

$img=$this-getImg($name,$info);

$wImg=$this-getImg($wname,$winfo);

imagecopy($img, $wImg, $p["x"], $p["y"], 0, 0, $winfo["width"], $winfo["height"]);

imagedestroy($wImg);

return $this-createNewImage($img,$pre.$name,$info);

}else{

echo '水印图片尺寸大于原图片尺寸';

}

}else{

echo '水印图片'.$this-path.$wname.'不存在,请检查文件名及路径是否填写正确';

}

}else{

echo '图片'.$this-path.$name.'不存在,请检查文件名及路径是否填写正确';

}

}

//辅助图片处理,获取水印图片应处坐标

private function getPosition($info,$winfo){

if($info['width']$winfo['width']||$info['height']$winfo['height']){

return false;

}

$x=$info['width']-$winfo['width'];

$y=$info['height']-$winfo['height'];

return array('x'=$x,'y'=$y);

}

/**

* 图片剪切函数

* 对应参数:原图片 X坐标 Y坐标 宽度 高度

*/

function cut($name,$x,$y,$width,$height,$pre='cx_'){

$imgInfo=$this-getInfo($name);

$img=$this-getImg($name,$imgInfo);

$newImg=imagecreatetruecolor($width,$height);

imagecopyresampled($newImg,$img,0,0,$x,$y,$width,$height,$width,$height);

return $this-createNewImage($newImg, $pre.$name, $imgInfo);

}

}

谁有能用的php给图片加文字水印,最好有使用方法,注意:一定是能用的,功能强不强大另说

?php

/*PHP图片加文字水印类库

QQ:3697578482 伤心的歌

该类库暂时只支持文字水印,位置为右下角,颜色随机

调用方法:

1、在需要加水印的文件顶部引入类库:

include_once 'imageClass.php';

2、声明新类:

$tpl=new image_fu;

3、给图片水印提供参数:

$tpl-img(图片路径,水印文字,字体路径,字体大小,字体角度);

比如:$tpl-img('abc.jpg','这是水印文字','ziti.ttf',30,0)

*/

class image_fu{

private $image;

private $img_info;

private $img_width;

private $img_height;

private $img_im;

private $img_text;

private $img_ttf='';

private $img_new;

private $img_text_size;

private $img_jd;

function img($img='',$txt='',$ttf='',$size=12,$jiaodu=0){

if(isset($img)file_exists($img)){//检测图片是否存在

$this-image =$img;

$this-img_text=$txt;

$this-img_text_size=$size;

$this-img_jd=$jiaodu;

if(file_exists($ttf)){

$this-img_ttf=$ttf;

}else{

exit('字体文件:'.$ttf.'不存在!');

}

$this-imgyesno();

}else{

exit('图片文件:'.$img.'不存在');

}

}

private function imgyesno(){

$this-img_info =getimagesize($this-image);

$this-img_width =$this-img_info[0];//图片宽

$this-img_height=$this-img_info[1];//图片高

//检测图片类型

switch($this-img_info[2]){

case 1:$this-img_im = imagecreatefromgif($this-image);break;

case 2:$this-img_im = imagecreatefromjpeg($this-image);break;

case 3:$this-img_im = imagecreatefrompng($this-image);break;

default:exit('图片格式不支持水印');

}

$this-img_text();

}

private function img_text(){

imagealphablending($this-img_im,true);

//设定颜色

$color=imagecolorallocate($this-img_im,rand(0,255),rand(0,255),rand(0,255));

$txt_height=$this-img_text_size;

$txt_jiaodu=$this-img_jd;

$ttf_im=imagettfbbox($txt_height,$txt_jiaodu,$this-img_ttf,$this-img_text);

$w = $ttf_im[2] - $ttf_im[6];

$h = $ttf_im[3] - $ttf_im[7];

//$w = $ttf_im[7];

//$h = $ttf_im[8];

unset($ttf_im);

$txt_y =$this-img_height-$h;

$txt_x =$this-img_width-$w;

//$txt_y =0;

//$txt_x =0;

$this-img_new=@imagettftext($this-img_im,$txt_height,$txt_jiaodu,$txt_x,$txt_y,$color,$this-img_ttf,$this-img_text);

@unlink($this-image);//删除图片

switch($this-img_info[2]) {//取得背景图片的格式

case 1:imagegif($this-img_im,$this-image);break;

case 2:imagejpeg($this-img_im,$this-image);break;

case 3:imagepng($this-img_im,$this-image);break;

default: exit('水印图片失败');

}

}

//显示图片

function img_show(){echo 'img src="'.$this-image.'" border="0" alt="'.$this-img_text.'" /';}

//释放内存

private function img_nothing(){

unset($this-img_info);

imagedestroy($this-img_im);

}

}

?

PHP执行FTP 上传 加水印问题

这个不管你加不加水印,图片都是先上传到你的服务器的缓存,再上传到FTP,加水印是中间那里再加个使用GD库处理一下图片

phpcms v9 如何让编辑器中上传的图片加水印

登陆后台,进入后台首页看到顶级菜单的“设置",

点击一下,左边出现“站点设置”,此时看有自己的站点名,

点击右边的“修改”,此时出现“编辑站点“对话框,我们滑动鼠标滚轮,可以看到对话框底部有“附件配置”的相关设置

在这里可以附件的大小,与附件的类型,

还有最重要的是开启图片水印功能,水印的大小设置,水印图片的设置,

与水印的透明度设置,水印放在图片的哪个位置,都有非常详细的说明,

如果不太会,可以每个者尝试一下,看看效果是否怎样,需要选择比较好的效果设置一下,好了

各位大神,怎么把水印加在直播上

如果添加水印到视频上电脑不少软件都可以办到,如PS即可办到,但是直播添加水印这个目前还是无法办到。

php批量水印添加源码

这个要用到文件列遍函数

$dir="./images/*.jpg"; //以jpg图片为例

$image_files=glob($dir); //将目录中指定类型文件url读入$image_files数组

然后用循环语句进行添加水印

for($i=0;$icount($image_files);$i++)

{

//调用图片文件

$this_image=$image_files[$i];

//添加水印代码

}