# 章序号/节序号/节/笔记序号 - Objective:照片的文件存储格式 # 概念阐释 PNG是一种[[无损压缩]]的[[位图]]图形格式,支持RGB三种颜色以及[[Alpha通道]]。在互联网上被广泛使用。GIF的代替方案。 # 举例子 # 类比、比较与对比 <table> <tr> <th>图形文件格式</th> <th>PNG</th> <th>JPEG</th> </tr> <tr> <th>格式类型</th> <td>无损压缩</td> <td>有损压缩</td> </tr> <tr> <th>文件大小</th> <td>大</td> <td>小</td> </tr> <tr> <th>应用场景</th> <td>互联网</td> <td>互联网</td> </tr> <tr> <th>适用图形</th> <td>少量颜色或大面积相同颜色</td> <td>照片</td> </tr> <tr> <th>扩展名</th> <td><code>.png</code></td> <td><code>.jpg .JPEG</code></td> </tr> <tr> <th>Alpha通道</th> <td>支持</td> <td>不支持</td> </tr> </table> # 问题 # 问题答案 # 备注(经验集/错误集) ## summary 解决的怎么样? ## 参考资料 - [Wikipedia-PNG](https://zh.wikipedia.org/wiki/PNG) - [Wikipedia-JPEG](https://zh.wikipedia.org/wiki/JPEG#%E7%84%A1%E6%90%8D%E8%80%97%E6%97%8B%E8%BD%89%EF%BC%88lossless_JPEG_rotation%EF%BC%89)