php在s3导入的图像上添加水印

时间:2015-04-16 12:38:00

标签: php amazon-s3 watermark php-gd

我试图在图像上添加水印。

图像和水印图像都是从aws s3导入的。

我试图这样做

      $watermark = tempnam(sys_get_temp_dir(), 'watermark.png');

        //save the file from s3 storage to the temporary file
        $content=$this->s3Manager->getFile('watermark.png',$this->verb,$watermark);
    // Set the margins for the stamp and get the height/width of the stamp image
        $marge_right = 10;
        $marge_bottom = 10;

list($watermark_width,$watermark_height) = getimagesize($watermark);

//Get the width and height of your image - we will use this to calculate where the watermark goes
$size = getimagesize($tempFile);

//Calculate where the watermark is positioned
//In this example, it is positioned in the lower right corner, 15px away from the bottom & right edges
$dest_x = $size[0] - $watermark_width - 15;
$dest_y = $size[1] - $watermark_height - 15;


imagecopy($tempFile, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height);
//Finalize the image:


        imagejpeg($tempFile);


        return $tempFile;

imagecopy方法失败了

  

" imagecopy()期望参数1是资源,字符串在。

中给出

我检查了dest_y和dest_x是否成功导入图像,看起来没问题。

1 个答案:

答案 0 :(得分:1)

正如错误所说,imagecopy想要一个资源。我假设tempfile是一个字符串。你可以这样做

$res = imagecreatefrompng($tempfile)

并将其传递给imagecopy