active questions tagged hpi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:38:21Z http://stackoverflow.com/feeds/tag/hpi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/228165/how-can-i-extract-the-jpg-png-components-of-an-hpi-file 2 How can I extract the .jpg/.png components of an .hpi file? Owen 2008-10-23T01:17:41Z 2009-03-18T09:48:28Z <p>I stumbled across my rather ancient photo objects disks, and sadly found out the company (hemera) doesn't provide support for it anymore. this has left me with a whole pile of .hpi files. Luckily, I found <a href="http://www.halley.cc/ed/linux/interop/hemera.html" rel="nofollow">this information</a> on extracting the jpg and png components of the file.</p> <p>Unfortunately, I haven't been able to get it to work. Can anyone figure out what's wrong with this code? I'd be happy with a PHP or Python solution if Perl isn't your thing. :)</p> <pre><code>open(I, "$name") || die; binmode(I); $_ = &lt;I&gt;; close(I); my ($j, $p) = m|^.{32}(.*)(\211PNG.*)$|s; open(J, "&gt;$name.jpg") &amp;&amp; do { binmode(J); print J $j; close J; }; open(P, "&gt;$name.png") &amp;&amp; do { binmode(P); print P $p; close P; }; </code></pre> <p>The hexdump of the current test file I snagged off a CD is here, if it helps at all:</p> <pre><code>0000000 89 48 50 49 0d 0a 1a 0a 64 00 00 00 20 00 00 00 0000010 45 89 00 00 65 89 00 00 0a 21 00 00 00 d0 d0 00 </code></pre>