Basically, I have 2 php script. 1 of the php scripts is to display and the other 1 is the watermark function.

I use this PHP to display the image with watermark:

<img src="watermark1.php?image=photo.jpg>

This is my watermark1.php:

<?php
// this tells the browser to render jpg image
header('content-type: image/jpeg'); 

// getting the image name from GET variable
$image = $_GET['image']; 

// creating png image of watermark
$watermark = imagecreatefrompng('watermark.png');   

// getting dimensions of watermark image
$watermark_width = imagesx($watermark);
$watermark_height = imagesy($watermark);  

// creating jpg from original image
$image_path =  $image;
$image = imagecreatefromjpeg($image_path);
//something went wrong
if ($image === false) {
    return false;
}
// getting the dimensions of original image
$size = getimagesize($image_path);
// placing the watermark 5px from bottom and right
$dest_x = $size[0] - $watermark_width - 5;
$dest_y = $size[1] - $watermark_height - 5;
// blending the images together
imagealphablending($image, true);
imagealphablending($watermark, true);
// creating the new image
imagecopy($image, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height);
imagejpeg($image);
// destroying and freeing memory
imagedestroy($image);
imagedestroy($watermark);
?>

However, the watermarked image could not be displayed. I heard about GDLibrary and ImageMagicK but i have no idea what are these 2 about. Is there a way to add watermark just by adding php codes or is it a must to import the GDLibrary/ImageMagicK.

Thanks for taking your time.

link|improve this question
feedback

2 Answers

ImageMagick is a software for image manipulation. It is more powerful than GD, which works a lot worse for some things (for example image scaling is pretty much better done by ImageMagick). For PHP wrapper around ImageMagick take a look at this link, and for GD, take a look at this link. Also, if you decide to go with ImageMagick, make sure that you meet the requirements (you have them in the posted link)...bacisally you need ImageMagick installed on the server.

link|improve this answer
Hi! Thanks for your help! I will be using GD as I had just downloaded it! =) – dada050909 Jan 12 at 5:31
feedback

GDLibrary is a PHP extension which adds image generating functions to PHP, such as imagejpeg or imagecopy etc. In order to generate images, you have to make sure GD is installed and enabled on your server.

Update

Here you can find information about installing GD.

link|improve this answer
Hi, thanks for your reply! I have downloaded GDLibrary! How do I enable the GD and how do I import this GD to my project? – dada050909 Jan 12 at 3:36
I updated. Visit the link above. – David Frank Jan 12 at 9:53
Hi thanks, it was solved. :) – dada050909 Jan 27 at 6:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.