Quote:
Originally Posted by SIINSI
Very cool, However it is not working in 3.0.1
This is what I have at the end of my attachment.php
echo $attachmentinfo["$imagetype"];
}
Any ideas on how to get this working with 3.0.1?
Thanks,
Miguel
|
This is a cool hack works well but for it to work on 3.0.0 and by the look of it 3.0.1 you will need to use this code.
find:
Code:
echo $attachmentinfo["$imagetype"];
And replace it with:
Code:
if (strpos($attachmentinfo['mimetype'],"image/jp")) { $isjpg = 1; }
if ($isjpg && !$_GET['thumb']) {
$filename = "/home/your/path/watermark.png"; // use a PNG-24 to preserve transparency!
$im = imagecreatefromstring($attachmentinfo['filedata']);
imagealphablending($im, true);
$watermark = imagecreatefrompng($filename);
$y = imagesy($im) - imagesy($watermark);
$w = imagesx($watermark);
$h = imagesy($watermark);
imagecopy($im, $watermark, 0, $y, 0, 0, $w, $h);
imagejpeg($im, "", 80);
} else {
echo $attachmentinfo["$imagetype"];
}
Remembering to change your /home/your/path/watermark.png
[high]* Beermonster clicks install[/high]