Documents for Imaging ReadMe
ReadMe / Installation
In This Topic
    Installation
    In This Topic

    Setting up an application

    GcImaging references are available through NuGet, a Visual Studio extension that adds the required libraries and references to your project automatically. To work with GcImaging, you need to have following references in your application:

    Reference Purpose
    GrapeCity.Documents.Imaging

    To use GcImaging in an application, you need to reference (install) just the GrapeCity.Documents.Imaging package. It will pull in the required infrastructure packages.

    GrapeCity.Documents.Common GrapeCity.Documents.Common is an infrastructure package used by GcImaging. You do not need to reference it directly.
    GrapeCity.Documents.Common.Windows On a Windows system, you can optionally install GrapeCity.Documents.Common.Windows. It provides support for font linking specified in the Windows registry, and access to native Windows imaging APIs, improving performance and adding some features (e.g. reading TIFF-JPEG frames).
    GrapeCity.Documents.DX.Windows GrapeCity.Documents.DX.Windows is an infrastructure package used by GrapeCity.Documents.Common.Windows. You do not need to reference it directly.

    Add reference to GcImaging in your application from NuGet.org

    In order to use GcImaging in a .NET Core, ASP.NET Core, .NET Framework application (any target that supports .NET Standard 2.0), install the NuGet packages in your application using the following steps:

    1. Open Visual Studio.
    2. Create any application (any target that supports .NET Standard 2.0).
    3. Right-click the project in Solution Explorer and choose Manage NuGet Packages.
    4. In the Package source on top right, select nuget.org.
    5. Click Browse tab on top left and search for "Grapecity.Documents".
    6. On the left panel, select GrapeCity.Documents.Imaging
    7. On the right panel, click Install.
                                             
    8. In the Preview Changes dialog, click OK and choose I Accept in the next screen.

    This will add required references of the package to your application.

    1. Open Visual Studio for Mac.
    2. Create any application (any target that supports .NET Standard 2.0).
    3. In tree view on the left, right-click Dependencies and choose Add Packages.
    4. In the Search panel, type "GrapeCity.Documents".
    5. From the list of packages displayed in the left panel, select GrapeCity.Documents.Imaging and click Add Packages.
    6. Click Accept.

    This will automatically add references of the package and its dependencies to your application.

    1. Open Visual Studio Code.
    2. Install Nuget Package Manager from Extensions.
    3. Create a folder "MyApp" in your Home folder.
    4. In the Terminal in Visual Studio Code, type "cd MyApp"
    5. Type command"dotnet new console"
      Observe: This creates a .NETCore application with MyApp.csproj file and Program.cs.
    6. PressCtrl+P.A command line opens at the top.
    7. Type command: ">"
      Observe: "Nuget Package Manager: Add Package" option appears.
    8. Click the above option.
    9. Type "Grapecity" and press Enter.
      Observe: GrapeCity packages get displayed in the dropdown.
    10. Choose GrapeCity.Documents.Imaging.
    11. Type following command in the Terminal window: "dotnet restore"

    This will add references of the package to your application.