<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Techie Buzz &#187; Watermark</title> <atom:link href="http://techie-buzz.com/tag/watermark/feed" rel="self" type="application/rss+xml" /><link>http://techie-buzz.com</link> <description>Know your technology head on</description> <lastBuildDate>Sun, 27 May 2012 12:00:55 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Protect Your Photographs from Being Stolen on the Internet</title><link>http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html</link> <comments>http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html#comments</comments> <pubDate>Tue, 02 Aug 2011 17:56:01 +0000</pubDate> <dc:creator>Joel Fernandes</dc:creator> <category><![CDATA[Photography Tips]]></category> <category><![CDATA[Photography]]></category> <category><![CDATA[Protect Photos]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=57443</guid> <description><![CDATA[Most photographers work hard in protecting their photos from being used by others. This is one of the greatest challenges that photographers are facing when it comes to protecting their work. Despite several techniques like watermarking and copyrights, protecting pictures has become nearly impossible. This article reveals some of the techniques required in order to protect your photos from infringement, ranging from preventing downloads from blogs, finding unauthorized usage of images and modifying your photo's EXIF data. Let us take a close look at each of these techniques.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13381319823yjp07w8448hhumk4kgscumbag1338131982th4g71g12r90mqjmxg1338131982.png" class="scumbags" /><p>Most photographers work hard in protecting their <a href="http://techie-buzz.com/tag/photography">photos</a> from being used by others. This is one of the greatest challenges that photographers are facing when it comes to protecting their work. Despite several techniques like <a href="http://techie-buzz.com/tag/watermark">watermarking</a> and copyrights, protecting pictures has become nearly impossible.</p><p>Although the Internet has changed a lot of things on how art is shared and distributed, it has also shown a way to steal them. Thousands of photos are uploaded every day on free/paid hosting sites such as <a href="http://techie-buzz.com/tag/flickr">Flickr</a>, 500px, <a href="http://techie-buzz.com/tag/picasa">Picasa</a> and elsewhere. If the hosting service  provider  says that the photos uploaded are protected, then they are wrong. There are several back entries to gain access to them (Well, viewing the source code is one way).</p><p>I have to admit, nothing on the internet can be protected. The best way to protect your art/photos from being downloaded or stolen is to not upload them online. However, it is possible to make image theft harder, but like I said, there is always a back entry.</p><p>This article reveals some of the techniques required in order to protect your photos from infringement, ranging from preventing downloads from blogs, finding unauthorized usage of images and modifying your photo&#8217;s EXIF data. Let us take a close look at each of these techniques.</p><h3>Preventing Downloads</h3><p>Photos uploaded on your photo blog can be prevented in several ways. Here are two basic, yet useful ways &#8211; disabling Right-click using Javascript and placing images as a background to Tables.</p><p><strong>Disable</strong><strong>  Right-click using Javascript:</strong></p><p>When you right-click on an image, you have an option to save it. Disabling right-click will prevent visitors from saving your images. To do so, just add the following code in your HTML page -</p><p>Place this javascript code after the &lt;head&gt; tag.</p><pre>&lt;script type="javascript"&gt;
&lt;!-- Begin
function disableRightClick(e) {
var msg = "Go hang yourself!";
if (navigator.appName == 'Netscape' &amp;&amp; e.which == 3) {
alert(msg);
return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' &amp;&amp; event.button==2) {
alert(msg);
return false;
}
else return true;
}

function onRightClick()
  {
  if(document.images)
    {
    for(i=0;i&lt;document.images.length;i++)
      {
      document.images[i].onmousedown = disableRightClick;
      document.images[i].onmouseup = disableRightClick;
      }
    }
  }
// End --&gt;
&lt;/script&gt;</pre><p>Replace &lt;body&gt; tag with this -</p><pre>&lt;body onLoad="onRightClick()"&gt;</pre><p><strong>Placing Images as a Background to Tables</strong></p><p>You can place your photos as a background image to Tables. Doing so, will remove the option &#8220;Save image as&#8230;&#8221; from the right-click menu. Replace the background-image with the URL of your image in the code below -</p><pre>&lt;table style="background-image:http://cache.techie-buzz.com/images/joel/copter-burnout.PNG');
&lt;/table&gt;</pre><p>Here&#8217;s a demonstration of the technique.</p><div align="center"><table width="572" border="0" cellspacing="0" cellpadding="2" align="center"><tbody><tr><td valign="top" width="282"><img src="http://cache.techie-buzz.com/images/joel/normal-image.png" alt="" width="276" height="424" /></td><td valign="top" width="6"></td><td valign="top" width="282"><table style="background-image: url('http://cache.techie-buzz.com/images/joel/table-image.png'); width: 276px; height: 424px;" title="A transparent image is placed over the background image"><tbody><tr><td valign="top" width="270"></td></tr></tbody></table></td></tr></tbody></table></div><p align="center">Right-click on both the images to see the difference.</p><p>Alternatively, you can hide your image behind a transparent image. i.e., by placing a transparent image within the table data &lt;td&gt; cell. This will, however, enable the Save image asâ€¦option, but when someone tries to save/download the image, the transparent image will be downloaded instead of the original image.</p><p align="left">Here&#8217;s a demonstration.</p><div align="center"><table width="400" border="0" cellspacing="0" cellpadding="2" align="center"><tbody><tr><td valign="top" width="400"><table style="background-image: url('http://cache.techie-buzz.com/images/joel/copter-burnout.PNG'); width: 276px; height: 424px;" title="Image as a table background with a transparent gif" align="center"><tbody><tr><td valign="top" width="398"><img src="http://cache.techie-buzz.com/images/joel/transparent.gif" alt="" width="262" height="413" align="center" /></td></tr></tbody></table></td></tr></tbody></table><p>Right-click and save the image below and see what you have downloaded.</p></div><h3 align="left">Finding Unauthorized Usage</h3><p>Recently, <a href="http://techie-buzz.com/tag/google">Google</a> introduced a <a href="http://techie-buzz.com/tech-news/new-google-search-voice-instant.html">new functionality</a> to Google Images where users can search photos by just dragging them into the search bar. Impressive enough, however, the feature focuses on finding similar photos, but not exact ones. To find if your photos are being used elsewhere, you can make use of <a href="www.tineye.com">TinEye</a>. Designed by <a href="http://ideeinc.com">IdÃ¨e</a><span style="text-decoration: underline;">,</span> TinEye can be used as an alternative to <a href="http://techie-buzz.com/tag/google">Google</a> Image search. It is a free image search service that allow photographers to upload a picture and then search for the same image across the Internet.</p><p>TinEye allows you to either upload an image or enter the URL of the image, in which the attributes of the image are analyzed instantly, and its fingerprint is compared to the fingerprint of every single image in the TinEye search index. It then provides a detailed list of websites that are using the image.</p><h3>Modifying EXIF Data</h3><p>Almost all digital cameras save<strong> </strong>JPEG<strong> </strong>files with EXIF (Exchangeable Image File) data. EXIF data contains camera settings such as camera model name, lens, shooting mode, exposure and so on.</p><p>When you are uploading a photo online, make sure that you edit the EXIF data and add your information (like your name) in the comments field. It is rare to find infringers to go through the EXIF data and modify it. When you come across someone using your photo without your knowledge, you can sue them for it.<strong></strong></p> <img src="http://cache.techie-buzz.com/13381319823yjp07w8448hhumk4kgscumbag1338131982th4g71g12r90mqjmxg1338131982.png" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Protect Your Photographs from Being Stolen on the Internet http%3A%2F%2Fbit.ly%2FoZwm3w via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html&title=Protect Your Photographs from Being Stolen on the Internet" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html&title=Protect Your Photographs from Being Stolen on the Internet" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html&title=Protect Your Photographs from Being Stolen on the Internet" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/photography" rel="tag">Photography</a>, <a href="http://techie-buzz.com/tag/protect-photos" rel="tag">Protect Photos</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html" title="Protect Your Photographs from Being Stolen on the Internet">Protect Your Photographs from Being Stolen on the Internet</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Joel Fernandes on Tuesday 2nd August 2011 01:56:01 PM under <a href="http://techie-buzz.com/category/photography-tips" title="View all posts in Photography Tips" rel="category tag">Photography Tips</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/photography-tips/protect-your-images-from-being-stolen.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>PicGhost: Edit, Resize and Watermark Images In Bulk</title><link>http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html</link> <comments>http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html#comments</comments> <pubDate>Sun, 18 Apr 2010 12:51:59 +0000</pubDate> <dc:creator>Tehseen Baweja</dc:creator> <category><![CDATA[Image Tools]]></category> <category><![CDATA[Images]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=23322</guid> <description><![CDATA[PicGhost is an online tool that lets you edit, resize and watermark images in bulk.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1338131982zptrunlkxbdbmadlb2scumbag1338131982zu3zgprqraddwu849521338131982.jpg" class="scumbags" /><p>There are many tools that let you resize or watermark your images but very few that let you do both. <a href="http://www.picghost.com">PicGhost</a> is an online tool that lets you edit images, resize them and add watermark to them in bulk. The images can either be uploaded from your computer or from the web.</p><p>Once the images are selected, you can specify a custom width and height or resize them to match the smallest or the largest image. You can also choose from one of the many recommended sizes to quickly resize the images. The option to lock the aspect ratio maintains the proportionality of your images.</p><p><img class="aligncenter" src="http://cache.techie-buzz.com/images/stories/picghost1.png" alt="PicGhost" width="547" height="538" /></p><p>The tool also lets you add a <strong>text</strong> or <strong>image</strong> watermark to your images. You can either upload the watermark image from your computer, or enter the text to display. Custom selection of font, font size and color let you customize the look of your watermark. You can also choose the alignment of the watermark on your images or have it tiled. Once the images are edited, you can preview them before downloading them as a single zip file.</p><p><img class="aligncenter" src="http://cache.techie-buzz.com/images/stories/picghost2.png" alt="PicGhost" width="578" height="600" /></p><h3>Techie Buzz Verdict:</h3><p>PicGhost is a great multi-purpose image editor and resizer that saves a lot of time and effort. The interface is intuitive and the the functionality is simple.</p><p><strong>Rating: 4/5</strong></p> <img src="http://cache.techie-buzz.com/1338131982zptrunlkxbdbmadlb2scumbag1338131982zu3zgprqraddwu849521338131982.jpg" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=PicGhost: Edit, Resize and Watermark Images In Bulk http%3A%2F%2Fbit.ly%2FbWLChv via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html&title=PicGhost: Edit, Resize and Watermark Images In Bulk" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html&title=PicGhost: Edit, Resize and Watermark Images In Bulk" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html&title=PicGhost: Edit, Resize and Watermark Images In Bulk" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/images" rel="tag">Images</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html" title="PicGhost: Edit, Resize and Watermark Images In Bulk">PicGhost: Edit, Resize and Watermark Images In Bulk</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Tehseen Baweja on Sunday 18th April 2010 08:51:59 AM under <a href="http://techie-buzz.com/category/image-tools" title="View all posts in Image Tools" rel="category tag">Image Tools</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/image-tools/picghost-edit-resize-and-watermark-images-in-bulk.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Split, Merge, Encrypt, Decrypt and Watermark PDF Files</title><link>http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html</link> <comments>http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html#comments</comments> <pubDate>Wed, 02 Dec 2009 23:57:00 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Microblog]]></category> <category><![CDATA[PDF]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html</guid> <description><![CDATA[PDF Exploiter is another multi-purpose PDF utility which will allow you to split, merge, encrypt, decrypt and watermark PDF Files for free. PDF Exploiter is an opensource software.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1338131982gm8q6x50e0rc3rgw90xvscumbag1338131982g2g8ccuuqkukrib0fmv1338131982.fkyou" class="scumbags" /><p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="pdf_exploiter" border="0" alt="pdf_exploiter" src="http://cache.techie-buzz.com/images/postimg/SplitMergeEncryptDecryptandWatermarkPDFF_EE03/pdf_exploiter.png" width="240" height="135" /></p><p>We have told you about loads of <a title="Read Articles Tagged PDF" href="http://techie-buzz.com/tag/pdf" rel="tag">PDF</a> tools in two separate articles:</p><ul><li><a href="http://techie-buzz.com/featured/handy-pdf-tools-you-should-definitely-use.html" target="_blank">Handy PDF Tools and Services you should definitely use</a></li><li><a href="http://techie-buzz.com/featured/unique-handy-pdf-tools.html" target="_blank">18 Unique and Handy PDF Tools</a></li></ul><p>PDF Exploiter is another multi-purpose PDF <a title="Articles Tagged Utilities" href="http://techie-buzz.com/tag/utilities" rel="tag">utility</a> which will allow you to split, merge, encrypt, decrypt and watermark PDF Files for free. PDF Exploiter is an opensource software.</p><p><a href="http://sourceforge.net/projects/pdfexploiter/" target="_blank"><strong>Download PDF Exploiter</strong></a></p> <img src="http://cache.techie-buzz.com/1338131982gm8q6x50e0rc3rgw90xvscumbag1338131982g2g8ccuuqkukrib0fmv1338131982.fkyou" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Split, Merge, Encrypt, Decrypt and Watermark PDF Files http%3A%2F%2Fbit.ly%2F8lTm70 via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html&title=Split, Merge, Encrypt, Decrypt and Watermark PDF Files" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html&title=Split, Merge, Encrypt, Decrypt and Watermark PDF Files" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html&title=Split, Merge, Encrypt, Decrypt and Watermark PDF Files" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/pdf" rel="tag">PDF</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html" title="Split, Merge, Encrypt, Decrypt and Watermark PDF Files">Split, Merge, Encrypt, Decrypt and Watermark PDF Files</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Wednesday 2nd December 2009 06:57:00 PM under <a href="http://techie-buzz.com/category/microblog" title="View all posts in Microblog" rel="category tag">Microblog</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/microblog/split-merge-encrypt-decrypt-watermark-pdf-files.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Google Image Search Users Don&#8217;t Like Watermarked Images</title><link>http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html</link> <comments>http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html#comments</comments> <pubDate>Tue, 17 Nov 2009 22:22:00 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Webmaster Tips]]></category> <category><![CDATA[Google Image Search]]></category> <category><![CDATA[Image Tools]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html</guid> <description><![CDATA[Watermarking images is a very popular way of thwarting image thefts. In the past, we have covered several freeware image tools and services which allow you to watermark images for free. However, if you are a webmaster, a recent post on the official Google webmaster blog might change your thoughts on watermarking your blog or website.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13381319825qb78x9kdsygy83kjk1escumbag1338131982oaypi2d1hs8fb7htnnru1338131982." class="scumbags" /><p>Watermarking images is a very popular way of thwarting image thefts. In the past, we have covered several <a title="Articles Tagged Freeware" rel="tag" href="http://techie-buzz.com/tag/freeware">freeware</a> <a title="Articles Tagged Image Tools on Techie Buzz" rel="tag" href="http://techie-buzz.com/tag/image-tools">image tools</a> and services which allow you to <a href="http://techie-buzz.com/how-to/watermark-your-images-for-free.html" target="_blank">watermark images</a> for <a href="http://techie-buzz.com/utilites/watermark-images.html" target="_blank">free</a>. However, if you are a webmaster, a <a href="http://googlewebmastercentral.blogspot.com/2009/11/pros-and-cons-of-watermarked-images.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+blogspot/amDG+(Official+Google+Webmaster+Central+Blog)" target="_blank">recent post</a> on the official Google webmaster blog might change your thoughts on watermarking your blog or website images.</p><p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="watermarked_images" src="http://cache.techie-buzz.com/images/posts/GoogleImageSearchUsersDontLikeWatermarke_E3CF/watermarked_images.png" border="0" alt="watermarked_images" width="371" height="207" /></p><p>Peter Linsley the product manager of Google Image search talks about some pros and cons of watermarking images.</p><blockquote><p><strong>Pros of watermarked images</strong></p><ul><li>Photographers can claim credit/be recognized for their art.</li><li>Unknown usage of the image is deterred.</li></ul><p><strong>Findings relevant to watermarked images (Cons)</strong></p><ul><li>Users prefer large, high-quality images (high-resolution, in-focus).</li><li>Users are more likely to click on quality thumbnails in search results. Quality pictures (again, high-res and in-focus) often look better at thumbnail size.</li><li>Distracting features such as loud watermarks, text over the image, and borders are likely to make the image look cluttered when reduced to thumbnail size.</li></ul></blockquote><p>Google Image Search like the regular Google Search is a huge traffic puller. The findings above or the cons of using watermarked images are definitely worth noting. The reasoning is also quite appropriate as images with watermarks are not that enticing when you actually view it in thumbnail format. However, these findings do not say that you should not watermark your images. Although, it is definitely worth knowing how users react to watermarked images.</p><p>Would you as a webmaster stop watermarking your images to get better search engine clicks in image search? It would be interesting to debate on this topic as image theft is rampant, however on the other hand every bit of search engine juice is always welcomed by a webmaster.</p> <img src="http://cache.techie-buzz.com/13381319825qb78x9kdsygy83kjk1escumbag1338131982oaypi2d1hs8fb7htnnru1338131982." class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Google Image Search Users Don&rsquo;t Like Watermarked Images http%3A%2F%2Fbit.ly%2F4dnzY via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html&title=Google Image Search Users Don&rsquo;t Like Watermarked Images" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html&title=Google Image Search Users Don&rsquo;t Like Watermarked Images" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html&title=Google Image Search Users Don&rsquo;t Like Watermarked Images" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/google-image-search" rel="tag">Google Image Search</a>, <a href="http://techie-buzz.com/tag/image-tools" rel="tag">Image Tools</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a>, <a href="http://techie-buzz.com/tag/webmaster-tips" rel="tag">Webmaster Tips</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html" title="Google Image Search Users Don&rsquo;t Like Watermarked Images">Google Image Search Users Don&rsquo;t Like Watermarked Images</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Tuesday 17th November 2009 05:22:00 PM under <a href="http://techie-buzz.com/category/webmaster-tips" title="View all posts in Webmaster Tips" rel="category tag">Webmaster Tips</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/webmaster-tips/watermarked-images-disliked-by-image-search-users.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Watermark Your PDF Files Online</title><link>http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html</link> <comments>http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html#comments</comments> <pubDate>Sun, 16 Aug 2009 08:17:44 +0000</pubDate> <dc:creator>Tehseen Baweja</dc:creator> <category><![CDATA[Internet Tools / Useful Websites / Web2.0]]></category> <category><![CDATA[PDF]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=6072</guid> <description><![CDATA[PDF-Watermark is a free online tool that allows you protect your PDFs by applying a watermark.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1338131982mgsyewjqmbqp9g7ndgutscumbag1338131982i3dpqxfoy6qyynch51338131982.png" class="scumbags" /><p>With so many tools to crack PDFs and download PDFs, it is easy for anybody to steal your hard work. To save yourself from such scenarios, it is a very good idea to put a watermark on your PDFs just like you put a watermark on your images. PDF-Watermark is an online tool that lets you do that without any hassle.</p><p>All you need to do is head over to <a href="http://watermark-images.com/pdf-watermark.aspx" target="_blank">PDF-Watermark</a> and upload the PDF files you want to watermark. After that, customize your watermark by choosing the text, font type, font size, color and watermark angle. You also have an option of adjusting the transparency of watermark. Once you are done, click &#8220;watermark PDF&#8221; and a watermark would be applied to your PDF files. You can then download the modified PDFs to your local drive.</p><p><img class="aligncenter" title="pdfwatermark" src="http://cache.techie-buzz.com/images/stories/pdfwatermark.png" alt="" width="470" height="282" /></p><p>It is a very useful freeware that allows you to protect your PDFs without the hassle of downloading or installing any complicated software.</p> <img src="http://cache.techie-buzz.com/1338131982mgsyewjqmbqp9g7ndgutscumbag1338131982i3dpqxfoy6qyynch51338131982.png" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Watermark Your PDF Files Online http%3A%2F%2Fbit.ly%2F1jCAqm via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html&title=Watermark Your PDF Files Online" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html&title=Watermark Your PDF Files Online" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html&title=Watermark Your PDF Files Online" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/pdf" rel="tag">PDF</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html" title="Watermark Your PDF Files Online">Watermark Your PDF Files Online</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Tehseen Baweja on Sunday 16th August 2009 04:17:44 AM under <a href="http://techie-buzz.com/category/internet-tools" title="View all posts in Internet Tools / Useful Websites / Web2.0" rel="category tag">Internet Tools / Useful Websites / Web2.0</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/internet-tools/watermark-your-pdf-files-online.html/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>17 Image Manipulation Tools You Should Know About</title><link>http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html</link> <comments>http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html#comments</comments> <pubDate>Thu, 13 Aug 2009 18:00:44 +0000</pubDate> <dc:creator>Tehseen Baweja</dc:creator> <category><![CDATA[Image Tools]]></category> <category><![CDATA[Useful Tools]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/?p=5961</guid> <description><![CDATA[A collection of some unique image manipulation tools including tools to merge, split, annotate, resize images. Also mentions tools that you can use to put unique effects to your images.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/13381319821qonskj0s0i8kcvaofi8scumbag133813198208p8dnlfzmbgwsff3rao1338131982.ahole" class="scumbags" /><p>We have previously covered a lot of <a href="http://techie-buzz.com/category/image-tools" target="_blank">image tools</a> that included everything from image editors to image converters. This post is about a different kind of image tools. Tools that can let you add, transform or manipulate your images to give them a totally new look. All of these tools are free and require no registrations or downloads.</p><p><a href="http://watermark-images.com/" target="_blank"><strong>1. Watermark-Images:</strong></a> Batch watermark your images online. Add up to 20 images, customize the text and font of your watermark and apply it to the images within no time. You can adjust the position of you watermark and add a shadow affect to it.</p><p><strong><a href="http://www.fixredeyes.com/" target="_blank">2. FixRedEyes:</a></strong> Remove the red eye effect from any photo with this simple tool. Simply upload the image, adjust the red eye area and click fix.</p><p><a href="http://www.htmlkit.com/services/is/" target="_blank"><strong>3. ImageSplitter:</strong></a> Slice up your images in rows and columns. Just upload an image and specify the number of rows and columns you want. Then choose output format and resolution and click process.</p><p><a href="http://www.imagemerger.net/" target="_blank"><strong>4. ImageMerger:</strong></a> Merge two images online using this tool. The first image is treated as a background image and the second one is added on top of it. Useful for adding watermarks to images.</p><p><a href="http://www.genopal.com/pic2color" target="_blank"><strong>5. Pic2Color:</strong></a> Extract colors from any image. Just upload an image or provide the URL and Pic2Color will provide you with a color palette of colors used in the image.</p><p><a href="http://www.mirroreffect.net/" target="_blank"><strong>6. MirrorEffect:</strong></a> Add mirrored effect to any picture. Choose reflection size and the direction of effect (bottom, top, left or right).</p><p><img class="aligncenter" title="MirrorEffect" src="http://cache.techie-buzz.com/images/stories/watereffect.png" alt="" width="304" height="184" /></p><p><a href="http://www.text-image.com/index.html" target="_blank"><strong>7. TextImage:</strong></a> Convert a photo into a text image. Choose from HTML, ASCII or Matrix text images.</p><p><strong><a href="http://www.genopal.com/pic2graphics" target="_blank">8. Pic2Graphics:</a></strong> Recolor pictures by transferring the mood of one picture to another. Simple select two pictures, one to recolor and other to grab the mood from.</p><p><a href="http://www.montagerator.com/montage.aspx" target="_blank"><strong>9. Montagerator:</strong></a> Create beautiful montages and mosaics online. Upload a photo or use one by providing a URL.</p><p><a href="http://speechable.com/" target="_blank"><strong>10. Speechable:</strong></a> Add speech bubbles to any image. Customize text and bubble size. Embed images on your blog or webpage.</p><p><a href="http://www.watereffect.net/" target="_blank"><strong>11. WaterEffect:</strong></a> Add water effect to any image. No registration or downloads required, simply upload the picture and get a water effect in resulting picture.</p><p><strong><a href="http://www.roundpic.com/" target="_blank">12. RoundPic:</a></strong> Make your picture   more hip by adding rounded corners to it. This tool takes any image and turn regular corners into rounded ones. You can even add borders and shadows to the picture.</p><p><a href="http://www.befunky.com/" target="_blank"><strong>13. BeFunky:</strong></a> Add a digital-painting or cartoon-like effect to your images. Manipulate images by pulling and pushing any area of the image. Create cartoonized avatars by choosing different backgrounds and accessories. You can also add ink, stencil and pencil effects to your images. BeFunky alow works for adding a cartoon effect to videos.</p><p><a href="http://picbite.com/" target="_blank"><strong>14. PicBite:</strong></a> Annotate images online. Once done, you can download the annotated images or embed them on your blog or web page. Also allows you to crop or resize an image.</p><p><a href="http://www.gifup.com/" target="_blank"><strong>15. GIFup:</strong></a> Create animated GIFs online by simple uploading your images and choosing desired animation settings.</p><p><a href="http://www.dosize.com/" target="_blank"><strong>16. DoSize:</strong></a> Re-size up to 10 images simultaneously. Once resized, you can download the images or email them to your friends.</p><p><a href="http://yearbookyourself.com/" target="_blank"><strong>17. YearBookYourself:</strong></a> Give your photos a vintage look. Choosa an era like 1950&#8242;s, 60&#8242;s, 70&#8242;s or 80&#8242;s and morph it into a classic.</p><p><img style="visibility: hidden; width: 0px; height: 0px;" src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyNTAxNTY4MjE*MzAmcHQ9MTI1MDE1NjkyNDIwMSZwPTIyMzc4MiZkPSZnPTEmbz*5N2JlNGI4MjZkZmE*ZTM2ODA1YjM3MDY1MDcyMzQwZCZvZj*w.gif" border="0" alt="" width="0" height="0" /></p><p><a href="http://watereffect.net/"><img src="http://watereffect.net/images/final_2054834066.gif" border="0" alt="" width="342" /></a></p><p><a href="http://watereffect.net/"> </a><a href="http://watereffect.net/"><span style="color: white;">Water Effect</span></a></p> <img src="http://cache.techie-buzz.com/13381319821qonskj0s0i8kcvaofi8scumbag133813198208p8dnlfzmbgwsff3rao1338131982.ahole" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=17 Image Manipulation Tools You Should Know About http%3A%2F%2Fbit.ly%2Ffq3iS via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html&title=17 Image Manipulation Tools You Should Know About" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html&title=17 Image Manipulation Tools You Should Know About" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html&title=17 Image Manipulation Tools You Should Know About" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/image-tools" rel="tag">Image Tools</a>, <a href="http://techie-buzz.com/tag/useful-tools" rel="tag">Useful Tools</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html" title="17 Image Manipulation Tools You Should Know About">17 Image Manipulation Tools You Should Know About</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Tehseen Baweja on Thursday 13th August 2009 02:00:44 PM under <a href="http://techie-buzz.com/category/image-tools" title="View all posts in Image Tools" rel="category tag">Image Tools</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/image-tools/17-image-manipulation-tools-you-should-know-about.html/feed</wfw:commentRss> <slash:comments>25</slash:comments> </item> <item><title>Watermark Images</title><link>http://techie-buzz.com/softwares/watermark-images.html</link> <comments>http://techie-buzz.com/softwares/watermark-images.html#comments</comments> <pubDate>Sat, 01 Nov 2008 20:39:09 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Freeware]]></category> <category><![CDATA[Image Tools]]></category> <category><![CDATA[Utilities]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/utilites/watermark-images.html</guid> <description><![CDATA[Quite sometime back we had introduced you to a online service that would help you watermark your images for free, this included adding a custom copyright to any images that you may own and want to upload on the Internet. Adding watermark is definitely something you should do when you upload images on the web, [...]]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1338131982km1i1oy3h9q64me0yr3scumbag13381319822kvt1s0itj8obepy5xad1338131982.etc" class="scumbags" /><p>Quite sometime back we had introduced you to a online service that would help you <a href="http://techie-buzz.com/how-to/watermark-your-images-for-free.html">watermark your images for free</a>, this included adding a custom copyright to any images that you may own and want to upload on the Internet.</p><p>Adding watermark is definitely something you should do when you upload images on the web, since many people may try and gain ownership of the image without your knowledge, using a web service to watermark images could get tedious at times when you have lots of images to be watermarked, since you have to upload each and every image and then download the watermarked copy to your desktop.</p><p> <span id="more-3097"></span><p>Watermarking Lite is a freeware desktop software that will allow you to add watermarks or copyrights to your images by providing a wizard that can watermark bulk images in a single job.</p><p><img style="display: block; float: none; margin-left: auto; margin-right: auto" title="watermarking-lite-screenshot" border="0" alt="watermarking-lite-screenshot" src="http://cache.techie-buzz.com/images/stories/2008/11/watermarkinglitescreenshot.png" width="290" height="209" /></p><p>It supports watermarking JPG, GIF, PNG and TIF formats and also integrates into the right click context menu, so that you can watermark images without having to open them.</p><p>Watermarking Lite allows you to choose between 9 different positions for adding the watermark on the image.</p><p><a href="http://bytescout.com/files/WatermarkingLite.exe" rel="nofollow"><strong>Download Watermarking Lite</strong></a></p> <img src="http://cache.techie-buzz.com/1338131982km1i1oy3h9q64me0yr3scumbag13381319822kvt1s0itj8obepy5xad1338131982.etc" class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/softwares/watermark-images.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Watermark Images http%3A%2F%2Fbit.ly%2FzyJi5 via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/softwares/watermark-images.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/softwares/watermark-images.html&title=Watermark Images" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/softwares/watermark-images.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/softwares/watermark-images.html&title=Watermark Images" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/softwares/watermark-images.html&title=Watermark Images" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/freeware" rel="tag">Freeware</a>, <a href="http://techie-buzz.com/tag/image-tools" rel="tag">Image Tools</a>, <a href="http://techie-buzz.com/tag/utilities" rel="tag">Utilities</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/softwares/watermark-images.html" title="Watermark Images">Watermark Images</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Saturday 1st November 2008 03:39:09 PM under <a href="http://techie-buzz.com/category/softwares" title="View all posts in Software" rel="category tag">Software</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/softwares/watermark-images.html/feed</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>Watermark Your Images For Free</title><link>http://techie-buzz.com/how-to/watermark-your-images-for-free.html</link> <comments>http://techie-buzz.com/how-to/watermark-your-images-for-free.html#comments</comments> <pubDate>Fri, 30 Nov 2007 19:03:15 +0000</pubDate> <dc:creator>Keith Dsouza</dc:creator> <category><![CDATA[How To]]></category> <category><![CDATA[Freeware]]></category> <category><![CDATA[Image Tools]]></category> <category><![CDATA[Watermark]]></category><guid isPermaLink="false">http://techie-buzz.com/how-to/watermark-your-images-for-free.html</guid> <description><![CDATA[Many blogs and websites use images to spice up their posts. Most of them are screen shots or images that have been created using image editing tools. Images can be easily copied by any person and used on their own sites passing of the images as their own. There is not much you can do about it as finding and tracking such image thieves is almost impossible.]]></description> <content:encoded><![CDATA[<img src="http://cache.techie-buzz.com/1338131982pm1u740bv1071cuitkm4scumbag1338131982wpwg7c784ol7erfx1z1338131982." class="scumbags" /><p>Many blogs and websites use images to spice up their posts. Most of them are screen shots or images that have been created using image editing tools. Images can be easily copied by any person and used on their own sites passing of the images as their own. There is not much you can do about it as finding and tracking such image thieves is almost impossible.</p><p>In such cases watermarking the images with your own personal copyright is the best solution. Watermarking your images would add your copyright notice to the image and thus prevent the image thieves from passing the images as one of their own.</p><p>Watermarking each and every image you create can be a pain though and it is time consuming to add custom copyright messages to each and every image. There is a simple way to overcome this problem and you can do it online at absolutely no cost, yes absolutely FREE.</p><p><span id="more-428"></span></p><p><a href="http://cache.techie-buzz.com/images/stories/WatermarkYourImagesForFree_B7A9/imarkrwatermarkedimagedemo.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="imarkr-watermarked-image-demo" src="http://cache.techie-buzz.com/images/stories/WatermarkYourImagesForFree_B7A9/imarkrwatermarkedimagedemo_thumb.jpg" width="244" border="0" /></a></p><p><a href="http://imarkr.com/">iMarkr</a> is a website that provides you with a free service to watermark your images. The interface to watermark your image is pretty cool. You can either use text to watermark your images or upload a logo to be used as a water mark.</p><p>You can also upload multiple images to be watermarked. To use the multiple image watermarking service you will have to be a <a href="http://rapid-hook.com/watermark/index.php?module=user&amp;action=edit">registered user</a>.</p><p>Watermarking your image can be done in two easy steps.</p><ul><li>Upload your image.</li><li>Choose watermarking details.</li><li>Download the image that is watermarked.</li></ul><p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="284" alt="imarkr-watermark-image" src="http://cache.techie-buzz.com/images/stories/WatermarkYourImagesForFree_B7A9/imarkrwatermarkimage.gif" width="250" border="0" /></p><p>While choosing watermarking details you can easily select where you want to have your watermark using the arrow keys provided. After that select the font options and transparency of the watermark. The transparency option can be used to make the watermark more transparent. I have used a transparency of 35% in the image I have created.</p><p>You can also use the cropping tool to crop the images. If you do not want to crop the image simply click on the Remove Cropper button to watermark the entire image.</p><p>Once you have selected all the options click to proceed to the next step and you can download the watermarked image. In addition to the watermarked images you will also get direct links to the image as well as links which you can post in forums or MySpace.</p><p><b>Main Features Of iMarkr</b></p><ul><li>Adding customizable visible watermarks on your pictures or digital photos.</li><li>Crop Images</li><li>Custom transparency</li><li>Watermarking a group of pictures (batch watermarking)</li><li>Watermark image(s) with your logo.</li><li>Add custom font and color to your text</li><li>Select the position of your text or logo (i.e. top left, right, etc)</li><li>Auto create codes to use on forums, MySpace and direct linking</li><li>Host your watermarked images.</li><li>View your images in user gallery, slide show The site is very easy to use.</li></ul><p><strong>My 2 Cents</strong></p><p><a href="http://imarkr.com/">iMarkr</a> is a real cool tool and it should save a lot of time in watermarking images you created. This would definitely decrease image thefts as it would become harder to remove the watermarks from the image. I did not see any loss in quality of images that were watermarked.</p><p>I definitely would recommend this to anyone who puts in some effort to create images. Also this service can be used to watermark your images before uploading them to public websites like Flickr or Picasa. <a href="http://rapid-hook.com/watermark/index.php?module=user&amp;action=edit">Registering for an account</a> is a great option as you will be able to watermark multiple images thus saving you lots of time.</p><p>What do you think about this tool? Do let me know through your comments.</p><div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e8436053-c5e9-4f76-9486-0fb63aee59a6" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati tags: <a href="http://technorati.com/tags/Image%20watermarking" rel="tag">Image watermarking</a>, <a href="http://technorati.com/tags/watermark%20images" rel="tag">watermark images</a>, <a href="http://technorati.com/tags/watermark" rel="tag">watermark</a>, <a href="http://technorati.com/tags/image%20thefts" rel="tag">image thefts</a></div> <img src="http://cache.techie-buzz.com/1338131982pm1u740bv1071cuitkm4scumbag1338131982wpwg7c784ol7erfx1z1338131982." class="scumbags" /><div style="font-size:12px"> <strong>Share:</strong> <a href="http://techie-buzz.com/how-to/watermark-your-images-for-free.html#commentrespond" rel="bookmark" target="_blank">Comment on This Post</a> | <a href="http://twitter.com/home?source=techiebuzz&status=Watermark Your Images For Free http%3A%2F%2Fbit.ly%2FlUeEH via @techiebuzzer" rel="bookmark" target="_blank">Tweet This</a> | <a href="http://www.facebook.com/sharer.php?u=http://techie-buzz.com/how-to/watermark-your-images-for-free.html" rel="bookmark" target="_blank">Share on Facebook</a> | <a href="http://del.icio.us/post?url=http://techie-buzz.com/how-to/watermark-your-images-for-free.html&title=Watermark Your Images For Free" rel="bookmark" target="_blank">Save to Delicious</a> | <a href="http://www.stumbleupon.com/submit?url=http://techie-buzz.com/how-to/watermark-your-images-for-free.html" rel="bookmark" target="_blank">Stumble This</a> | <a href="http://digg.com/submit?phase=2&url=http://techie-buzz.com/how-to/watermark-your-images-for-free.html&title=Watermark Your Images For Free" rel="bookmark" target="_blank">Digg This</a> | <a href="http://www.reddit.com/submit?url=http://techie-buzz.com/how-to/watermark-your-images-for-free.html&title=Watermark Your Images For Free" rel="bookmark" target="_blank">Reddit This</a></div> <br /><div><strong style="font-size:11px;">TAGS:</strong> <span style="text-transform:uppercase;font-size:11px;"><a href="http://techie-buzz.com/tag/freeware" rel="tag">Freeware</a>, <a href="http://techie-buzz.com/tag/image-tools" rel="tag">Image Tools</a>, <a href="http://techie-buzz.com/tag/watermark" rel="tag">Watermark</a></span><br/> </small></div><div style="background:#E1E1E1; border: dotted 1px; padding:5px; margin-top:5px;font-size:11px"> <a href="http://techie-buzz.com/how-to/watermark-your-images-for-free.html" title="Watermark Your Images For Free">Watermark Your Images For Free</a> originally appeared on <a href="http://techie-buzz.com" title="Techie Buzz">Techie Buzz</a> written by Keith Dsouza on Friday 30th November 2007 02:03:15 PM under <a href="http://techie-buzz.com/category/how-to" title="View all posts in How To" rel="category tag">How To</a>. Please read the <a href="http://techie-buzz.com/terms-of-use">Terms of Use</a> for fair usage guidance.</div> <br /> ]]></content:encoded> <wfw:commentRss>http://techie-buzz.com/how-to/watermark-your-images-for-free.html/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk: basic
Theme:              11546
Template:           index
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 7/53 queries in 0.059 seconds using memcached
Object Caching 1427/1534 objects using memcached
Content Delivery Network via cdn4.techie-buzz.com

Served from: www.techie-buzz.com @ 2012-05-27 11:19:42 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          tag/watermark/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.406s
Header info:
X-Pingback:         http://techie-buzz.com/xmlrpc.php
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Sun, 27 May 2012 15:19:42 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Sun, 27 May 2012 15:29:42 GMT
Pragma:             public
Cache-Control:      max-age=600, public, must-revalidate, proxy-revalidate
Etag:               3f83948ac4f7902d0e00c54dc77aad54
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Encoding:   gzip
-->
