LoadingPolicy Enumeration |
Dictates how safe our raw codec should be when trying to load files.
Namespace:
Atalasoft.Imaging.Codec
Assembly:
Atalasoft.dotImage.Raw (in Atalasoft.dotImage.Raw.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax [FlagsAttribute]
public enum LoadingPolicy
<FlagsAttribute>
Public Enumeration LoadingPolicy
Members
| Member name | Description |
---|
| Safest | This offers the most protection but may not work with some files. |
| IgnoreFileBounds | Will ignore seeks which go outside of the file bounds instead of throwing an exception.
This is the default value.
|
| IgnoreCorruption | Will ignore corruption in images and make the corrupt pixels black instead of throwing an exception.
|
| LibralIsValidChecking | Will use the highest compatibility mode for isValid checks. |
| MostCompatible | This will work with the most files but offers the least amount of protection. |
See Also