public DicomElement FindSignature(
string signatureUID
)
public:
DicomElement^ FindSignature(
String^ signatureUID
)
signatureUID
Character string that contains the Digital Signature UID of the Digital Signature for which to search.
The Digital Signatures Sequence Item that corresponds to the Digital Signature with the specified Digital Signature UID, or a null reference (Nothing in VB) if no such Digital Signature was found in the Data Set.
Each Digital Signature should be uniquely identified by a UID specified by the Digital Signature UID (0400,0100) under the corresponding Digital Signatures Sequence Item. Call this method to search the whole Data Set for a Digital Signature by its Digital Signature UID. Once the Digital Signatures Sequence Item is obtained, the following methods can be used to verify, delete, or get information about the Digital Signature:
Call the GetSignaturesCount and GetSignature methods to enumerate the Digital Signatures in the main Data Set or in an item of a Sequence of Items.
This example will locate (find) a digital signature inside a DICOM dataset by searching for its UID.
using Leadtools;
using Leadtools.Dicom;
public void FindSignature()
{
string dicomFileName = Path.Combine(LEAD_VARS.ImagesDir, "DICOM", "image3.dcm");
//Make sure to initialize the DICOM engine, this needs to be done only once
//In the whole application
DicomEngine.Startup();
using (DicomDataSet ds = new DicomDataSet())
{
//Load DICOM File
ds.Load(dicomFileName, DicomDataSetLoadFlags.None);
string signatureUID = "1.2.840.114257.0.130573664";
// Search the whole Data Set for the Digital Signature with the
// specified Digital Signature UID
DicomElement signatureItem = ds.FindSignature(signatureUID);
if (signatureItem != null)
{
ds.DeleteSignature(signatureItem);
Console.WriteLine("Sample: The Digital Signature was found and got deleted.");
}
else
{
Assert.Fail("signatureItem is null");
Console.WriteLine("Sample: The Digital Signature could not be found.");
}
}
DicomEngine.Shutdown();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document