我似乎找不到任何有关如何使用LibTiff.Net库删除tiff标签的文档。我喜欢图书馆,但这种方法对我需要做的很重要。有一次,我希望我可以设置一个标签并将其值设置为空。我原本希望这会有效,但那是负面的。
任何人都知道如何使用LibTiff.Net库删除tiff标签?
答案 0 :(得分:4)
请查看LibTiff.Net附带的TiffCP实用程序(尤其是其源代码)。
LibTiff.Net不提供删除标签的方法(LibTiff也是如此)。您需要实现TiffCP功能的部分才能实现这一目标。
基本上,您需要复制您想要保留的所有标签,并复制像素数据而无需解码和重新编码。
请同时查看Convert a multi-strip TIFF image to a single-strip one样本。它显示了如何复制标签并将原始(未解码数据)从一个图像复制到另一个图像。在某些情况下,样本实际上会解码数据,因为它需要更改条带的数量,但您不需要解码数据。
答案 1 :(得分:1)
我认为您必须将输入文件基本上复制到新的TIFF图像中,过滤掉您在此过程中不需要的标记。看一下tiffcp实用程序,它是常规libtiff发行版的一部分。它有点那样做,减去过滤。
免责声明:我从未使用过LibTiff.Net,并假设它与LibTiff非常相似。
看看tiffcp.c
首先,它手动复制/设置一些已知的标签,如分辨率,压缩,颜色等。 然后它复制所有可以在没有预处理的情况下复制的标签:
for (p = tags; p < &tags[NTAGS]; p++)
CopyTag(p->tag, p->count, p->type);
然后它复制实际的像素数据。这将从我记得的内容中删除任何tiffcp未知的标签。如果您要删除的标记位于列表中,则可以通过从该列表中删除它来轻松删除它。
答案 2 :(得分:1)
注意:首先,这可能看起来像一个很大的答案,但我想确保看到这个的人看到我所创建的所有“专有课程,以保持所有内容的清洁。为了保持答案尽可能排序并提供信息,我只会粘贴DeleteTiffTags方法的代码。其余代码可以通过here下载。
现在谈谈好事......我最终花了大约一天的时间来实现这一点,这可能归功于伟大的stackoverflow社区所回答的各种问题。我在我的一个类中写了两个小的(非常详细的)方法来删除tiff标签。第一个用于删除给定标记的列表,第二个用于删除单个标记,该标记用于上述方法。同样在这个例子中,我添加了几行来支持我的自定义tiff标签......它们都将以// ADDED注释开头。
类:
公共静态类TIFFTAGS - 这个类是通过像TIFFTAGS.DeleteTiffTags()这样的东西简单调用的主类。因为它是静态类 没有必要创建它的对象来使用它的方法。
私人课程TIFFTAGS_PAGE - 此类是驻留在TIFFTAGS类中的私有类。它的目的是包含所有的单页信息 可能在tiff中的页面。它是私人的,仅用于 内部目的。
公共类TIFFTAGS_TAG - 这是我用来根据自己的喜好将标签包装起来的课程。使用标准标签类型名称,如ASCII,SHORT,LONG, 和RATIONAL。
方法/功能:
TagExtender() - 这个小宝石是一个回调函数,允许你实际将你的CUSTOM标签保存在tiff中。没有它你的所有自定义标签 删除任何标记时都会消失(即使您只是删除了标记) 一个)。
DeleteTiffTags() - 这是删除标记列表的主要方法。只需传入一个ushort标签号列表,所有标签号都将被删除。记住 不使用TagExtender功能将导致您的自定义标签 噗!
DeleteTiffTag() - 这只是用于删除单个tiff标签。它调用DeleteTiffTags()来处理繁琐的工作。
public static bool DeleteTiffTags(string sFileName, List<ushort> ushortTagNumbers)
{
//Deletes a list of tiff tag from the given image
//Returns true if successful or false if error occured
//Define variables
List<TIFFTAGS_PAGE> ttPage = new List<TIFFTAGS_PAGE>();
//Check for empty list
if (ushortTagNumbers.Count == 0) return false;
try
{
//ADDED
m_lTagsToWrite = new List<TIFFTAGS_TAG>();
m_lTagsToWrite.Add(new TIFFTAGS_TAG("", 38001, Convert.ToString("")));
m_lTagsToWrite.Add(new TIFFTAGS_TAG("", 38002, Convert.ToString("")));
m_parentExtender = Tiff.SetTagExtender(TagExtender);
//Open the file for reading
using (Tiff input = Tiff.Open(sFileName, "r"))
{
if (input == null) return false;
//Get page count
int numberOfDirectories = input.NumberOfDirectories();
//Go through all the pages
for (short i = 0; i < numberOfDirectories; ++i)
{
//Set the page
input.SetDirectory(i);
//Create a new tags dictionary to store all my tags
Dictionary<ushort, FieldValue[]> dTags = new Dictionary<ushort, FieldValue[]>();
//Get all the tags for the page
for (ushort t = ushort.MinValue; t < ushort.MaxValue; ++t)
{
TiffTag tag = (TiffTag)t;
FieldValue[] tagValue = input.GetField(tag);
if (tagValue != null)
{
dTags.Add(t, tagValue);
}
}
//Check if the page is encoded
bool encoded = false;
FieldValue[] compressionTagValue = input.GetField(TiffTag.COMPRESSION);
if (compressionTagValue != null)
encoded = (compressionTagValue[0].ToInt() != (int)Compression.NONE);
//Create a new byte array to store all my image data
int numberOfStrips = input.NumberOfStrips();
byte[] byteImageData = new byte[numberOfStrips * input.StripSize()];
int offset = 0;
//Get all the image data for the page
for (int n = 0; n < numberOfStrips; ++n)
{
int bytesRead;
if (encoded)
bytesRead = input.ReadEncodedStrip(n, byteImageData, offset, byteImageData.Length - offset);
else
bytesRead = input.ReadRawStrip(n, byteImageData, offset, byteImageData.Length - offset);
//Add to the offset keeping up with where we are
offset += bytesRead;
}
//Save all the tags, image data, and height, etc for the page
TIFFTAGS_PAGE tiffPage = new TIFFTAGS_PAGE();
tiffPage.Height = input.GetField(TiffTag.IMAGELENGTH)[0].ToInt();
tiffPage.Tags = dTags;
tiffPage.PageData = byteImageData;
tiffPage.Encoded = encoded;
tiffPage.StripSize = input.StripSize();
tiffPage.StripOffset = input.GetField(TiffTag.STRIPOFFSETS)[0].ToIntArray()[0];
ttPage.Add(tiffPage);
}
}
//Open the file for writing
using (Tiff output = Tiff.Open(sFileName + "-new.tif", "w"))
{
if (output == null) return false;
//Go through all the pages
for (short i = 0; i < ttPage.Count(); ++i)
{
//Write all the tags for the page
foreach (KeyValuePair<ushort, FieldValue[]> tagValue in ttPage[i].Tags)
{
//Write all the tags except the one's needing to be deleted
if (!ushortTagNumbers.Contains(tagValue.Key))
{
TiffTag tag = (TiffTag)tagValue.Key;
output.GetTagMethods().SetField(output, tag, tagValue.Value);
}
}
//Set the height for the page
output.SetField(TiffTag.ROWSPERSTRIP, ttPage[i].Height);
//Set the offset for the page
output.SetField(TiffTag.STRIPOFFSETS, ttPage[i].StripOffset);
//Save page data along with tags
output.CheckpointDirectory();
//Write each strip one at a time using the same orginal strip size
int numberOfStrips = ttPage[i].PageData.Length / ttPage[i].StripSize;
int offset = 0;
for (int n = 0; n < numberOfStrips; ++n)
{
//Write all the image data (strips) for the page
if (ttPage[i].Encoded)
//output.WriteEncodedStrip(n, byteStrip, offset, byteStrip.Length - offset);
output.WriteEncodedStrip(0, ttPage[i].PageData, offset, ttPage[i].StripSize - offset);
else
output.WriteRawStrip(n, ttPage[i].PageData, offset, ttPage[i].StripSize - offset);
//Add to the offset keeping up with where we are
offset += ttPage[i].StripOffset;
}
//Save the image page
output.WriteDirectory();
}
}
//ADDED
Tiff.SetTagExtender(m_parentExtender);
}
catch
{
//ADDED
Tiff.SetTagExtender(m_parentExtender);
//Error occured
return false;
}
//Return success
return true;
}