• Welcome to DNForum.com™ - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars
    If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the oldest global domain name community on the internet and continues to grow every day. There are over 45,000 domainers on DNForum doing everything from buying domains, selling domains, using our free in-house built tools, learning about domains and discussing domains. Take a minute and Register.

Wanted: Service Software to watermark images?

Status
Not open for further replies.

SUNNY ARSLAN

New Member
Legacy Platinum Member
Joined
Feb 17, 2006
Messages
82
Reaction score
0
I am going to start a wallpapers site and I want to watermark my wallpapers with my site name at the right bottom. I want you people to recommend me some good software so that I can easily watermark my images in batch mode without losing the quality of the wallpapers.
 
Simply Overlay your Images with a transparent PNG image with your watermark on it.

Something like this will do it simply. First Create your WaterMark image. Create a file called makeimage.php and use the image tag


PHP:
<img src="makeimg.php?photo=original_photo.jpg">

PHP:
<?php


header("Content-Type: image/jpeg");
//(because the script outputs picture)


$transparency = 40; //watermark's transparency (0-100)


//source photo
$source_photo = stripslashes($_GET['photo']);
$photo = imagecreatefromjpeg($source_photo);

//watermark
$watermark = imagecreatefrompng('watermark.png');
$watermark_width = imagesx($watermark);
$watermark_height = imagesy($watermark);

//location of the watermark on the source image
$size = getimagesize($source_photo);
$dest_x = ($size[0] - $watermark_width) / 2;
$dest_y = ($size[1] - $watermark_height) / 2;

//make the image (merge source image with watermark)
imagecopymerge($photo, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height, $transparency);

//output the image
imagejpeg($photo);

//free memory
imagedestroy($photo);
imagedestroy($watermark);

?>
 
you can manipulate the script above to process an entire directory and output the watermarked files to a new folder.
 
as in topic you have mentioned software.. I recommend photoshop.. if you want to do it manually..

Try this watermark tutorial

Hope that helps...

..:: peace ::..
Jeba
 
Thanks for the help CoolJeba.

The thing I am looking is to watermark lot of images and want to do in Batch Mode.
 
Status
Not open for further replies.
Back
Top Bottom