<?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"
	>

<channel>
	<title>Articles and Reviews by Walter Rowe</title>
	<atom:link href="http://www.roweimages.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.roweimages.com/blog</link>
	<description>© 2006-2008 Walter Rowe. All Rights Reserved.</description>
	<pubDate>Fri, 08 Aug 2008 12:28:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Fresh MILK Photo Contest</title>
		<link>http://www.roweimages.com/blog/2008/08/08/fresh-milk-photo-contest/</link>
		<comments>http://www.roweimages.com/blog/2008/08/08/fresh-milk-photo-contest/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 12:21:34 +0000</pubDate>
		<dc:creator>Walter Rowe</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Contest Rules]]></category>

		<category><![CDATA[Fresh MILK Photo Contest]]></category>

		<category><![CDATA[Photo Contest]]></category>

		<guid isPermaLink="false">http://www.roweimages.com/blog/?p=26</guid>
		<description><![CDATA[This morning I received an e-mail invitation to the Fresh MILK Photo Contest. It looks to be a somewhat prestigious contest. As with all contests, I studied the terms and associated prizes. At first I thought this might be the most fair contest terms I had ever read. Here is a summary of the contest [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I received an e-mail invitation to the <a href="http://www.freshmilkphotos.com/" target="_blank">Fresh MILK Photo Contest</a>. It looks to be a somewhat prestigious contest. As with all contests, I studied the terms and associated prizes. At first I thought this might be the most fair contest terms I had ever read. Here is a summary of the contest terms and prizes.</p>
<ul class="MailOutline">
<li>Photographers retain all rights in their photographs</li>
<li>Winning photographers agree to a 10-year non-exclusive license</li>
<li>Winning images will be used in a book and merchandise</li>
<li>Photographers not chosen grant no license</li>
<li>No fee incurred to enter the contest</li>
<li>Sponsor pays 150 general winners $500 each</li>
<li>Sponsor pays grand prize winner $50,000</li>
<li>A pool will be created containing 10% of net proceeds from book and merchandise sales</li>
<li>All 151 winners receive an equal share of the pool to be paid annually</li>
</ul>
<p>I first thought &#8220;Wow! Prize money plus profit sharing. Finally a fair split for contest winners.&#8221; Then I started doing the math. A $500 license fee for 10-years of non-exclusive commercial use (book and merchandise sales) seems ridiculously low. Splitting 10% of the NET proceeds among all the 151 contest winners won&#8217;t amount to much either. That comes to .066% each  (10% ÷ 151). That&#8217;s right - you get the enormous sum of a whopping 66 one-thousands of a percent of the NET proceeds, paid annually.</p>
<p>This doesn&#8217;t seem so fair after all. What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roweimages.com/blog/2008/08/08/fresh-milk-photo-contest/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Prevent Hotlinks To Your Images</title>
		<link>http://www.roweimages.com/blog/2008/07/30/preventing-hotlinks/</link>
		<comments>http://www.roweimages.com/blog/2008/07/30/preventing-hotlinks/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 13:00:21 +0000</pubDate>
		<dc:creator>Walter Rowe</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Legal]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[.htaccess]]></category>

		<category><![CDATA[Hotlink]]></category>

		<category><![CDATA[Hotlinking]]></category>

		<category><![CDATA[Hotlinks]]></category>

		<category><![CDATA[Image Theft]]></category>

		<category><![CDATA[Prevent Hotlinks]]></category>

		<category><![CDATA[Prevent Image Theft]]></category>

		<guid isPermaLink="false">http://www.roweimages.com/blog/?p=21</guid>
		<description><![CDATA[Hotlinking is when another website tries to include an image hosted on your website in their web page via &#8220;&#60;IMG&#62;&#60;/IMG&#62;&#8221; tags. This is a form of image theft and copyright infringement where they are using your intellectual property without your permission. I have included code similar to this sample code below in the .htaccess file [...]]]></description>
			<content:encoded><![CDATA[<p>Hotlinking is when another website tries to include an image hosted on your website in their web page via &#8220;&lt;IMG&gt;&lt;/IMG&gt;&#8221; tags. This is a form of image theft and copyright infringement where they are using your intellectual property without your permission. I have included code similar to this sample code below in the .htaccess file placed at the root folder of my website. The basic policy that this institutes is that all hotlinking is forbidden unless explicity granted. Here are some guides to help you understand the sample code.</p>
<ul>
<li>The exclaimation point in each statement means &#8220;NOT&#8221; or &#8220;doesn&#8217;t match&#8221;.</li>
<li>The carat (^) sign means &#8220;starts with&#8221;.</li>
<li>The string &#8220;http(s)?&#8221; matches http or https.</li>
<li>The string &#8220;(www\.)?&#8221; matches websites with or without the &#8220;www&#8221; prefix.</li>
<li>The string &#8220;[NC]&#8221; means &#8220;not case sensitive&#8221;.</li>
<li>The HTTP_REFERER variable means the webpage on which the hotlink appears.</li>
<li>The REQUEST_FILENAME variable means the filename requested (being hotlinked).</li>
</ul>
<p>In the same code, if your site doesn&#8217;t match A or B or &#8230;, you get a different image with a nasty message.</p>
<p style="padding-left: 30px;"><code>#<br />
# Turn on URL rewrite<br />
#<br />
RewriteEngine on<br />
#<br />
# Use my website's root folder as the reference base<br />
#<br />
RewriteBase /<br />
#<br />
# allow hotlinks with no referer provided<br />
# (some browsers strip HTTP_REFERER for privacy)<br />
#<br />
RewriteCond %{HTTP_REFERER} !^$ [NC]<br />
#<br />
# always allow my own website to display images<br />
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?roweimages.com [NC]<br />
#<br />
# photography message boards<br />
RewriteCond %{HTTP_REFERER} !^http://www.pdngallery.com [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://www.musicphotographers.net [NC]<br />
RewriteCond %{HTTP_REFERER} !^http://www.travelphotographers.net [NC]<br />
#<br />
# miscellaneous<br />
RewriteCond %{HTTP_REFERER} !^http://labs.adobe.com [NC]<br />
#<br />
# always allow &#8220;nohotlinks.jpg&#8221; to be displayed<br />
RewriteCond %{REQUEST_FILENAME} !nohotlinks.jpg$ [NC]<br />
#<br />
# if you get here, you get a nasty image instead<br />
RewriteRule \.(jpg|jpeg|png|gif)$ nohotlinks.jpg [NC,R,L]</code></p>
<p>If a site tries to hotlink to one of my image files that is not explicitly granted permission, this is what they see instead.</p>
<p><img src="../../nohotlinks.jpg" alt="" /></p>
<p>Before I instituted this .htaccess file, I had lots of hotlinks to my concert photographs. After I instituted this, all forbidden hotlinking stopped. This works on Apache webservers. There are ways to do something similar on Microsoft IIS, but I don&#8217;t have instructions for doing that. Feel free to copy-n-paste this code and customize it for your site.</p>
<p>You can learn more about .htaccess here: <a href="http://www.javascriptkit.com/howto/htaccess10.shtml" target="_blank">http://www.javascriptkit.com/howto/htaccess10.shtml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.roweimages.com/blog/2008/07/30/preventing-hotlinks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why I Don&#8217;t Post Photographs on Facebook</title>
		<link>http://www.roweimages.com/blog/2008/07/13/why-i-dont-post-photographs-on-facebook/</link>
		<comments>http://www.roweimages.com/blog/2008/07/13/why-i-dont-post-photographs-on-facebook/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 00:31:58 +0000</pubDate>
		<dc:creator>Walter Rowe</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Legal]]></category>

		<category><![CDATA[Social Networks]]></category>

		<category><![CDATA[Copyright]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[Rights Grabbing]]></category>

		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://www.roweimages.com/blog/?p=20</guid>
		<description><![CDATA[I am a professional photographer. As such, I depend on license fees I collect from people who wish to use my copyrighted work. The more ways in which they desire to use my work, the higher the license fee. Such is the way for all intellectual property licensing.
The reason I don&#8217;t post my copyrighted photographs [...]]]></description>
			<content:encoded><![CDATA[<p>I am a professional photographer. As such, I depend on license fees I collect from people who wish to use my copyrighted work. The more ways in which they desire to use my work, the higher the license fee. Such is the way for all intellectual property licensing.</p>
<p>The reason I don&#8217;t post my copyrighted photographs on Facebook is because the Terms for Facebook include the following text:</p>
<blockquote><p>By posting User Content to any part of the Site, you automatically grant, and you represent and warrant that you have the right to grant, to the Company an irrevocable, perpetual, non-exclusive, transferable, fully paid, worldwide license (with the right to sublicense) to use, copy, publicly perform, publicly display, reformat, translate, excerpt (in whole or in part) and distribute such User Content for any purpose, commercial, advertising, or otherwise, on or in connection with the Site or the promotion thereof, to prepare derivative works of, or incorporate into other works, such User Content, and to grant and authorize sublicenses of the foregoing. You may remove your User Content from the Site at any time. If you choose to remove your User Content, the license granted above will automatically expire, however you acknowledge that the Company may retain archived copies of your User Content.</p></blockquote>
<p>This says that any content you post on Facebook, including your photographs, can be used by Facebook for any purpose they choose. It goes further by saying they can sublicense your content to any third party they choose for any purpose and you will never receive a penny for it.</p>
<p>Imagine while on vacation with your family you capture this exquisite photograph of the Golden Gate Bridge, and that you are so proud of it that you post it on Facebook so all your friends can see it. If someone on the Facebook staff sees your photograph and really likes it, Facebook can use it to advertise Facebook. They can license a postcard company to use it on a postcard they sell. They can even license the image for the cover of Time magazine, use by a travel agency or anyone else. You will never know about it and you will never receive any compensation for it.</p>
<p>Because I depend on revenue from licensing my copyrighted material, I refuse to post any of my photographs here and let Facebook use them for free and make money off of my work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roweimages.com/blog/2008/07/13/why-i-dont-post-photographs-on-facebook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bryan Rowe CD Cover</title>
		<link>http://www.roweimages.com/blog/2008/06/24/bryan-rowe-cd-cover/</link>
		<comments>http://www.roweimages.com/blog/2008/06/24/bryan-rowe-cd-cover/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 00:24:33 +0000</pubDate>
		<dc:creator>Walter Rowe</dc:creator>
		
		<category><![CDATA[Legal]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Publicity]]></category>

		<category><![CDATA[Bryan Rowe]]></category>

		<category><![CDATA[Composer]]></category>

		<category><![CDATA[Musician]]></category>

		<category><![CDATA[Organ]]></category>

		<category><![CDATA[Organist]]></category>

		<guid isPermaLink="false">http://www.roweimages.com/blog/?p=19</guid>
		<description><![CDATA[Baltimore composer and organist Bryan Rowe (no relation to me that we know of yet) released a new CD of live organ music called LIVE!. Portraits I took for him grace the cover and full page inside left and right of the CD jacket. The music is exceptional and the artwork turned out great. Here [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Baltimore composer and organist <a href="http://www.bryanrowe.net" target="_blank">Bryan Rowe</a> (no relation to me that we know of yet) released a new CD of live organ music called LIVE!. Portraits I took for him grace the cover and full page inside left and right of the CD jacket. The music is exceptional and the artwork turned out great. Here is the cover from Bryan&#8217;s new CD. Congratulations to Bryan on the new CD.</p>
<p style="text-align: center;"><img style="border: 0pt none;" src="http://www.roweimages.com/tearsheets/bryan-rowe-cd-LIVE.png" alt="Bryan Rowe LIVE! CD Cover" width="395" height="356" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.roweimages.com/blog/2008/06/24/bryan-rowe-cd-cover/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Help Stop Orphan Works Legislation</title>
		<link>http://www.roweimages.com/blog/2008/05/30/help-stop-orphan-works-legislation/</link>
		<comments>http://www.roweimages.com/blog/2008/05/30/help-stop-orphan-works-legislation/#comments</comments>
		<pubDate>Fri, 30 May 2008 15:03:06 +0000</pubDate>
		<dc:creator>Walter Rowe</dc:creator>
		
		<category><![CDATA[Legal]]></category>

		<category><![CDATA[Abusing Your Rights]]></category>

		<category><![CDATA[Congress]]></category>

		<category><![CDATA[Copyright]]></category>

		<category><![CDATA[Orphan Works]]></category>

		<guid isPermaLink="false">http://www.roweimages.com/blog/?p=18</guid>
		<description><![CDATA[There are currently two bills before Congress called the &#8220;Orphan Works&#8221; bills. One is before the House of Representatives and the other is before the Senate. Both bills have moved out of committee and are being prepared for debate before their full body of Congress. The Senate&#8217;s version is worse the the House&#8217;s version. Both [...]]]></description>
			<content:encoded><![CDATA[<p><span>There are currently two bills before Congress </span><span>called the &#8220;Orphan Works&#8221; bills</span><span>. One is before the House of Representatives and the other is before the Senate</span><span>. Both bills have moved out of committee and are being prepared for debate before their full body of Congress. The Senate&#8217;s version is worse the the House&#8217;s version. Both will allow commercial entities to use your photographs and other creations for any purpose they desire, and will strip creative professionals and citizens alike of their ability to recover statutory and punitive damages against unauthorized users. Commercial entities of all kinds support the Orphan Works legislation because it gives them permission to &#8220;crowd source&#8221; your creations and use them without you knowledge and without you being compensated for the use.</span></p>
<p>The spirit behind the Orphan Works legislation is that libraries and museums want to be able to display and preserve copyrighted works for which the copyright owner cannot be identified or located. This is a good intention to preserve these works for the <span>good of the </span><span>public. This would be a non-commercial use of the copyrighted works and is a good cause. These can be visual works like photographs, paintings, film, etc. It can also be any other form of copyrighted work such as music and other sound recordings, written text, scripts for plays, music scores, etc, etc, etc. Current copyright law requires permission from the copyright owner to use or display these works. Without the copyright owner&#8217;s permission, these works have to be kept private and not publicly displayed.</span></p>
<p>The problem with the current Orphan Works legislation being considered is it does not limit use of Orphan Works to libraries and museums and other preservation entities. It leaves the doors wide open for use by any entity - including commercial business, advertisers, publishers, etc. It also does not limit the source of work to that produced only by professionals. It permits use of ALL sources of copyrighted work - professional, or otherwise (like Mom and Dad&#8217;s vacation pictures, pictures your kids took, etc). The only protection built into the legislation is that the user of the image must show a &#8220;due diligence&#8221; to find the owner before using the work without their permission. If the copyright owner cannot be found, the work will fall into the category of &#8220;Orphaned&#8221; - meaning it has no known owner - and the user will be permitted to use the image however they choose with relative impunity.</p>
<p>Here is the danger this legislation poses to every individual - both creative professionals and average citizens. Suppose you post a vacation photograph you took to a website - Shutterfly, MySpace, Facebook, Flickr, Photobucket, etc. Then suppose someone likes it, and copies and reposts it elsewhere (or e-mails it to all their friends). Now a commercial company finds it (or receives that e-mail) and asks them if they own it. The second person says &#8220;no, I found it on the internet&#8221;. Then the commercial company asks &#8220;do you know who took it?&#8221; and the second person says &#8220;no, I can&#8217;t remember where I got it&#8221;. So the commercial entity goes to a special copyright registry service that Orphan Works legislation requires be established and registers their intent to use the image. If no one responds, the user is now permitted to use that image however they want without paying the person who took the picture and without risk of facing statutory or punitive damages. The most the copyright owner can do is collect a &#8220;license fee&#8221; for the use, and the user gets to determine that fee - not the copyright owner.</p>
<p>Let&#8217;s say a major international company uses your photograph in a campaign that takes a stance on an issue that is completely in opposition to your values and you find out after the fact. You have relatively little recourse to stop the use and little recourse to collect any money. The user of the image can find some image similar to yours on a cheap stock photo site like iStockPhoto and claim the fair license fee is $1. So you have spent hundreds or thousands pursuing the company and now they only owe you $1. Current copyright law places the responsibility for determine fair fees on the copyright holder. Orphan Works lets the infringer determine the license fee.</p>
<p>Here is another example. Imagine finding personal home video clips that your child posted on YouTube on a television commercial for some product or activist group you do not support or which you find offensive. It will be nearly impossible for you to stop them from continuing to use it if they can demonstrate that they tried unsuccessfully to find the copyright owner. They also will not be required to pay you any statutory or punitive damages as a result of their use of your video footage.</p>
<p>Do you want to allow commercial entities to use your personal photographs, video clips or other creations without your permission and without any recourse to stop them from doing it? Companies like MySpace and Facebook and Google want the Orphan Works legislation to pass because it will give them permission to use your personal photographs for commercial gain or to promote particular causes without your knowledge or authorization.</p>
<p>In addition to moral concerns over use of your work, the creative professional stands to lose tens of thousands in revenue because the commercial user of their work can cry &#8220;orphan work&#8221;. This could put creative professionals out of work and kill entire industries. The purpose of copyright law is to protect the work of creative professionals. It is supposed to encourage them to continue to create by allowing them to earn an income from their work. Do you have relatives or friends who are creative professionals? Do you want to see their careers stopped by Congress? That is a very real danger of Orphan Works.</p>
<p>Every citizen needs to contact their members of Congress and tell them you oppose the Orphan Works legislation on both the House and the Senate. It will be in your best interest to stop this bill before Congress ends up giving every company in the world permission to use our personal photographs.</p>
<p>It is extremely important to make your voice heard before Congress passes this legislation. We need Congress to NOT pass this legislation. A better solution to Orphan Works is to make appropriate changes in the &#8220;Fair Use&#8221; rules under existing copyright law to permit museums, libraries and the other historical preservation entities to preserve these works for the public good. There should be NO allowance for commercial use of these works. It is not in the public interest to permit commercial entities to use orphan works. It is only in the interest of the corporations, investors and shareholders.</p>
<p>Please go <a href="http://www.msplinks.com/MDFodHRwOi8vY2Fwd2l6LmNvbS9pbGx1c3RyYXRvcnNwYXJ0bmVyc2hpcC9ob21lLw==" target="_blank">http://capwiz. com/illustratorspartnership/home/</a> and send them a letter. Call them. Fax them. Write them via the link provided. Be courteous, but be determined. Present facts like I have written here. Don&#8217;t be emotional. Most members of Congress are lawyers. They work on facts, not emotions.</p>
<p>Please forward this information to everyone you know. Congress needs to get thousands of letters from individuals, not just the trade associations.</p>
<p>These are your photographs and other creations. Protect them and protect yourself. Do something about it. Contact your members of Congress and tell them to oppose Orphan Works and instead consider changes to the &#8220;Fair Use&#8221; rules. That is the proper place to address the needs of libraries, museums and the preservation groups who really are interested in the public good.</p>
<p>If you have questions about this legislation, contact me directly. I will answer all questions as best I can. A great source of information is John Harrington&#8217;s blog <a href="http://www.msplinks.com/MDFodHRwOi8vcGhvdG9idXNpbmVzc2ZvcnVtLmJsb2dzcG90LmNvbS8yMDA4LzA1L29ycGhhbi13b3Jrcy0yMDA4LXdvbGYtaW4tc2hlZXBzLmh0bWw=" target="_blank">&#8220;Orphan Works 2008 - A Wolf In Sheep&#8217;s Clothing&#8221;</a>. John has written many posts on the Orphan Works legislation and opposes it. You should oppose it too by voicing your position with your Senators and Representative in Congress. They are elected to their position to represent the people in their districts. Make sure they are representing your position.<span><br />
</span><br />
A lot of people will feel this only affects creative professionals and doesn&#8217;t concern the average citizen. This could not be further from the truth. Remember the &#8220;crowd sourcing&#8221; scenario I provided above. Every work that any individual creates is subject to abuse through the Orphan Works legislation. Commercial entities will encourage Congress to pass this legislation so that they can use yours, mine and every other person&#8217;s creations with impunity. Don&#8217;t let that happen. Take action now!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roweimages.com/blog/2008/05/30/help-stop-orphan-works-legislation/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
