<rss version="2.0">
		<channel>
			<title>Plogger Support Forum - How can i WATERMARK</title>
			<lastBuildDate>Sun, 19 Apr 2026 08:55:01 +0000</lastBuildDate>
			<link>http://www.plogger.org/forum/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.1.10</generator>
			<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1157#Comment_1157</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1157#Comment_1157</guid>
		<pubDate>Wed, 23 Nov 2005 20:12:56 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[I put this code that derek did but its not working where should i put it exactly where in between in the script in plog-function or where :s.. its not precise enough :s.. cuz it doesnt show up even though ive put<br />	<br />          if ($thumb_config['filename_prefix'] != '') { // add only for large thumbs<br />	$phpThumb-&gt;fltr = array(&quot;wmi|images/m-icon.png|BR|50|5&quot;);<br />	}<br /><br />but yet it wont appear on the photos :s..]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1162#Comment_1162</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1162#Comment_1162</guid>
		<pubDate>Wed, 23 Nov 2005 23:22:46 +0000</pubDate>
		<author>ddejong</author>
		<description>
			<![CDATA[Do you have the watermark in images/m-icon.png? It may sound silly, but that would be my first check. Then take out the if statement, and see if when there's no conditionality at all if the watermark is present. If it works then, you know our test is causing the problem but that watermarking works.<br /><br />Also check to see that it's around line 80, right after this:<br /><br />		// set data<br />		$phpThumb-&gt;src = $source_file_name;<br />		$phpThumb-&gt;w = $thumb_config['size'];<br />		$phpThumb-&gt;q = $config['compression'];<br /><br />If that doesn't work, post again and we'll find a solution.<br /><br />Regards,<br />Derek]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1169#Comment_1169</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1169#Comment_1169</guid>
		<pubDate>Thu, 24 Nov 2005 08:20:16 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[ddejong it looks like this<br /><br />		// set data<br />		$phpThumb-&gt;setSourceFileName($source_file_name);<br />		$phpThumb-&gt;w = $thumb_config['size'];<br />		$phpThumb-&gt;q = $config['compression'];<br />		if ($thumb_config['filename_prefix'] != '') { // add only for large thumbs<br />		$phpThumb-&gt;fltr = array(&quot;wmi|gallery/images/m-icon.png|BR|50|5&quot;);<br />}<br /><br />and my web is <br /><br />http://www.dnsmerit.com/~merithep/ <br /><br />and the gallery is on merithep/gallery<br /><br />and the images is on merithep/gallery/images<br /><br />so the code should be right i tested both gallery/imges/m-icon.png<br /><br />and also just images/m-icon.png but no progress :S]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1170#Comment_1170</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1170#Comment_1170</guid>
		<pubDate>Thu, 24 Nov 2005 08:22:05 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[http://www.dnsmerit.com/~merithep/gallery/images/m-icon.png]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1177#Comment_1177</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1177#Comment_1177</guid>
		<pubDate>Thu, 24 Nov 2005 14:22:09 +0000</pubDate>
		<author>ddejong</author>
		<description>
			<![CDATA[Try replacing this:<br /><br />if ($thumb_config['filename_prefix'] != '') { // add only for large thumbs<br />$phpThumb-&gt;fltr = array(&quot;wmi|images/m-icon.png|BR|50|5&quot;);<br />}<br /><br />With this:<br />$phpThumb-&gt;fltr = array(&quot;wmi|images/m-icon.png&quot;);<br /><br />It will add the watermarks to everything; but start by making sure we know the watermark is in the right directory (the path should be relative to Plogger), and use the default values for corner, opacity and margin. Get this working first, then start adding the conditional statement and extra parameters to get it working how you want.<br /><br />If it still doesn't work, you can post again or email me and I'll try to help off-board.<br /><br />Regards,<br />Derek]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1179#Comment_1179</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1179#Comment_1179</guid>
		<pubDate>Thu, 24 Nov 2005 14:30:18 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[// set data<br />		$phpThumb-&gt;setSourceFileName($source_file_name);<br />		$phpThumb-&gt;w = $thumb_config['size'];<br />		$phpThumb-&gt;q = $config['compression'];<br />		$phpThumb-&gt;fltr = array(&quot;wmi|images/m-icon.png&quot;);<br /><br />did it but still no appearing :s.. and i know its right folder i mean its<br /><br />http://www.dnsmerit.com/~merithep/gallery/images/m-icon.png<br /><br />gallery = plogger<br /><br />so this should be right :S... :/]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1180#Comment_1180</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1180#Comment_1180</guid>
		<pubDate>Thu, 24 Nov 2005 14:33:20 +0000</pubDate>
		<author>ddejong</author>
		<description>
			<![CDATA[Make absolutely certain the watermark is in that folder remotely; if you're using something like Dreamweaver or NVu, you can confuse yourself with local and remote views. Then put it right in the main Plogger directory, with gallery.php. Then just use &quot;m-icon.png&quot; as the watermark path.<br /><br />Additionally, are you sure your server has GD2? It's very likely, but none of the filters in phpThumb work with GD1.<br /><br />Regards,<br />Derek]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1184#Comment_1184</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1184#Comment_1184</guid>
		<pubDate>Thu, 24 Nov 2005 15:11:00 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[all i know is that the server is hostmerit.com and it has<br /><br />GD / ImageMagick Software<br /><br />installed on it :/....<br /><br />btw: tried changing just to &quot;m-icon.png&quot; no &quot;images/m-icon.png&quot; in plog-function and changed the image destination still no progress :/... and from the looks of it GD is 2.0.*** Compatible something :/]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1185#Comment_1185</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1185#Comment_1185</guid>
		<pubDate>Thu, 24 Nov 2005 15:17:33 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[I did a phpinfo check and its like this<br /><br />GD Support 	enabled 	<br />GD Version 	bundled (2.0.28 compatible) 	<br />FreeType Support 	enabled 	<br />FreeType Linkage 	with freetype 	<br />GIF Read Support 	enabled 	<br />GIF Create Support 	enabled 	<br />JPG Support 	enabled 	<br />PNG Support 	enabled 	<br />WBMP Support 	enabled 	<br />XBM Support 	enabled]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1186#Comment_1186</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1186#Comment_1186</guid>
		<pubDate>Thu, 24 Nov 2005 16:00:01 +0000</pubDate>
		<author>ddejong</author>
		<description>
			<![CDATA[Hmm. I think it's time to email me off-list, Plebbi. I'm happy to help, but it looks like the solution might get a little more involved.<br /><br />Regards,<br />Derek]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1193#Comment_1193</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1193#Comment_1193</guid>
		<pubDate>Thu, 24 Nov 2005 18:24:22 +0000</pubDate>
		<author>ddejong</author>
		<description>
			<![CDATA[Poor Plebbi. I'm really sorry, but this just occurred to me.<br /><br />When you create a thumbnail, Plogger stores a copy in /thumbs, so that every time you browse a gallery, it can use the thumbs from last time. There are some simple checks, that the size is still the right size and whatnot; if they're the same, it uses the cached thumbnail. I forgot to mention that when you change the watermarking, you have to delete all the thumbnails to force Plogger to recreate them. Then it will use the watermark in phpThumb when creating the new thumbnail. That's why it wasn't working -- phpThumb wasn't ever generating thumbs because they already existed.<br /><br />I think that should solve the problem. Just clean out /thumb.<br /><br />Regards,<br />Derek]]>
		</description>
	</item>
	<item>
		<title>How can i WATERMARK</title>
		<link>http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1199#Comment_1199</link>
		<guid isPermaLink="false">http://www.plogger.org/forum/comments.php?DiscussionID=227&amp;Focus=1199#Comment_1199</guid>
		<pubDate>Fri, 25 Nov 2005 03:33:06 +0000</pubDate>
		<author>Plebbi</author>
		<description>
			<![CDATA[I erased /thumbs and used this coding<br />		// set data<br />		$phpThumb-&gt;setSourceFileName($source_file_name);<br />		$phpThumb-&gt;w = $thumb_config['size'];<br />		$phpThumb-&gt;q = $config['compression'];<br />		$phpThumb-&gt;fltr = array(&quot;wmi|images/m-icon.png&quot;);<br />and had the m-icon.png in images/m-icon.png <br /><br />and had to create all the thumbs again by viewing the images on the web and no WATERMARKING :/]]>
		</description>
	</item>
	
		</channel>
	</rss>