将水印图像添​​加到上传的图像

时间:2016-02-14 15:18:53

标签: php image upload watermark

我使用此代码将png图像作为水印添加到上传的图像但结果不是图像而且不想使用header()我希望代码继续执行其他php查询无需导航到另一个页面即可显示图像。图片上传但没有水印,标题()不会发布任何图片只是一个小灰色方块

$path = "../large/";
$num = substr(md5(mt_rand(1,9999999999)),0,9);    
$new_name = $path.$num.".jpg";
$image = $num.".jpg";
move_uploaded_file($img_tmpname,$new_name);
$image = imagecreatefromjpeg($new_name);
$logoImage = imagecreatefrompng("images/watermark.png");
imagealphablending($logoImage, true);
$imageWidth=imagesx($image);
$imageHeight=imagesy($image); 
$logoWidth=imagesx($logoImage);
$logoHeight=imagesy($logoImage);

imagecopy(
  // destination
  $image,
  // source
  $logoImage,
  // destination x and y
  $imageWidth-$logoWidth, $imageHeight-$logoHeight,
  // source x and y
  0, 0,
  // width and height of the area of the source to copy
  $logoWidth, $logoHeight);

// Set type of image and send the output
header("Content-type: image/png");
imagePng($image);

// Release memory
imageDestroy($image);
imageDestroy($imageLogo);

1 个答案:

答案 0 :(得分:2)

我使用下面的代码测试了这个,这个工作正常。显然我已经使用了与我的测试系统相关的路径,但希望它应该有所帮助。

上传和处理上传文件时最重要且经常被遗忘的事情之一是表单的enctype - 所以我将测试表单作为示例。

如果要保存图像并使用水印显示图像,请使用imagepng函数两次,一次使用文件名,另一次使用文件名。

<form method='post' action='/test/so/wtrmarkimg.php' enctype='multipart/form-data'>
    <h1>Image uploader - Watermark</h1>
    <input type='file' name='image' />
    <input type='submit' value='Submit' />
</form>

<?php

    #$path = "../large/";

    $path='c:/temp/';/* output path for images generated */
    $watermarksrc=realpath( 'c:/wwwroot/images/watermark.png' );    

    if( isset( $_FILES['image'] ) ){

        $img_tmpname=$_FILES['image']['tmp_name'];


        $num = substr( md5( mt_rand( 1,9999999999 ) ),0,9);    
        $new_name = $path.$num.".jpg";
        $image = $num.".jpg";

        if( move_uploaded_file( $img_tmpname, $new_name ) ){

            $image = imagecreatefromjpeg( $new_name );
            $logoImage = imagecreatefrompng( $watermarksrc );
            imagealphablending( $logoImage, true );

            $imageWidth=imagesx($image);
            $imageHeight=imagesy($image); 
            $logoWidth=imagesx($logoImage);
            $logoHeight=imagesy($logoImage);

            imagecopy(
              $image,
              $logoImage,
              $imageWidth-$logoWidth, $imageHeight-$logoHeight,
              0, 0,
              $logoWidth, $logoHeight );

            // Set type of image and send the output
            header("Content-type: image/png");
            imagepng( $image );/*display image with watermark */
            @imagepng( $image, $new_name );/* save image with watermark */

            // Release memory
            imagedestroy( $image );
            imagedestroy( $imageLogo );
        }
    } else {
        echo "ERROR";
        print_r($_FILES);   
    }
?>