- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章PHP 图片水印类代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
支持文字水印、图片水印 支持水印的位置随机或固定(九宫格) 水印透明度设置(图片水印和文字水印都支持) 文字水印的字体、颜色、大小设置 图片水印的背景透明 。
复制代码代码如下
<?php /** * 加水印类,支持文字图片水印的透明度设置、水印图片背景透明。 * 日期:2011-09-27 * 作者:www.zzvips.com * 使用: * $obj = new WaterMask($imgFileName); //实例化对象 * $obj->$waterType = 1; //类型:0为文字水印、1为图片水印 * $obj->$transparent = 45; //水印透明度 * $obj->$waterStr = 'www.zzvips.com'; //水印文字 * $obj->$fontSize = 16; //文字字体大小 * $obj->$fontColor = array(255,0255); //水印文字颜色(RGB) * $obj->$fontFile = = 'AHGBold.ttf'; //字体文件 * $obj->output(); //输出水印图片文件覆盖到输入的图片文件 */ class WaterMask{ public $waterType = 1; //水印类型:0为文字水印、1为图片水印 public $pos = 0; //水印位置 public $transparent = 45; //水印透明度 public $waterStr = 'www.zzvips.com'; //水印文字 public $fontSize = 16; //文字字体大小 public $fontColor = array(255,0,255); //水印文字颜色(RGB) public $fontFile = 'AHGBold.ttf'; //字体文件 public $waterImg = 'logo.png'; //水印图片 private $srcImg = ''; //需要添加水印的图片 private $im = ''; //图片句柄 private $water_im = ''; //水印图片句柄 private $srcImg_info = ''; //图片信息 private $waterImg_info = ''; //水印图片信息 private $str_w = ''; //水印文字宽度 private $str_h = ''; //水印文字高度 private $x = ''; //水印X坐标 private $y = ''; //水印y坐标 function __construct($img) { //析构函数 $this->srcImg = file_exists($img) ? $img : die('"'.$img.'" 源文件不存在!'); } private function imginfo() { //获取需要添加水印的图片的信息,并载入图片。 $this->srcImg_info = getimagesize($this->srcImg); switch ($this->srcImg_info[2]) { case 3: $this->im = imagecreatefrompng($this->srcImg); break 1; case 2: $this->im = imagecreatefromjpeg($this->srcImg); break 1; case 1: $this->im = imagecreatefromgif($this->srcImg); break 1; default: die('原图片('.$this->srcImg.')格式不对,只支持PNG、JPEG、GIF。'); } } private function waterimginfo() { //获取水印图片的信息,并载入图片。 $this->waterImg_info = getimagesize($this->waterImg); switch ($this->waterImg_info[2]) { case 3: $this->water_im = imagecreatefrompng($this->waterImg); break 1; case 2: $this->water_im = imagecreatefromjpeg($this->waterImg); break 1; case 1: $this->water_im = imagecreatefromgif($this->waterImg); break 1; default: die('水印图片('.$this->srcImg.')格式不对,只支持PNG、JPEG、GIF。'); } } private function waterpos() { //水印位置算法 switch ($this->pos) { case 0: //随机位置 $this->x = rand(0,$this->srcImg_info[0]-$this->waterImg_info[0]); $this->y = rand(0,$this->srcImg_info[1]-$this->waterImg_info[1]); break 1; case 1: //上左 $this->x = 0; $this->y = 0; break 1; case 2: //上中 $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2; $this->y = 0; break 1; case 3: //上右 $this->x = $this->srcImg_info[0]-$this->waterImg_info[0]; $this->y = 0; break 1; case 4: //中左 $this->x = 0; $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2; break 1; case 5: //中中 $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2; $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2; break 1; case 6: //中右 $this->x = $this->srcImg_info[0]-$this->waterImg_info[0]; $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2; break 1; case 7: //下左 $this->x = 0; $this->y = $this->srcImg_info[1]-$this->waterImg_info[1]; break 1; case 8: //下中 $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2; $this->y = $this->srcImg_info[1]-$this->waterImg_info[1]; break 1; default: //下右 $this->x = $this->srcImg_info[0]-$this->waterImg_info[0]; $this->y = $this->srcImg_info[1]-$this->waterImg_info[1]; break 1; } } private function waterimg() { if ($this->srcImg_info[0] <= $this->waterImg_info[0] || $this->srcImg_info[1] <= $this->waterImg_info[1]){ die('水印比原图大!'); } $this->waterpos(); $cut = imagecreatetruecolor($this->waterImg_info[0],$this->waterImg_info[1]); imagecopy($cut,$this->im,0,0,$this->x,$this->y,$this->waterImg_info[0],$this->waterImg_info[1]); $pct = $this->transparent; imagecopy($cut,$this->water_im,0,0,0,0,$this->waterImg_info[0],$this->waterImg_info[1]); imagecopymerge($this->im,$cut,$this->x,$this->y,0,0,$this->waterImg_info[0],$this->waterImg_info[1],$pct); } private function waterstr() { $rect = imagettfbbox($this->fontSize,0,$this->fontFile,$this->waterStr); $w = abs($rect[2]-$rect[6]); $h = abs($rect[3]-$rect[7]); $fontHeight = $this->fontSize; $this->water_im = imagecreatetruecolor($w, $h); imagealphablending($this->water_im,false); imagesavealpha($this->water_im,true); $white_alpha = imagecolorallocatealpha($this->water_im,255,255,255,127); imagefill($this->water_im,0,0,$white_alpha); $color = imagecolorallocate($this->water_im,$this->fontColor[0],$this->fontColor[1],$this->fontColor[2]); imagettftext($this->water_im,$this->fontSize,0,0,$this->fontSize,$color,$this->fontFile,$this->waterStr); $this->waterImg_info = array(0=>$w,1=>$h); $this->waterimg(); } function output() { $this->imginfo(); if ($this->waterType == 0) { $this->waterstr(); }else { $this->waterimginfo(); $this->waterimg(); } switch ($this->srcImg_info[2]) { case 3: imagepng($this->im,$this->srcImg); break 1; case 2: imagejpeg($this->im,$this->srcImg); break 1; case 1: imagegif($this->im,$this->srcImg); break 1; default: die('添加水印失败!'); break; } imagedestroy($this->im); imagedestroy($this->water_im); } } ?> 。
最后此篇关于PHP 图片水印类代码的文章就讲到这里了,如果你想了解更多关于PHP 图片水印类代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在尝试使用水印并使用复杂过滤器应用 Yadif,但我无法弄清楚如何使用以下语法应用 Yadif ffmpeg -i "source:" -i C:\logo.png -c:v libx264 -p
我正在使用 zubrags PHP 水印脚本(附在下面),它工作得很好,除非我尝试使用 PNG-24 作为我的水印。生成的图像有一个乱码、不透明的水印。我想知道是否有人可以帮助解释我需要在下面的脚本中
基本上,我想拍摄用户从照片库中选择的图像,然后应用水印,即右下角的一个三角形,上面有应用程序名称。我已经在 Photoshop 中使用透明层制作了第二张图像。 我尝试了一个函数,我不记得它的确切名称,
Closed. This question needs to be more focused。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
这个问题我已经发了很多次了,但还是找不到正确的答案。我的目标是加载 PDF(扫描的调查问卷页),用页码标记每个页面,并将每个页面保存在单独的 JPEG 文件中以供以后使用。除了未绘制 NSString
你好,我的代码有问题 $obj = new stdClass(); $obj->cat_id = !empty($_POST['cat_id']) ? $_POST['cat_id']
SO 上有很多类似的问题/答案,但似乎没有一个能解决我的问题。 我的目标是使用 Paperclip 为图像生成“动态水印”(用户头像覆盖在另一张图像上)。我遇到的问题是我无法获得模型的“user_id
我想在我的图片上添加水印,这是我用来截图的代码。有人可以教我如何在图像中添加水印吗?我想在图片的右上角有一个小 Logo 。 我正在尝试研究是否可以实现我在 Canvas 中保留的内容,以便在截取屏幕
我有以下命令: ffmpeg -ss 00:00:30 -i "$i" -i ../audio.mov -map 0:0 -map 1:0 -to 30 -vf "fade=in:0:24, fade
我正在尝试从一些图片以及现有的 mp3(复制)制作幻灯片。图片尺寸不同,但我希望视频输出为 16:9 纵横比和 3840x2160。我也想要水印。重要的是不要拉伸(stretch)图片。 我试过这个代
我已经可以给任何 PDF 加水印,里面的图像,一切正常,但现在我只需要在打印 PDF 时才显示水印......这可能吗?如何? 我当然需要以编程方式执行此操作。 最佳答案 对于 future 的读者,
有没有办法在整个网页上创建浅色透明水印?一个留在屏幕上,即使它滚动?我的想法是创建一个 .PNG 位图并使用带有样式表的 DIV 标签,该样式表将我的 PNG 设置为背景图像,并设置绝对位置。问题是,
是否可以屏蔽应用程序的屏幕截图(电源 + 菜单按钮)?如果没有,此屏幕截图是否有可能收到水印? 问候,克劳迪奥 最佳答案 创建屏幕截图是一种系统行为,您不能覆盖它。 重复 Notification o
所以我一直在寻找如何为图像添加带有 colorBox 的水印,我在谷歌的第一个结果中找到了一个较旧的 colorBox 组,下一个答案是: Jack Moore 10/3/09 Ok, this sh
我有以下 CSS, #duplicateCopy { -webkit-transform:rotate(-20deg); -moz-transform:rotate(-20deg);
我有一个 pdf在它的背景上有水印。当开始扫描以在背景中突出显示带有水印或注释的任何单词时,它会被选中,因为它首先在触摸区域中找到。 我正在使用 CGPDFScanner 扫描文本。 我的问题是如何检
我正在寻找一种在选定字段上放置水印的方法。 那是行不通的-> [select* c_type class:ic watermark "choose type" "a" "b" "c"] 为了放置验证失
我正在尝试向视频添加各种 Gifs/水印,但我无法让它正常工作。 我们假设视频时长为 60 秒,我正在添加一张 Gif 图片。输出看起来正确,声音打开,gif 动画,视频没有停止。这是代码:
我正在尝试使用 FFmpeg 以编程方式将图像或视频叠加在另一个视频的顶部。似乎 AVFilter 可以做到这一点。 有很多关于如何使用命令行执行此操作或类似操作的示例,但是,除了 doc/examp
我正在尝试实现类似 StackOverflow 的水印功能。 我正在使用 jquery-watermark为了这。我遇到的问题是水印文本随着输入元素获得焦点而消失,这在 SO 中不会发生(我也不希望在
我是一名优秀的程序员,十分优秀!