ImageGear .NET v25.2 - Updated
ImageGear.Formats.Common Assembly / ImageGear.Formats Namespace / ImGearCommonFormats Class / Initialize Method / Initialize(String) Method
Path to the binary dynamic libraries participating in reading/writting of the common file formats.




In This Topic
    Initialize(String) Method
    In This Topic
    Initializes the ImageGear.Formats.Common.dll assembly with path to binary modules.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub Initialize( _
       ByVal binaryPath As String _
    ) 
    'Usage
     
    Dim binaryPath As String
     
    ImGearCommonFormats.Initialize(binaryPath)
    public static void Initialize( 
       string binaryPath
    )
    public: static void Initialize( 
       string* binaryPath
    ) 
    public:
    static void Initialize( 
       String^ binaryPath
    ) 

    Parameters

    binaryPath
    Path to the binary dynamic libraries participating in reading/writting of the common file formats.
    Remarks
    This method adds formats that are implemented by the component to the ImageGear's global formats list, enabling their detection, reading, and writing. For more information about initializing assemblies, see Assembly Initialization. Unlike Initialize() method without parameters this method allows to use ImageGear.Formats.Common.dll outside ImageGear installation directory.
    See Also