Jump to content

[SOLVED] Using More Than One Water Mark


phpQuestioner

Recommended Posts

Can you create a gd image watermark with 2 separate images? If so, does anyone know where I can see a good example of this. Right now I have a script that creates a image and uses another image to watermark it. But I want to be able to use two separate images to create one watermark on the gd image. The base image is from my file manager; so  I am using the imagecreatefrompng() function. Does any one know of a way to accomplish 2 different watermark images as one over the base image?

Link to comment
https://forums.phpfreaks.com/topic/71482-solved-using-more-than-one-water-mark/
Share on other sites

Heres a basic watermarker..

just use imagecopy to create 2 watermarks in one or run this twice..

 

<?php
header('content-type: image/jpeg');  
$watermark = imagecreatefrompng('watermark.png');  
$watermark_width = imagesx($watermark);  
$watermark_height = imagesy($watermark);  
$image = imagecreatetruecolor($watermark_width, $watermark_height);

$image = imagecreatefromjpeg($_GET['src']);  
imagealphablending($image, true);
$size = getimagesize($_GET['src']);  
$dest_x = $size[0] - $watermark_width - 5;  
$dest_y = $size[1] - $watermark_height - 5;  
imagecopy($image, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height); 

imagejpeg($image);
imagedestroy($image);  
imagedestroy($watermark);  
?>

 

any problem just ask

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.