I currently have this watermark to print a text on my photos. The sad thing is that I can't use it on my personal website, because it drains too much memory from PHP. My question is now how I can make this function to not drain to much memory? The memory_limit is set to 64M at my web hosting.

function watermark($source, $text, $destination) {
    list($width, $height) = getimagesize($source);

    $image_p = imagecreatetruecolor($width, $height);
    $image = imagecreatefromjpeg($source);
    imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width, $height);
    $black = imagecolorallocate($image_p, 0, 0, 0);
    $white = imagecolorallocate($image_p, 255, 255, 255);
    $font = 'fonts/acknowtt.ttf';
    $font_size = 10;
    imagettftext($image_p, $font_size, 0, 16, 21, $black, $font, $text);
    imagettftext($image_p, $font_size, 0, 15, 20, $white, $font, $text);

    if($destination <> '') {
        imagejpeg($image_p, $destination, 100);
    } else {
        header('Content-Type: image/jpeg');
        imagejpeg($image_p, null, 100);
    }

    imagedestroy($image);
    imagedestroy($image_p);
}

Thanks in advance.

link|improve this question

78% accept rate
Isn't memory usage proportional to the size of the image you're loading? – nickb Nov 4 '11 at 13:01
I have no idea about that :/ – Erik Edgren Nov 4 '11 at 13:11
I believe you'd be holding the entire image in memory whilst you're manipulating it - effectively you're hold 2 images in memory here ($image and $image_p) - I suspect if you call imagedestroy($image) as soon as you've copied it with imagecopyresampled() (and possibly unset($image) to be on the safe side) you should free up some memory... – CD001 Nov 4 '11 at 13:27
You mean like this: imagecopyresampled(...) {new row} imagedestroy($image); {new row} unset($image);? Na, same error - Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 15360 bytes):/ – Erik Edgren Nov 4 '11 at 13:38
feedback

1 Answer

up vote 2 down vote accepted

Make an image out of your watermark then try this:

http://php.net/manual/en/image.examples.merged-watermark.php

EDIT: This code works well on my personal server.

<?php
//This function creates a watermark image from the text you supply 
//and creates a file called watermark.jpg
//You might need to enable write access for the owner (chmod 644)
function watermark($text) {
    //adjust the size of your watermark, here it's 300x100
    $image_p = imagecreatetruecolor(300, 100);
    $black = imagecolorallocate($image_p, 0, 0, 0);
    $white = imagecolorallocate($image_p, 255, 255, 255);
    //change this to your font file
    $font = 'arial.ttf';
    $font_size = 10;
    imagettftext($image_p, $font_size, 0, 16, 21, $black, $font, $text);
    imagettftext($image_p, $font_size, 0, 15, 20, $white, $font, $text);
    imagejpeg($image_p, 'watermark.jpg', 100);
    //this will save some memory
    imagecolordeallocate($image_p, $black);
    imagecolordeallocate($image_p, $white);
    imagedestroy($image_p);
}
//this function merges the watermark with the image of your choosing
function merge_image($source,$destination){
    //set the memory limit to handle your image, my image size is 639KB on disc
    //but this value is calculated like this (from http://us2.php.net/manual/en/function.imagecreatefromjpeg.php):
    //The memory required to load an image using imagecreatefromjpeg() is a function
    //of the image's dimensions and the images's bit depth, multipled by an overhead.
    //It can calculated from this formula:
    //Num bytes = Width * Height * Bytes per pixel * Overhead fudge factor
    //Where Bytes per pixel = Bit depth/8, or Bits per channel * Num channels / 8.
    ini_set('memory_limit', '100M');
    list($w,$h)=getimagesize($source);
    $image=imagecreatefromjpeg($source);
    $watermark=imagecreatefromjpeg('watermark.jpg');
    list($ww,$wh)=getimagesize('watermark.jpg');
    //HERE you need to adjust some values to get the watermark where you want it to be
    //x and y position of watermark in new image
    $x=280;
    $y=5;
    //opacity of watermark
    $o=100;
    //get the same black color from the watermark
    $black = imagecolorallocate($watermark,0,0,0);
    //set that color as transparent
    imagecolortransparent($watermark,$black);
    imagecopymerge($image, $watermark, $x, $y, 0, 0, $ww, $wh, $o);
    imagejpeg($image, $destination, 100);
}
//create the watermark
watermark("09-26-1998");
//merge with 1.jpg (in the same folder) and name it newimage.jpg
merge_image("./1.jpg","newimage.jpg");
?>
link|improve this answer
Thanks, but if my function can be optimized and there for works on my web host, I would be very glad. The reason why I will so strongly use text based watermark, is because I set the date the photo where taken together with the copyright. – Erik Edgren Nov 4 '11 at 13:13
try modifying the maximum memory allowed with: ini_set('memory_limit', '100M'); I can give you full code if you need it. – buster Nov 4 '11 at 15:31
I have already tried change the memory_limit with no luck. Is your code the modified function of my watermark function? Give me the code anyway :) – Erik Edgren Nov 4 '11 at 16:01
let me know what happens – buster Nov 4 '11 at 16:59
That worked excellent :D Many thanks! But how do I make the watermark.jpg's background transparent? – Erik Edgren Nov 4 '11 at 17:28
feedback

Your Answer

 
or
required, but never shown

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