<?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 on: Reading Exif data with PHP</title> <atom:link href="http://netfactory.dk/2007/09/22/reading-exif-data-with-php/feed/" rel="self" type="application/rss+xml" /><link>http://netfactory.dk/2007/09/22/reading-exif-data-with-php/</link> <description>WebDevelopment, Travel and Photography...</description> <lastBuildDate>Tue, 23 Feb 2010 18:17:43 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: swapnet</title><link>http://netfactory.dk/2007/09/22/reading-exif-data-with-php/comment-page-1/#comment-778</link> <dc:creator>swapnet</dc:creator> <pubDate>Tue, 16 Jun 2009 19:02:05 +0000</pubDate> <guid
isPermaLink="false">http://netfactory.dk/2007/09/22/reading_exif_data_with_php/#comment-778</guid> <description>hi, everything works fine thanks for this.... but some of my photos are giving trouble. I get this error:&lt;br&gt;&lt;br&gt;Warning:  exif_read_data(indirajoshi_001.jpg) [function.exif-read-data]: Incorrect APP1 Exif Identifier Code in c:documents and settingsUSERmy documentsniceheader.php on line 36</description> <content:encoded><![CDATA[<p>hi, everything works fine thanks for this&#8230;. but some of my photos are giving trouble. I get this error:</p><p>Warning:  exif_read_data(indirajoshi_001.jpg) [function.exif-read-data]: Incorrect APP1 Exif Identifier Code in c:documents and settingsUSERmy documentsniceheader.php on line 36</p> ]]></content:encoded> </item> <item><title>By: Djar</title><link>http://netfactory.dk/2007/09/22/reading-exif-data-with-php/comment-page-1/#comment-761</link> <dc:creator>Djar</dc:creator> <pubDate>Thu, 23 Apr 2009 20:02:50 +0000</pubDate> <guid
isPermaLink="false">http://netfactory.dk/2007/09/22/reading_exif_data_with_php/#comment-761</guid> <description>Sometime went wrong with my previous comment.</description> <content:encoded><![CDATA[<p>Sometime went wrong with my previous comment.</p> ]]></content:encoded> </item> <item><title>By: Djar</title><link>http://netfactory.dk/2007/09/22/reading-exif-data-with-php/comment-page-1/#comment-760</link> <dc:creator>Djar</dc:creator> <pubDate>Thu, 23 Apr 2009 19:59:42 +0000</pubDate> <guid
isPermaLink="false">http://netfactory.dk/2007/09/22/reading_exif_data_with_php/#comment-760</guid> <description>Perhaps the script below could help, it shows how to extract single items.&lt;br&gt;&lt;br&gt;&lt;?php&lt;br&gt;		$file = &quot;test.jpg&quot;; // Change this to your own image file path&lt;br&gt;&lt;br&gt;		$exif = exif_read_data($file, 0, true);&lt;br&gt;&lt;br&gt;		/* &lt;br&gt;		So far i noticed, there are 7 entities: &lt;br&gt;		(FILE - COMPUTED - IFD0 - THUMBNAIL - COMMENT - EXIF - WINXP)&lt;br&gt;		Each entity containing there own attributes&lt;br&gt;		Below some sample code of how to extract a single entity and attribute. &lt;br&gt;		*/&lt;br&gt;&lt;br&gt;		print &quot;&lt;h1&gt; All Entities and Attributes (avaiable for specified document)&lt;/h1&gt;&quot;;&lt;br&gt;&lt;br&gt;		foreach($exif as $key =&gt; $val)&lt;br&gt;		{&lt;br&gt;			print &quot;&lt;h3&gt;&quot;.$key.&quot;&lt;/h3&gt;&lt;br /&gt;&quot;;&lt;br&gt;			foreach($val as $singleAttribute =&gt; $val2)&lt;br&gt;			{&lt;br&gt;				print &quot;&lt;strong&gt;&quot;.$singleAttribute.&quot;:&lt;/strong&gt; &quot;.$val2.&quot;&lt;br /&gt;&quot;;&lt;br&gt;			}&lt;br&gt;			print &quot;&lt;hr /&gt;&quot;;&lt;br&gt;		}&lt;br&gt;&lt;br&gt;		print &quot;&lt;h1&gt; Read Specified Attributes &lt;/h1&gt;&quot;;&lt;br&gt;&lt;br&gt;		// WINXP entity attributes can be edited by clicking on your file: &lt;br&gt;		// Right Mouse Button &gt; Properties &gt; Summary&lt;br&gt;		// Below you see how to extract single attributes&lt;br&gt;&lt;br&gt;		// In the first bracket you put the entity name&lt;br&gt;		// The second bracket the attribute name&lt;br&gt;		print &quot;&lt;strong&gt;Model: &lt;/strong&gt;&quot;.$exif[&quot;IFD0&quot;][&quot;Model&quot;].&quot;&lt;br /&gt;&quot;;&lt;br&gt;		print &quot;&lt;strong&gt;Flash: &lt;/strong&gt;&quot;.$exif[&quot;EXIF&quot;][&quot;Flash&quot;].&quot;&lt;br /&gt;&quot;;&lt;br&gt;		print &quot;&lt;strong&gt;Compression: &lt;/strong&gt;&quot;.$exif[&quot;THUMBNAIL&quot;][&quot;Compression&quot;].&quot;&lt;br /&gt;&quot;;&lt;br&gt;		print &quot;&lt;strong&gt;Title: &lt;/strong&gt;&quot;.$exif[&quot;WINXP&quot;][&quot;Title&quot;].&quot;&lt;br /&gt;&quot;;&lt;br&gt;		print &quot;&lt;strong&gt;Html: &lt;/strong&gt;&quot;.$exif[&quot;COMPUTED&quot;][&quot;html&quot;].&quot;&lt;br /&gt;&quot;;&lt;br&gt;		print &quot;&lt;strong&gt;Mime-Type: &lt;/strong&gt;&quot;.$exif[&quot;FILE&quot;][&quot;MimeType&quot;].&quot;&lt;br /&gt;&quot;;&lt;br&gt;?&gt;</description> <content:encoded><![CDATA[<p>Perhaps the script below could help, it shows how to extract single items.</p><p>&lt;?php<br
/> $file = &#8220;test.jpg&#8221;; // Change this to your own image file path</p><p> $exif = exif_read_data($file, 0, true);</p><p> /* <br
/> So far i noticed, there are 7 entities: <br
/> (FILE &#8211; COMPUTED &#8211; IFD0 &#8211; THUMBNAIL &#8211; COMMENT &#8211; EXIF &#8211; WINXP)<br
/> Each entity containing there own attributes<br
/> Below some sample code of how to extract a single entity and attribute. <br
/> */</p><p> print &#8220;&lt;h1&gt; All Entities and Attributes (avaiable for specified document)&lt;/h1&gt;&#8221;;</p><p> foreach($exif as $key =&gt; $val)<br
/> {<br
/> print &#8220;&lt;h3&gt;&#8221;.$key.&#8221;&lt;/h3&gt;<br
/>&#8220;;<br
/> foreach($val as $singleAttribute =&gt; $val2)<br
/> {<br
/> print &#8220;<strong>&#8220;.$singleAttribute.&#8221;:</strong> &#8220;.$val2.&#8221;<br
/>&#8220;;<br
/> }<br
/> print &#8220;<br
/><hr
/>&#8220;;<br
/> }</p><p> print &#8220;&lt;h1&gt; Read Specified Attributes &lt;/h1&gt;&#8221;;</p><p> // WINXP entity attributes can be edited by clicking on your file: <br
/> // Right Mouse Button &gt; Properties &gt; Summary<br
/> // Below you see how to extract single attributes</p><p> // In the first bracket you put the entity name<br
/> // The second bracket the attribute name<br
/> print &#8220;<strong>Model: </strong>&#8220;.$exif["IFD0"]["Model"].&#8221;<br
/>&#8220;;<br
/> print &#8220;<strong>Flash: </strong>&#8220;.$exif["EXIF"]["Flash"].&#8221;<br
/>&#8220;;<br
/> print &#8220;<strong>Compression: </strong>&#8220;.$exif["THUMBNAIL"]["Compression"].&#8221;<br
/>&#8220;;<br
/> print &#8220;<strong>Title: </strong>&#8220;.$exif["WINXP"]["Title"].&#8221;<br
/>&#8220;;<br
/> print &#8220;<strong>Html: </strong>&#8220;.$exif["COMPUTED"]["html"].&#8221;<br
/>&#8220;;<br
/> print &#8220;<strong>Mime-Type: </strong>&#8220;.$exif["FILE"]["MimeType"].&#8221;<br
/>&#8220;;<br
/>?&gt;</p> ]]></content:encoded> </item> <item><title>By: Brent</title><link>http://netfactory.dk/2007/09/22/reading-exif-data-with-php/comment-page-1/#comment-637</link> <dc:creator>Brent</dc:creator> <pubDate>Mon, 21 Jul 2008 12:48:09 +0000</pubDate> <guid
isPermaLink="false">http://netfactory.dk/2007/09/22/reading_exif_data_with_php/#comment-637</guid> <description>This was really informative, but doesn&#039;t tell us how we can edit the output in a way that we can manually control. For example if I didn&#039;t want to show all of the EXIF variables, only a select few.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://neonglow.net/exif.php&quot;&gt;http://neonglow.net/exif.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;Any information on how I can re-style that mess would be so appreciated!</description> <content:encoded><![CDATA[<p>This was really informative, but doesn&#8217;t tell us how we can edit the output in a way that we can manually control. For example if I didn&#8217;t want to show all of the EXIF variables, only a select few.</p><p><a
href="http://neonglow.net/exif.php">http://neonglow.net/exif.php</a></p><p>Any information on how I can re-style that mess would be so appreciated!</p> ]]></content:encoded> </item> <item><title>By: Brent</title><link>http://netfactory.dk/2007/09/22/reading-exif-data-with-php/comment-page-1/#comment-727</link> <dc:creator>Brent</dc:creator> <pubDate>Mon, 21 Jul 2008 12:48:09 +0000</pubDate> <guid
isPermaLink="false">http://netfactory.dk/2007/09/22/reading_exif_data_with_php/#comment-727</guid> <description>This was really informative, but doesn&#039;t tell us how we can edit the output in a way that we can manually control. For example if I didn&#039;t want to show all of the EXIF variables, only a select few.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://neonglow.net/exif.php&quot; rel=&quot;nofollow&quot;&gt;http://neonglow.net/exif.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;Any information on how I can re-style that mess would be so appreciated!</description> <content:encoded><![CDATA[<p>This was really informative, but doesn&#39;t tell us how we can edit the output in a way that we can manually control. For example if I didn&#39;t want to show all of the EXIF variables, only a select few.</p><p><a
href="http://neonglow.net/exif.php" rel="nofollow">http://neonglow.net/exif.php</a></p><p>Any information on how I can re-style that mess would be so appreciated!</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 5/16 queries in 0.008 seconds using disk

Served from: m00.opasia.dk @ 2010-03-14 06:36:07 -->