程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP根據圖片色階確定位置打水印

PHP根據圖片色階確定位置打水印

編輯:關於PHP編程

直接分享源碼

  1. <?php    
  2.     function add_wm($nmw_water, $src_file, $output_file, $x, $y) {    
  3.         if(file_exists($output_file))    
  4.             return;    
  5.     
  6.         $w1 = MagickGetImageWidth($nmw_water);    
  7.         $h1 = MagickGetImageHeight($nmw_water);    
  8.     
  9.         $nmw =NewMagickWand();    
  10.         MagickReadImage($nmw, $src_file);    
  11.     
  12.         // 默認的加水印位置調整    
  13.         $lt_w = 50;    
  14.         $lt_h = 50;    
  15.     
  16.         if($x == 0){    
  17.             $w = MagickGetImageWidth($nmw);    
  18.             $h = MagickGetImageHeight($nmw);    
  19.     
  20.             $x = $w;    
  21.             $y = $h;    
  22.         }else{    
  23.             // 根據具體情況調整    
  24.             $lt_w = 30;    
  25.             $lt_h = 40;    
  26.         }    
  27.     
  28.         MagickCompositeImage($nmw, $nmw_water, MW_OverCompositeOp, $x - $w1 - $lt_w, $y - $h1 - $lt_h);    
  29.         MagickWriteImage($nmw, $output_file);    
  30.     
  31.         DestroyMagickWand($nmw);            
  32.     }    
  33.     
  34.     // 還是groovy的eachFileRecurse好用啊    
  35.     function add_wm_recurse($nmw_water, $to_dir, $output_dir, $arr) {    
  36.         $dp = dir($to_dir);    
  37.         while($file=$dp->read()){    
  38.             if($file != . && $file != ..){    
  39.                 if(is_dir($to_dir . / . $file)){    
  40.                     mkdir($output_dir . / . $file);    
  41.                     add_wm_recurse($nmw_water, $to_dir . / . 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved