一张jpg图片,1024*1024的尺寸,文件大小为99kb,金字塔效果,各层影像大小如下:单位kb
生成未经过加工处理的jpg金字塔:
Photoshop生成的jpg金字塔,也是未经过任何加工:
可以看出图像大小差异太大了,要看出其中的分别,只能获取元数据。
函数如下:
public void GetProperty()
{
Bitmap myImage1024 = new Bitmap(@"E:myjpgheight.jpg");
foreach (PropertyItem property in myImage1024.PropertyItems)
{
StringBuilder sb=new StringBuilder();
Byte[] sbbyte = (Byte[])property.Value;
sb.AppendFormat("ID:{0},Length:{1},Type:{2};n",
property.Id.ToString(), property.Len.ToString(), property.Type.ToString(),);
Console.Write(sb);
}
}
发现生成的jpg和原始图片的元数据是不同的
height1024:
ID:771,Length:1,Type:1; 头信息Tag解释:303 PropertyTagSRGBRenderingIntent
ID:769,Length:8,Type:5; 头信息Tag解释:301 PropertyTagGamma
ID:20752,Length:1,Type:1; 头信息Tag解释:5110 PropertyTagPixelUnit 分辨率
ID:20753,Length:4,Type:4; 头信息Tag解释:5111 PropertyTagPixelPerUnitX
ID:20754,Length:4,Type:4; 头信息Tag解释:5112 PropertyTagPixelPerUnitY
height:
ID:20625,Length:128,Type:3;头信息Tag解释:5091 PropertyTagChrominanceTable
ID:20624,Length:128,Type:3; 头信息Tag解释:5090 PropertyTagLuminanceTable
修改生成了影像金字塔的方法:在保存金字塔之前,把头信息去掉。
之后发现:生成的影像金字塔的最精细层和原始图像一样大小了!。
去除影像元数据的方法:
public void RemoveProperty()
{
Bitmap myImage1024 = new Bitmap(@"E:myjpgheight.jpg");
foreach (PropertyItem property in myImage1024.PropertyItems)
{
myImage1024.RemovePropertyItem(property.Id);
}
myImage1024.Save(@"E:myjpgnopro.jpg");
}
附,图片文件头表示图片类型的部分:
1.JPEG
- 文件头标识 (2 bytes): 0xff, 0xd8 (SOI) (JPEG 文件标识)
- 文件结束标识 (2 bytes): 0xff, 0xd9 (EOI)
2.TGA
- 未压缩的前5字节 00 00 02 00 00
- RLE压缩的前5字节 00 00 10 00 00
3.PNG
- 文件头标识 (8 bytes) 89 50 4E 47 0D 0A 1A 0A
4.GIF
- 文件头标识 (6 bytes) 47 49 46 38 39(37) 61
G I F 8 9 (7) a
5.BMP
- 文件头标识 (2 bytes) 42 4D
B M
6.PCX
- 文件头标识 (1 bytes) 0A
7.TIFF
- 文件头标识 (2 bytes) 4D 4D 或 49 49
8.ICO
- 文件头标识 (8 bytes) 00 00 01 00 01 00 20 20
9.CUR
- 文件头标识 (8 bytes) 00 00 02 00 01 00 20 20
10.IFF
- 文件头标识 (4 bytes) 46 4F 52 4D
F O R M
11.ANI
- 文件头标识 (4 bytes) 52 49 46 46
R I F F