Web Hosting Deals Holiday Logo Design Webcam Chat Website Header Templates Register domain Search Engine Optimisation Web Hosting
Go Back   Talk Mania Forum > Tutorials > PHP / Perl / Java / JavaScript / CGI Tutorials

PHP / Perl / Java / JavaScript / CGI Tutorials PHP / Perl / Java / JavaScript / CGI Tutorials Please do not use this Forum to advertise your site or to link to tutorials.

 Image
Buy Sell Downloads

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-09-2007, 07:38 PM
Junior Member
 
Join Date: Feb 2007
Posts: 8
JinxHacker is on a distinguished road
Water Mark Images

Provided by www.dontplaywithyourself.com


Watermark
Watermark your images using PHP



Do you have an image that you want to keep a copyright on? Putting you logo or a URL of your website on each and every image is a quite a long and tedious process so here is a solution in PHP that will help you make things easier and neater.


Using this script one can specify two images: the image to be watermarked and the watermark itself. If you have several images do not waste time putting your watermark on each and every image. Just use this script and all your images are watermarked


<?php

header('content-type: image/jpeg'); //tells the webserver that the output will be an image

$_image = "snippetcollection.jpg"'; $watermark = 'watermark.png';
$watermark = imagecreatefrompng($watermark); //gets the watermark
//gets the dimensions of the watermark
$watermark_width = imagesx($watermark);
$watermark_height = imagesy($watermark);

$image = imagecreatetruecolor($watermark_width, $watermark_height);
//gets the image to put the watermark on and related information about it
$image = imagecreatefromjpeg($_image);
$size = getimagesize($_image);
$dest_x = $size[0] - $watermark_width - 5;
$dest_y = $size[1] - $watermark_height - 5;

imagecopymerge($image, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height, 100);
imagejpeg($image);
imagedestroy($image);
imagedestroy($watermark);

?>

Reply With Quote
  #2 (permalink)  
Old 04-10-2007, 07:05 AM
Base's Avatar
Senior Member
 
Join Date: Mar 2007
Location: North Yorkshire, UK
Posts: 121
Base is on a distinguished road
Send a message via MSN to Base Send a message via Skype™ to Base
I am sorry but this is the final straw.

I am going to put the rest of this message in block capitals, so that even you can understand this.

DEAR LORD. EXPLAIN YOUR CODE.

Hope you got the message!

Base
__________________
http://www.pointserv.co.uk/gfx/deal_..._pointserv.png
PointServ.co.uk - One of the UK's cheapest webhosting companies.
Reply With Quote
  #3 (permalink)  
Old 04-28-2007, 09:48 PM
Junior Member
 
Join Date: Apr 2007
Posts: 16
quocnhan is on a distinguished road
i still dont get how to use this plaes help
Reply With Quote
  #4 (permalink)  
Old 05-04-2007, 01:21 PM
neo neo is offline
Junior Member
 
Join Date: Feb 2007
Posts: 20
neo is on a distinguished road
thanks man
Reply With Quote
  #5 (permalink)  
Old 05-05-2007, 01:25 AM
Turbocharged_06's Avatar
VIP Member
 
Join Date: Mar 2007
Posts: 151
Turbocharged_06 is on a distinguished road
Quote:
Originally Posted by Base View Post
I am sorry but this is the final straw.

I am going to put the rest of this message in block capitals, so that even you can understand this.

DEAR LORD. EXPLAIN YOUR CODE.

Hope you got the message!

Base
good point
it says "PHP / Perl / Java / JavaScript / CGI Tutorials" not scripts
__________________
OUTLAW-WEB.NET
Reply With Quote
  #6 (permalink)  
Old 05-08-2007, 05:36 PM
Junior Member
 
Join Date: Mar 2007
Posts: 26
djbenz is on a distinguished road
Thumbs up

thanks for the good, it was a great help to me
Reply With Quote
  #7 (permalink)  
Old 05-15-2007, 11:04 PM
Junior Member
 
Join Date: May 2007
Posts: 21
straitlaced is on a distinguished road
nice tutorials

nice tutorials
Reply With Quote
  #8 (permalink)  
Old 05-20-2007, 02:18 PM
Junior Member
 
Join Date: Mar 2007
Posts: 20
tere is on a distinguished road
Thanks. It easy to make it for ant other file format.
Reply With Quote
  #9 (permalink)  
Old 05-24-2007, 08:50 PM
Junior Member
 
Join Date: May 2007
Posts: 26
kukutyin is on a distinguished road
thanks, it's very useful
Reply With Quote
  #10 (permalink)  
Old 05-24-2007, 09:36 PM
Junior Member
 
Join Date: Mar 2007
Posts: 22
Puffi is on a distinguished road
Nice Work very good

Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT +2. The time now is 02:01 AM.


Fake ID

Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC8
Forums Copyright © Talk-Mania.com