<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Lame</title>
	<atom:link href="http://blog.schouman.info/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.schouman.info</link>
	<description>No more blogging!</description>
	<lastBuildDate>Thu, 07 Jun 2012 08:31:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>Comment on Insert watersign to all your images using php by Aneeq</title>
		<link>http://blog.schouman.info/index.php/2012/02/22/insert-watersign-to-all-your-images-using-php/comment-page-1/#comment-3695</link>
		<dc:creator>Aneeq</dc:creator>
		<pubDate>Thu, 07 Jun 2012 08:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/?p=1312#comment-3695</guid>
		<description>Watermarking an image in PHP is very easy. If you follow the code below, you can do it in 2 minutes.

&lt;?php

function watermarkImage ($SourceFile, $WaterMarkText, $DestinationFile) {
//$SourceFile is source of the image file to be watermarked
//$WaterMarkText is the text of the watermark
//$DestinationFile is the destination location where the watermarked images will be placed

//Delete if destinaton file already exists
@unlink($DestinationFile);

//This is the vertical center of the image
$top = getimagesize($SourceFile);
$top = $top[1]/2;
list($width, $height) = getimagesize($SourceFile);

$image_p = imagecreatetruecolor($width, $height);

$image = imagecreatefromjpeg($SourceFile);

imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width, $height);

//Path to the font file on the server. Do not miss to upload the font file
$font = ‘arial.ttf’;

//Font sie
$font_size = 16;

//Give a white shadow
$white = imagecolorallocate($image_p, 255, 255, 255);
imagettftext($image_p, $font_size, 0, 10, $top, $white, $font, $WaterMarkText);

//Print in black color
$black = imagecolorallocate($image_p, 0, 0, 0);
imagettftext($image_p, $font_size, 0, 8, $top-1, $black, $font, $WaterMarkText);

if ($DestinationFile”) {

imagejpeg ($image_p, $DestinationFile, 100);

} else {

header(‘Content-Type: image/jpeg’);

imagejpeg($image_p, null, 100);

};

imagedestroy($image);

imagedestroy($image_p);

};

?&gt;

&lt;?php

$SourceFile = ‘image.jpg’;//Source image
$DestinationFile = ‘watermarked/image.jpg’;//Destination path
$WaterMarkText = ‘www.phpHelp.co’;//Watermark text

//Call the function to watermark the image
watermarkImage ($SourceFile, $WaterMarkText, $DestinationFile);

//Display watermarked image if desired
if(file_exists($DestinationFile)){
echo “”;
echo “The image has been watermarked at ‘”.$DestinationFile.”‘”;
}
?&gt;

Note:

    This code is being provided to you as a help by http://www.phpHelp.co without any warranty and liability
    Place all the files in a folder on web server.
    Do not forget to upload the font file – arial.ttf.
    Once the image is watermarked, it will be placed in the folder named ‘watermarked’.
    You might need to give ‘write permission’ or ’777 permission’ to the folder named ‘watermarked’ as the new watermarked image will be written in this folder.


Source: 
&lt;a href=&quot;http://addr.pk/a730e&quot; rel=&quot;nofollow&quot;&gt;http://addr.pk/a730e&lt;/a&gt;
AND
&lt;a href=&quot;http://phphelp.co/2012/06/01/how-to-watermark-an-image-in-php/&quot; rel=&quot;nofollow&quot;&gt;http://phphelp.co/2012/06/01/how-to-watermark-an-image-in-php/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Watermarking an image in PHP is very easy. If you follow the code below, you can do it in 2 minutes.</p>
<p>&lt;?php</p>
<p>function watermarkImage ($SourceFile, $WaterMarkText, $DestinationFile) {<br />
//$SourceFile is source of the image file to be watermarked<br />
//$WaterMarkText is the text of the watermark<br />
//$DestinationFile is the destination location where the watermarked images will be placed</p>
<p>//Delete if destinaton file already exists<br />
@unlink($DestinationFile);</p>
<p>//This is the vertical center of the image<br />
$top = getimagesize($SourceFile);<br />
$top = $top[1]/2;<br />
list($width, $height) = getimagesize($SourceFile);</p>
<p>$image_p = imagecreatetruecolor($width, $height);</p>
<p>$image = imagecreatefromjpeg($SourceFile);</p>
<p>imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width, $height);</p>
<p>//Path to the font file on the server. Do not miss to upload the font file<br />
$font = ‘arial.ttf’;</p>
<p>//Font sie<br />
$font_size = 16;</p>
<p>//Give a white shadow<br />
$white = imagecolorallocate($image_p, 255, 255, 255);<br />
imagettftext($image_p, $font_size, 0, 10, $top, $white, $font, $WaterMarkText);</p>
<p>//Print in black color<br />
$black = imagecolorallocate($image_p, 0, 0, 0);<br />
imagettftext($image_p, $font_size, 0, 8, $top-1, $black, $font, $WaterMarkText);</p>
<p>if ($DestinationFile”) {</p>
<p>imagejpeg ($image_p, $DestinationFile, 100);</p>
<p>} else {</p>
<p>header(‘Content-Type: image/jpeg’);</p>
<p>imagejpeg($image_p, null, 100);</p>
<p>};</p>
<p>imagedestroy($image);</p>
<p>imagedestroy($image_p);</p>
<p>};</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>$SourceFile = ‘image.jpg’;//Source image<br />
$DestinationFile = ‘watermarked/image.jpg’;//Destination path<br />
$WaterMarkText = ‘www.phpHelp.co’;//Watermark text</p>
<p>//Call the function to watermark the image<br />
watermarkImage ($SourceFile, $WaterMarkText, $DestinationFile);</p>
<p>//Display watermarked image if desired<br />
if(file_exists($DestinationFile)){<br />
echo “”;<br />
echo “The image has been watermarked at ‘”.$DestinationFile.”‘”;<br />
}<br />
?&gt;</p>
<p>Note:</p>
<p>    This code is being provided to you as a help by <a href="http://www.phpHelp.co" rel="nofollow">http://www.phpHelp.co</a> without any warranty and liability<br />
    Place all the files in a folder on web server.<br />
    Do not forget to upload the font file – arial.ttf.<br />
    Once the image is watermarked, it will be placed in the folder named ‘watermarked’.<br />
    You might need to give ‘write permission’ or ’777 permission’ to the folder named ‘watermarked’ as the new watermarked image will be written in this folder.</p>
<p>Source:<br />
<a href="http://addr.pk/a730e" rel="nofollow">http://addr.pk/a730e</a><br />
AND<br />
<a href="http://phphelp.co/2012/06/01/how-to-watermark-an-image-in-php/" rel="nofollow">http://phphelp.co/2012/06/01/how-to-watermark-an-image-in-php/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lilupophilupop multiple domain infection checker script by Marco</title>
		<link>http://blog.schouman.info/index.php/2012/01/02/lilupophilupop-multiple-domain-infection-checker-script/comment-page-1/#comment-2690</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Fri, 06 Jan 2012 10:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/index.php/2012/01/02/lilupophilupop-multiple-domain-infection-checker-script/#comment-2690</guid>
		<description>I replace the 

$line = str_replace(&quot;n&quot;, &quot;&quot;, $line);

with:

$line =trim($line);

I think this is working better.

But I need proof your script is working, because it&#039;s now always returning &#039;clean&#039;. Could you give a example of &#039;$url&#039; value so all websit&#039;s always will return &#039;NOT CLEAN&#039; ?</description>
		<content:encoded><![CDATA[<p>I replace the </p>
<p>$line = str_replace(&#8220;n&#8221;, &#8220;&#8221;, $line);</p>
<p>with:</p>
<p>$line =trim($line);</p>
<p>I think this is working better.</p>
<p>But I need proof your script is working, because it&#8217;s now always returning &#8216;clean&#8217;. Could you give a example of &#8216;$url&#8217; value so all websit&#8217;s always will return &#8216;NOT CLEAN&#8217; ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lilupophilupop multiple domain infection checker script by Marco</title>
		<link>http://blog.schouman.info/index.php/2012/01/02/lilupophilupop-multiple-domain-infection-checker-script/comment-page-1/#comment-2687</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Fri, 06 Jan 2012 09:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/index.php/2012/01/02/lilupophilupop-multiple-domain-infection-checker-script/#comment-2687</guid>
		<description>I see a bug, because &#039;$line = str_replace(&quot;n&quot;, &quot;&quot;, $line);&#039; will replace the &#039;n&#039; from the extension &#039;.nl&#039; if you are checking &#039;.nl&#039; websites.</description>
		<content:encoded><![CDATA[<p>I see a bug, because &#8216;$line = str_replace(&#8220;n&#8221;, &#8220;&#8221;, $line);&#8217; will replace the &#8216;n&#8217; from the extension &#8216;.nl&#8217; if you are checking &#8216;.nl&#8217; websites.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [ 2011-07-08 ] Wat gebeurde er vandaag? by Florian</title>
		<link>http://blog.schouman.info/index.php/2011/07/08/2011-07-08-wat-gebeurde-er-vandaag/comment-page-1/#comment-1551</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Wed, 13 Jul 2011 10:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/index.php/2011/07/08/2011-07-08-wat-gebeurde-er-vandaag/#comment-1551</guid>
		<description>Vlieg vandaag naar London, +39 heen +9 terug op de hotelprijs.</description>
		<content:encoded><![CDATA[<p>Vlieg vandaag naar London, +39 heen +9 terug op de hotelprijs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ik ga naar school en ik neem mee&#8230; by Schouman</title>
		<link>http://blog.schouman.info/index.php/2010/05/31/ik-ga-naar-school-en-ik-neem-mee/comment-page-1/#comment-870</link>
		<dc:creator>Schouman</dc:creator>
		<pubDate>Mon, 31 May 2010 21:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/index.php/2010/05/31/ik-ga-naar-school-en-ik-neem-mee/#comment-870</guid>
		<description>Hey Mike, succes met de expo!!!!
Paps</description>
		<content:encoded><![CDATA[<p>Hey Mike, succes met de expo!!!!<br />
Paps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weekendje Heeze by Roxie</title>
		<link>http://blog.schouman.info/index.php/2009/03/16/weekendje-heeze/comment-page-1/#comment-357</link>
		<dc:creator>Roxie</dc:creator>
		<pubDate>Mon, 16 Mar 2009 19:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/?p=517#comment-357</guid>
		<description>Haha. Wat een relatie al niet met je kan doen. Ik benieuw naar je cowboy avontuur van volgende week. Maar wie moet ik nu succes wensen? Laura, jou of het paard. Alle drie denk ik.</description>
		<content:encoded><![CDATA[<p>Haha. Wat een relatie al niet met je kan doen. Ik benieuw naar je cowboy avontuur van volgende week. Maar wie moet ik nu succes wensen? Laura, jou of het paard. Alle drie denk ik.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weekendje Heeze by Jur</title>
		<link>http://blog.schouman.info/index.php/2009/03/16/weekendje-heeze/comment-page-1/#comment-356</link>
		<dc:creator>Jur</dc:creator>
		<pubDate>Mon, 16 Mar 2009 19:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/?p=517#comment-356</guid>
		<description>Yo Mike!

Als Serena nou een touchscreen/pad en GPS zou hebben.....?

;-)</description>
		<content:encoded><![CDATA[<p>Yo Mike!</p>
<p>Als Serena nou een touchscreen/pad en GPS zou hebben&#8230;..?</p>
<p> <img src='http://blog.schouman.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alweer een nieuw jaar by Risto</title>
		<link>http://blog.schouman.info/index.php/2009/01/02/alweer-een-nieuw-jaar/comment-page-1/#comment-307</link>
		<dc:creator>Risto</dc:creator>
		<pubDate>Fri, 02 Jan 2009 11:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/?p=512#comment-307</guid>
		<description>nicely spoken bude!
catch u on the flipside

cjl HFL</description>
		<content:encoded><![CDATA[<p>nicely spoken bude!<br />
catch u on the flipside</p>
<p>cjl HFL</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limoncello maken by Florian</title>
		<link>http://blog.schouman.info/index.php/2008/11/24/limoncello-maken/comment-page-1/#comment-306</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Mon, 15 Dec 2008 16:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/?p=504#comment-306</guid>
		<description>haha - briljante edit.</description>
		<content:encoded><![CDATA[<p>haha &#8211; briljante edit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limoncello maken by Florian</title>
		<link>http://blog.schouman.info/index.php/2008/11/24/limoncello-maken/comment-page-1/#comment-302</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Tue, 25 Nov 2008 08:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.schouman.info/?p=504#comment-302</guid>
		<description>Will be waiting on the &#039;it was great/terrible&#039; post from you.... ;-)</description>
		<content:encoded><![CDATA[<p>Will be waiting on the &#8216;it was great/terrible&#8217; post from you&#8230;. <img src='http://blog.schouman.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>


