C# - 从tif文件中删除属性标记项

时间:2013-10-18 22:43:07

标签: c# image tiff

我正在尝试从tif文件中清除一些属性标记项。
我的测试代码是:

Image sourceImg = new Bitmap("A10034.tif");
Image img = (Image)sourceImg.Clone();
sourceImg.Dispose();

PropertyItem[] propertyItemsList = img.PropertyItems;
foreach (PropertyItem property in propertyItemsList)
{
    if ((property.Id == 270 || property.Id == 271 || property.Id == 272 || property.Id == 305 ||
         property.Id == 315 || property.Id == 316) || (property.Id > 320 && property.Id != 33432))
    {
        img.RemovePropertyItem(property.Id);
    }
}

ImageCodecInfo Encoder = GetEncoderInfo("image/tiff");
EncoderParameters EncoderParams = new EncoderParameters(2);
EncoderParams.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Compression, (Int64)EncoderValue.CompressionNone);
EncoderParams.Param[1] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 100L);
if (System.IO.File.Exists("cleared_A10034.tif"))
{
    System.IO.File.Delete("cleared_A10034.tif");
}
img.Save("cleared_A10034.tif", Encoder, EncoderParams);
img.Dispose();

这适用于WinXp和Win 8,但在Win 7中不起作用。
目标文件中的所有标记与Win7中的源文件相同。没有删除。
任何想法?
谢谢。
如果需要,您可以下载test project

1 个答案:

答案 0 :(得分:4)

问题已解决。
我在保存之前添加了图像旋转,现在一切正常。

img.RotateFlip(RotateFlipType.Rotate180FlipNone);
img.RotateFlip(RotateFlipType.Rotate180FlipNone);
img.Save("cleared_" + fileName, Encoder, EncoderParams);

奇怪,但这很有效。