PNG Data structures
程序员文章站
2022-07-01 14:35:50
...
最近一个项目中关于PNG结构的一些东西:
// -- PNG Data structures
static final byte png_header[] =
{
(byte) 137, 'P', 'N', 'G',
13, 10, 26, 10,
0, 0, 0, 13, // chunk-size
'I', 'H', 'D', 'R',
0, 0, 0, 0, // width
0, 0, 0, 0, // height
8, // bit depth
3, // colour type (palettised)
0, // compression type
0, // filter method
0 // interlace method
};
static final byte iend_chunk[] =
{
0, 0, 0, 0, // chunk-size
'I', 'E', 'N', 'D',
(byte) 0xae, 0x42, 0x60, (byte) 0x82 // CRC
};
static final byte trns_chunk[] =
{
0, 0, 0, 1, // chunk-size
't', 'R', 'N', 'S',
0, // transparent palette index
0x40, (byte) 0xe6, (byte) 0xd8, 0x66 // CRC
};
引用内容
// -- PNG Data structures
static final byte png_header[] =
{
(byte) 137, 'P', 'N', 'G',
13, 10, 26, 10,
0, 0, 0, 13, // chunk-size
'I', 'H', 'D', 'R',
0, 0, 0, 0, // width
0, 0, 0, 0, // height
8, // bit depth
3, // colour type (palettised)
0, // compression type
0, // filter method
0 // interlace method
};
static final byte iend_chunk[] =
{
0, 0, 0, 0, // chunk-size
'I', 'E', 'N', 'D',
(byte) 0xae, 0x42, 0x60, (byte) 0x82 // CRC
};
static final byte trns_chunk[] =
{
0, 0, 0, 1, // chunk-size
't', 'R', 'N', 'S',
0, // transparent palette index
0x40, (byte) 0xe6, (byte) 0xd8, 0x66 // CRC
};
上一篇: 曾国藩用了最笨的方法剿灭太平军 最后为什么还是成功了
下一篇: Java删除文件夹和文件(优雅)
推荐阅读
-
Spring Data JPA例子代码[基于Spring Boot、Mysql]
-
Spring-Data-JPA整合MySQL和配置的方法
-
将Reporting services的RDL文件拷贝到另外一台机器时报Data at the root level is invalid的解决方法
-
让你的PHP同时支持GIF、png、JPEG
-
浅析application/x-www-form-urlencoded和multipart/form-data的区别
-
bootstrap折叠调用collapse()后data-parent不生效的快速解决办法
-
vue里的data要用return返回的原因浅析
-
TinyPNG 超强png图片在线压缩工具
-
Vue组件中的data必须是一个function的原因浅析
-
Vue中用props给data赋初始值遇到的问题解决