Results 1 to 2 of 2
-
25th Jul 2011, 05:00 PM #1OPBannedWebsite's:
WarezRelease.org ThatHosting.coWatermark Image On Upload
Hi
ive written the function:
PHP Code://Watermark the image...
function add_watermark($image) {
$overlay = "site_images/imgcafe_watermark.gif";
$w_offset = 0;
$h_offset = 0;
$extension = strtolower(substr($image, strrpos($image, ".") +1));
switch ($extension)
{
case 'jpg':
$background = imagecreatefromjpeg($image);
break;
case 'gif':
$background = imagecreatefromgif($image);
break;
case 'png':
$background = imagecreatefrompng($image);
break;
default:
die("Image type not supported");
}
$base_width = imagesx($background);
$base_height = imagesy($background);
imagealphablending($background, true);
$overlay = imagecreatefromgif($overlay);
imagesettile($background, $overlay);
// Make the image repeat
imagefilledrectangle($background, 0, 0, $base_width, $base_height, IMG_COLOR_TILED);
header('Content-type: image/png');
imagepng($background);
}
any help?>Chris2k Reviewed by Chris2k on . Watermark Image On Upload Hi ive written the function: //Watermark the image... function add_watermark($image) { $overlay = "site_images/imgcafe_watermark.gif"; $w_offset = 0; Rating: 5
-
25th Jul 2011, 05:23 PM #2Teh GFX Whore! ^.^
check PM now
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Need script for image watermark
By Wadibahi in forum Technical Help Desk SupportReplies: 11Last Post: 15th Feb 2012, 03:29 AM -
adding watermark to image
By ibby in forum General DiscussionReplies: 9Last Post: 9th Jan 2012, 12:50 PM -
Want to Erase Watermark from any Image or Video
By Pettrious in forum General DiscussionReplies: 15Last Post: 30th May 2011, 05:18 AM -
Image centre - Watermark option
By __dark__ in forum Webmaster DiscussionReplies: 9Last Post: 27th Aug 2009, 09:12 PM
themaManager - edit and manage...
Version 4.04 released. Open older version (or...