<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'PNG Format' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'PNG Format' posted on the 'Computer Graphics' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 25 May 2013 09:15:58 -0700</pubDate>
    <lastBuildDate>Sat, 25 May 2013 09:15:58 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/345644/png-format/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
We are trying to build a PNG Encoder. We have problems understanding how is the IDAT chunk built. We understand that the first 4 bytes are the length,the second 4 bytes are the IDAT signature, then raw data and of course 4 bytes of CRC at the end. Our problem is that the first 7 bytes in the data do not represent pixel indexing, but something else, and we can't figure out what. Any ideas what those bytes might represent?&lt;br /&gt;
&lt;br /&gt;
Any help would be appreciated&lt;br /&gt;
&lt;br /&gt;
Thank You,&lt;br /&gt;
Yuval&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/345644/png-format/</guid>
      <pubDate>Mon, 25 Sep 2006 04:57:26 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
    <item>
      <title>Re: PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/345671/re-png-format/#345671</link>
      <description>: Hi,&lt;br /&gt;
: &lt;br /&gt;
: We are trying to build a PNG Encoder. We have problems understanding how is the IDAT chunk built. We understand that the first 4 bytes are the length,the second 4 bytes are the IDAT signature, then raw data and of course 4 bytes of CRC at the end. Our problem is that the first 7 bytes in the data do not represent pixel indexing, but something else, and we can't figure out what. Any ideas what those bytes might represent?&lt;br /&gt;
: &lt;br /&gt;
: Any help would be appreciated&lt;br /&gt;
: &lt;br /&gt;
: Thank You,&lt;br /&gt;
: Yuval&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
It could be in true color, which is like:&lt;br /&gt;
0xFF 0xFF 0xFF&lt;br /&gt;
The first byte is red, the next is green and the last is blue. This could be the other way around.&lt;br /&gt;
&lt;br /&gt;
The data may also be compressed, but I don't really know.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/345671/re-png-format/#345671</guid>
      <pubDate>Mon, 25 Sep 2006 10:19:28 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
    <item>
      <title>Re: PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/345703/re-png-format/#345703</link>
      <description>Check out www.wotsit.org for almost any file format.&lt;br /&gt;
&lt;br /&gt;
-&lt;em&gt;&lt;strong&gt;&lt;span style="color: Red;"&gt;S&lt;/span&gt;&lt;span style="color: Purple;"&gt;e&lt;/span&gt;&lt;span style="color: Blue;"&gt;p&lt;/span&gt;&lt;span style="color: Green;"&gt;h&lt;/span&gt;&lt;span style="color: Red;"&gt;i&lt;/span&gt;&lt;span style="color: Purple;"&gt;r&lt;/span&gt;&lt;span style="color: Blue;"&gt;o&lt;/span&gt;&lt;span style="color: Green;"&gt;t&lt;/span&gt;&lt;span style="color: Red;"&gt;h&lt;/span&gt;&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/345703/re-png-format/#345703</guid>
      <pubDate>Mon, 25 Sep 2006 18:46:29 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
    <item>
      <title>Re: PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/345712/re-png-format/#345712</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I am no expert in the PNG file format - &lt;br /&gt;
Check out the Table in the PNG file format here&lt;br /&gt;
&lt;a href="http://www.w3.org/TR/2003/REC-PNG-20031110/#4Concepts.FormatTypes"&gt;http://www.w3.org/TR/2003/REC-PNG-20031110/#4Concepts.FormatTypes&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Maybe you are getting a IHDR chunk and the PLTE chunk. However as per the table it should be only in the beginning and probably PLTE and IHDR together would be more that 7 bytes.&lt;br /&gt;
&lt;br /&gt;
It might also be some data stream you could ignore maybe.&lt;br /&gt;
&lt;br /&gt;
Or maybe its an older version of PNG file format and needs to be interpreted differently.&lt;br /&gt;
&lt;br /&gt;
In the end you might want to see how libpng deals with it.&lt;br /&gt;
&lt;br /&gt;
Hope this helps.&lt;br /&gt;
&lt;br /&gt;
: Hi,&lt;br /&gt;
: &lt;br /&gt;
: We are trying to build a PNG Encoder. We have problems understanding how is the IDAT chunk built. We understand that the first 4 bytes are the length,the second 4 bytes are the IDAT signature, then raw data and of course 4 bytes of CRC at the end. Our problem is that the first 7 bytes in the data do not represent pixel indexing, but something else, and we can't figure out what. Any ideas what those bytes might represent?&lt;br /&gt;
: &lt;br /&gt;
: Any help would be appreciated&lt;br /&gt;
: &lt;br /&gt;
: Thank You,&lt;br /&gt;
: Yuval&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/345712/re-png-format/#345712</guid>
      <pubDate>Mon, 25 Sep 2006 20:35:53 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
    <item>
      <title>Re: PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/427948/re-png-format/#427948</link>
      <description>Hello Friend &lt;br /&gt;
&lt;br /&gt;
PNG is Stands for Portable Network Graphics.&lt;br /&gt;
&lt;br /&gt;
PNG was created to improve upon and replace GIF (Graphics Interchange Format) as an image-file format not requiring a patent license. The initialism PNG can also be interpreted as a recursive initialism for "PNG's Not GIF".&lt;br /&gt;
 PNG file always use an extension .png....  &lt;br /&gt;
[url=http://windows7.igennie.net/windows7-updates.html]&lt;strong&gt;Updates To Windows 7&lt;/strong&gt;[/url] || [url=http://www.igennie.net/microsoft-support.html]&lt;strong&gt;Microsoft service support&lt;/strong&gt;[/url]</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/427948/re-png-format/#427948</guid>
      <pubDate>Thu, 22 Mar 2012 03:21:10 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
    <item>
      <title>Re: PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/427949/re-png-format/#427949</link>
      <description>Hello Friend &lt;br /&gt;
&lt;br /&gt;
PNG is Stands for Portable Network Graphics.&lt;br /&gt;
PNG was created to improve upon and replace GIF (Graphics Interchange Format) as an image-file format not requiring a patent license. The initialism PNG can also be interpreted as a recursive initialism for "PNG's Not GIF".&lt;br /&gt;
 PNG file always use an extension .png....  &lt;br /&gt;
&lt;br /&gt;
[url=http://windows7.igennie.net/windows7-updates.html]&lt;strong&gt;Updates To Windows 7&lt;/strong&gt;[/url] || [url=http://www.igennie.net/microsoft-support.html]&lt;strong&gt;Microsoft service support&lt;/strong&gt;[/url]</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/427949/re-png-format/#427949</guid>
      <pubDate>Thu, 22 Mar 2012 03:24:29 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
    <item>
      <title>Re: PNG Format</title>
      <link>http://www.programmersheaven.com/mb/graphics/345644/427953/re-png-format/#427953</link>
      <description>Hello Friend &lt;br /&gt;
&lt;br /&gt;
PNG is Stands for Portable Network Graphics.&lt;br /&gt;
PNG was created to improve upon and replace GIF (Graphics Interchange Format) as an image-file format not requiring a patent license. The initialism PNG can also be interpreted as a recursive initialism for "PNG's Not GIF".&lt;br /&gt;
 PNG file always use an extension .png....  &lt;br /&gt;
&lt;br /&gt;
[url=http://windows7.igennie.net/windows7-updates.html]&lt;strong&gt;Updates To Windows 7&lt;/strong&gt;[/url] || [url=http://www.igennie.net/microsoft-support.html]&lt;strong&gt;Microsoft service support&lt;/strong&gt;[/url]</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/graphics/345644/427953/re-png-format/#427953</guid>
      <pubDate>Thu, 22 Mar 2012 05:16:52 -0700</pubDate>
      <category>Computer Graphics</category>
    </item>
  </channel>
</rss>