Methods used by FindFileFormat to determine the type of an image.
Namespace: HiComponents.IEvolutionAssembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0
Syntax
C# | Visual Basic | Visual C++ |
public enum FindFormatMethod
Public Enumeration FindFormatMethod
public enum class FindFormatMethod
Members
Member | Value | Description |
---|---|---|
ContentOnly | 0 |
Only the content of the file is examined. The filename is ignored (No extension checking)
|
VerifyByExtension | 1 |
The content is examined to determine the type. This is then compared to the file extension and Unknown is returned if the type does not match (Strict extension checking)
|
FallbackToExtension | 2 |
The content is examined to determine the type. If it cannot be determined (which can happen with some Dicom and Raw formats), then the type is guessed by the file extension (Optimistic extension checking)
|