Jump to content

watermarking & resize without saving


gerkintrigg

Recommended Posts

Hello everyone.

I'd like some advice about watermarking and resizing.

i have a script that will do almost all i need, but it generates a new image and saves it in a "result" folder each time the script runs, and it's bunging up my server.

 

Would you suggest to use a cron to clear the folder on a daily basis or change the script so the output image is downloaded then deleted?

 

Any help'd be much appreciated.

 

Regards,

Neil

Link to comment
Share on other sites

if you post the code you use to create the image we can help..

 

or just create anothe file called image.php

give it a image header and read the image inn..

 

 

image.php?src=myimage.jpg

you also need the image "watermark.png" (reason for the png is the transparency)

<?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']);  
$size = getimagesize($_GET['src']);  
$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);  

?>

 

Link to comment
Share on other sites

you're probably right...

so you think that I should just resize and watermark once and then reference the re-sized, watermarked image?

 

 

Exactly. An easy solution is naming the new file something like "originalname_thumb.jpg" then when you run image.php, it will only resize and watermark if the file does not exist already. Post your code!

Link to comment
Share on other sites

  • 1 month later...

Ahh ok, this will work..

(kinda forgot the alphachannel)

 

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);  
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.