C#处理JPEG头信息的方法
曾经有人给我了一张jpg,是1024*1024大小,文件大小为99kb,做了个金字塔,各层影像大小如下:单位kb
我生成的jpg金字塔 为经过任何加工
height256 46.2kb
height512 162kb
height1024 557kb
photoshop生成的jpg金字塔 为经过任何加工
height256 48kb
height512 90kb
height1024 163kb
可以看出这个图像大小差异太大了,我可是百思不得其解,最终看了上面那篇博文后,通过获取元数据的方式来看看原因:
获取元数据函数
public void getproperty()
{
bitmap myimage1024 = new bitmap(@"e:\myjpg\height.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
原来如此,这样我们就知道为什么jpg竟然不一样大小了,那好吧,我就修改了生成了影像金字塔的方法:在保存金字塔之前,把他们的头信息去掉。之后惊奇的发现:我生成的影像金字塔的最精细层和原始图像一样大小了!。
去除影像元数据的方法:
public void removeproperty()
{
bitmap myimage1024 = new bitmap(@"e:\myjpg\height.jpg");
foreach (propertyitem property in myimage1024.propertyitems)
{
myimage1024.removepropertyitem(property.id);
}
myimage1024.save(@"e:\myjpg\nopro.jpg");
}