search
Homephp教程PHP源码PHP adds watermarks at different locations according to the color boundary of the image

function add_wm($nmw_water, $src_file, $output_file, $x, $y) {      
    if(file_exists($output_file))      
        return;      
                      
    $w1 = MagickGetImageWidth($nmw_water);      
    $h1 = MagickGetImageHeight($nmw_water);      
                      
    $nmw =NewMagickWand();      
    MagickReadImage($nmw, $src_file);      
                      
    // 默认的加水印位置调整      
    $lt_w = 50;      
    $lt_h = 50;      
                      
    if($x == 0){      
        $w = MagickGetImageWidth($nmw);      
        $h = MagickGetImageHeight($nmw);      
                      
        $x = $w;      
        $y = $h;      
    }else{      
        // 根据具体情况调整      
        $lt_w = 30;      
        $lt_h = 40;      
    }      
                      
    MagickCompositeImage($nmw, $nmw_water, MW_OverCompositeOp, $x - $w1 - $lt_w, $y - $h1 - $lt_h);      
    MagickWriteImage($nmw, $output_file);      
                      
    DestroyMagickWand($nmw);              
}      
                      
// 还是groovy的eachFileRecurse好用啊      
function add_wm_recurse($nmw_water, $to_dir, $output_dir, $arr) {      
    $dp = dir($to_dir);      
    while($file=$dp->read()){      
        if($file != '.' && $file != '..'){      
                  
                  
            if(is_dir($to_dir . '/' . $file)){      
                mkdir($output_dir . '/' . $file);      
                add_wm_recurse($nmw_water, $to_dir . '/' . $file, $output_dir . '/' . $file, $arr);      
            }else{      
                if(!array_key_exists($to_dir . '/' . $file, $arr)){      
                    continue;      
                  
                }      
                      
                $sub_arr = $arr[$to_dir . '/' . $file];      
                if($sub_arr){      
                    $x = intval($sub_arr[0]);      
                    $y = intval($sub_arr[1]);      
                    add_wm($nmw_water, $to_dir . '/' . $file, $output_dir . '/' . $file, $x, $y);      
                }      
            }      
        }      
    }      
    $dp->close();      
}      
                      
$to_dir = './resized';      
$output_dir = './output';      
                      
// 这个是我用java的ImageIO遍历图片像素获取的符合裤子颜色的区域的坐标array(posX, posY)      
$arr = array(      
    array(50, 50)      
);      
                      
$water = './water.png';      
$nmw_water =NewMagickWand();      
MagickReadImage($nmw_water, $water);      
                      
add_wm_recurse($nmw_water, $to_dir, $output_dir, $arr);      
                      
DestroyMagickWand($nmw_water);

Statement
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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.