PHP水印比例调整大小

时间:2014-04-19 09:04:04

标签: php watermark

:) 我实际上正在制作在线相册并完成它,我需要创建一个水印脚本。 但它肯定不起作用!我真的不明白为什么。 我需要按比例调整水印大小;我做了所有的比率计算,一切看起来都很清楚,但没有任何作用,请帮助我!

以下是代码:

<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('531a1251532b0.jpg');

// get the height/width of the stamp image
$sx = imagesx($stamp);
$sy = imagesy($stamp);
$syimg = imagesy($im);

//percentage of the size(4%)
$percent = 4/$syimg;
$sx2 = $sx * $percent;
$sy2 = $sy * $percent;

$posx = (imagesx($im) / 2) - $sx2;
$posy = (imagesy($im) / 2) - $sy2;
//checking (everything is ok!)
//echo "per: ". $percent;
//echo "<br>\n sx: ". $sx2;
//echo "<br>\n posx: ". $posx;
//echo "<br>\n sy: ". $sy2;
//echo "<br>\n posy: ". $posy;
//echo "<br>\n syimg : ". $syimg;
//echo "<br>\n sximg : ". imagesx($im);

// Copy the stamp image onto the photo 
// width to calculate positioning of the stamp.
imagecopy($im, $stamp, round($posx), round($posy), 0, 0, round($sx2), round($sy2));

// Output and free memory
header('Content-type: image/jpg');
imagepng($im);
imagedestroy($im);
?>

感谢您将来的回复!

1 个答案:

答案 0 :(得分:1)

感谢Ryan Vincent和simON的帮助! :) 我终于(经过几个小时和许多头痛)找到了解决方案,正如你可以看到的那样,我发现矿井更简单:

        <?php
        if(empty($_GET['i'])){

        //displays a error image if GET['i'] is empty

        $im = imagecreatefrompng("scr/m/e.png");

        //keeps the transparency of the picture
        imagealphablending( $im, false );
        imagesavealpha( $im, true );

        // Output and free memory
        header('Content-Type: image/png');
        imagepng($im);
        imagedestroy($im);

        }elseif(!file_exists('img/'.$_GET['i'])){

        //displays an error image if the file doesn't exists in the img folder
        $im = imagecreatefrompng("scr/m/e.png");

        //keeps the transparency of the picture
        imagealphablending( $im, false );
        imagesavealpha( $im, true );

        // Output and free memory
        header('Content-Type: image/png');
        imagepng($im);
        imagedestroy($im);
        }else{
        // Load the stamp and the photo to apply the watermark to
        $stamp = imagecreatefrompng('scr/m/w.png');
        $get = $_GET['i'];
        $im = imagecreatefromjpeg('img/'.$get);

        // get the height/width of the stamp image
        $sx = imagesx($stamp);
        $sy = imagesy($stamp);
        $sximg = imagesx($im);

        //percentage of the size(5%)
        $percent = $sximg * 0.15;

        //positionnig the stamp to the center
        $posx = round(imagesx($im) / 2) - round($percent / 2);
        $posy = round(imagesy($im) / 2) - round($percent / 2);

        //Create the final resized watermark stamp
        $dest_image = imagecreatetruecolor($percent, $percent);

        //keeps the transparency of the picture
        imagealphablending( $dest_image, false );
        imagesavealpha( $dest_image, true );
        //resizes the stamp
        imagecopyresampled($dest_image, $stamp, 0, 0, 0, 0, $percent, $percent, $sx, $sy);

        // Copy the resized stamp image onto the photo

        imagecopy($im, $dest_image, round($posx), round($posy), 0, 0, $percent, $percent);

        // Output and free memory
        header('Content-type: image/jpg');
        imagepng($im);
        imagedestroy($im);
        }
        ?>

再次感谢您的回复。我希望我的剧本可以帮助所有人,就像我一样! :) 晚安(我是法国人,晚上是:3)!