<?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>Techfun &#187; exif data</title>
	<atom:link href="http://blog.techfun.org/tag/exif-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.techfun.org</link>
	<description>Linux, Politics, Whatever...</description>
	<lastBuildDate>Sun, 13 Feb 2011 00:10:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>How to Remove EXIF Data from JPEG Files in Ubuntu</title>
		<link>http://blog.techfun.org/2009/11/how-to-remove-exif-data-from-jpeg-files-in-ubuntu/</link>
		<comments>http://blog.techfun.org/2009/11/how-to-remove-exif-data-from-jpeg-files-in-ubuntu/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 18:19:11 +0000</pubDate>
		<dc:creator>JD Thomas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[exif data]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.techfun.org/?p=1973</guid>
		<description><![CDATA[Most modern digital cameras and cell phone cameras add metadata to the images they create.  That information can be very useful for you when you need to know exactly when, or in some cases even where, a photograph was taken.  That information, however, may be more than you want to share when you decide to place photographs online.  Luckily, there is a very easy way to remove this data in Ubuntu.]]></description>
			<content:encoded><![CDATA[<p>Most modern digital cameras and cell phone cameras add metadata to the images they create using the <a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format">Exchangeable Image File Format</a> standard.  That information can be very useful for you when you need to know exactly when, or in some cases even where, a photograph was taken.  That information, however, may be more than you want to share when you decide to place photographs online.  Luckily, there is a very easy way to remove this data in Ubuntu.<br />
<span id="more-1973"></span></p>
<p>A single image taken with a camera like my Android G1 can contain a lot of information as shown below:</p>
<div id="attachment_1974" class="wp-caption aligncenter" style="width: 496px"><img class="size-full wp-image-1974" title="exif-data" src="http://blog.techfun.org/pics/exif-data.gif" alt="EXIF Information from an Android G1 Photo" width="486" height="624" /><p class="wp-caption-text">EXIF Information from an Android G1 Photo</p></div>
<h3>Removing EXIF Data in Ubuntu</h3>
<p>This is a quick and easy way to remove EXIF data from JPG files from a Bash prompt in Ubuntu or other Debian derived versions of Linux.  This method will let you remove the EXIF date from all images in a directory.</p>
<p>First, install the <strong>jhead</strong> package via apt-get.  Open a terminal window and type:</p>
<p><code>sudo apt-get install jhead</code></p>
<p>After <strong>jhead</strong> is installed you may want to review all the ways you can use this powerful tool by typing:</p>
<p><code>man jhead</code></p>
<p>You can use <strong>jhead</strong> to add/remove/modify information in JPG files but for now, all we are going to do is strip out all the information from the file that is not needed to render the image itself.  This may be more than you feel you need but it will give you the most privacy that I know how to provide.</p>
<p>To remove all EXIF info from a single image just open a terminal window and type:</p>
<p><code>jhead -purejpg /path/to/image.jpg</code></p>
<p>You can also use wild cards so you can use:</p>
<p><code>jhead -purejpg /path/to/*.jpg</code></p>
<p>or</p>
<p><code>jhead -purejpg /path/to/*.JPG</code></p>
<p>Since the <strong>jhead</strong> tool only acts on jpeg files you can do an entire directory of files &#8211; regardless of the case of the file extension using <strong>xargs</strong> like this:</p>
<p><code>ls | xargs jhead -purejpg</code></p>
<p>from within the directory of photos.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techfun.org/2009/11/how-to-remove-exif-data-from-jpeg-files-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

