Click or drag to resize

AtalasoftConfigSectionRawDecoder Property

Gets a RawDecoder component configuration section.

Namespace:  Atalasoft.Shared
Assembly:  Atalasoft.Shared (in Atalasoft.Shared.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public RawDecoderConfigElement RawDecoder { get; }

Property Value

Type: RawDecoderConfigElement
Examples
In order to use custom libraw.dll the following configuration should be used (LibRawLocation should point to a folder where desired libraw.dll is located):
<?xml version="1.0" encoding="utf-8" ?>
 <configuration>
   <configSections>
     <section name="Atalasoft"
                 type="Atalasoft.Shared.AtalasoftConfigSection, Atalasoft.Shared"/>
  </configSections>

  <Atalasoft>
    <RawDecoder UserDefinedLibRaw=true LibRawLocation="C:\Folder\Subfolder\SubSubFolder "/>
  </Atalasoft>
</configuration>
Examples
RawDecoder library configuration sample:
<?xml version="1.0" encoding="utf-8" ?>
 <configuration>
   <configSections>
     <section name="Atalasoft"
                 type="Atalasoft.Shared.AtalasoftConfigSection, Atalasoft.Shared"/>
  </configSections>

  <Atalasoft>
    <RawDecoder LibRawLocation="C:\Folder\Subfolder\SubSubFolder" NativeLibValidationType="Signature"/>
  </Atalasoft>
</configuration>
See Also