Skip to content

Commit

Permalink
added color chunk priority table
Browse files Browse the repository at this point in the history
where the upper-most color chunk takes precendence
  • Loading branch information
digitaltvguy committed Mar 18, 2024
1 parent 5a54703 commit d941bfe
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions index.html
Expand Up @@ -870,6 +870,49 @@ <h2>Color spaces</h2>
to be applied (see <a href="#C-GammaAppendix"></a>). However, color-aware applications will prefer one of the first three
methods, while color-unaware applications will typically ignore all four methods.</p>

<p>Below is a list of color flags. If a single image is populated with multiple color flags, the uppermost chunk(s) in the
heirarchy should take precedence and the lower most chunk(s) should be ignored:

<table id="color-chunk-precendence" class="numbered simple">
<caption>
Color Chunk Priority
</caption>

<tr>
<th>Name</th>
<th>Priority</th>
</tr>

<tr>
<td><a href="#cICP-chunk" class="chunk">cICP</a></td>
<td>1</td>
</tr>

<tr>
<td><a class="chunk" href="#11iCCP">iCCP</a></td>
<td>2</td>
</tr>

<tr>
<td><span class="chunk">sRGB</span></td>
<td>3</td>

<tr>
<td><a class="chunk" href= "#11cHRM">cHRM and <a class="chunk" href="#11gAMA">gAMA</a></a></td>
<td>4</td>
</tr>

</tr>


</table>







<p><a>Gamma</a> correction is not applied to the alpha channel, if present. Alpha samples are always full-range and represent
a linear fraction of full opacity.</p>

Expand Down

0 comments on commit d941bfe

Please sign in to comment.