ComPDFKit PDF SDK is a robust PDF library, which offers comprehensive functions for quickly viewing, annotating, editing, and signing PDFs. It is feature-rich and battle-tested, making PDF files process and manipulation easier and faster.
- ComPDFKit API Library for .Net
- Download ComPDFKit PDF SDK for .NET Core in Nuget
- How to Build a Windows PDF Viewer or Editor
- Brief Introduction to ComPDFKit for Windows
-
Visual Studio
Make sure that the
.NET Core cross-platform development
workload andMSBUILD
are part of your installation.This guide will use Visual Studio 2022. If you would like to use the NuGet integration for Windows x64 please make sure you have Visual Studio 2017 or later.
Note: ComPDFKit PDF SDK is multi-targeting. Target Frameworks: .NET Core 2.1+, .NET Standard 2.0, .NET 5, .NET 6, .NET 7, .NET 8.
-
ComPDFKit 's .NET Core PDF Library for Windows:
Please contact us to get the ComPDFKit PDF SDK for .NET Core.
-
ComPDFKit PDF SDK license
Commercial license keys are required for use in production environments. If you do not have a valid license key, please contact us to obtain the license key.
License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).
- Open the solution file 'Example. sln' in Visual Studio.
- Select a sample project in Solution Explorer and set it as the startup project. CS and VB examples are currently available.
- Build and run the example.
Or you can open the command line tool in the project folder and run the example through the command:
dotnet run
-
Open a new instance of Visual Studio 2022and create a new .NET Core console application project (
File > New > Project...
). You can find this under the Visual C# menu.Click on OK and allow the IDE to create the project.
-
Find the Solution Explorer on the right side of the screen. Select the project and press
Alt + Enter
. This will open the properties tab.Alternatively, you can right click on the project and find the properties option.
Select .NET Core 2.1 (or above) as the target framework for your application.
If you are using a Windows x64 machine for your .NET Core development, you can use NuGet package manager to get the ComPDFKit PDF SDK. Otherwise, please integrate the SDK manually.
-
Right-click "Dependencies" and click "Add Project Reference", which will open the "Reference Manager" dialog box. Click the option at the bottom of the dialog box, find the corresponding "ComPDFKit.NET.dll", select it and click Add.
-
In the Solution Explorer, select the project and press
Shift + Alt + A
. With this you can Add an Existing Item.Alternatively, you can right click on the project and find the
Add an existing item...
option under theAdd
submenu.Navigate to the library location again, select the file type as
All Files (*.*)
and selectComPDFKitNative.dll
. Click Add. -
Select ComPDFKit.NET.dll in the solution explorer. A properties window should appear below. In it, change the Build Action setting to
Content
and the Copy to Output Directory setting toCopy always
. To avoid errors, use the drop-down menus available for those fields.
-
Perform the first 2 steps of integrating manually.
-
Right click on project Dependencies and click on
Manage NuGet Packages...
. This will open the NuGet Package Manager -
Click on the
Browse
tab near the top of the package manager. In the search bar enter:ComPDFKit.NetCore
-
Select the
ComPDFKit.NetCore
package by PDF Tecnologies Inc. and click on theInstall
button in the panel with the package information. If you're prompted or an external dialog is opened for confirmation, click onOk
.After installation, you will see the reference to the package under Dependencies in Solution Explorer.
We have completed all the preparation steps. Now let's use the ComPDFKit PDF SDK to create a PDF file with a blank page, and replace your Program. cs file with the following code. Note that you need to replace your license in the 'LicenseVerify()' method.
using ComPDFKit.NativeMethod;
using ComPDFKit.PDFDocument;
using Microsoft.Win32;
using System.Reflection.Metadata;
using System.Windows;
namespace ComPDFKit_Demo
{
public class Program
{
private static bool LicenseVerify()
{
if (!CPDFSDKVerifier.LoadNativeLibrary())
return false;
LicenseErrorCode verifyResult = CPDFSDKVerifier.LicenseVerify("Input your license here");
return (verifyResult == LicenseErrorCode.E_LICENSE_SUCCESS);
}
public static void Main()
{
LicenseVerify();
CPDFDocument document = CPDFDocument.CreateDocument();
// Insert to the first page
int pageIndex = 0;
int pageWidth = 595;
int pageHeight = 842;
//The InsertPage method can specify an image path. When the image path is empty, a blank page will be inserted.
document.InsertPage(pageIndex, pageWidth, pageHeight, "");
document.WriteToFilePath("new_file.pdf");// Save the entire document object to the current path.
Console.WriteLine("Done. Results saved in new_file.pdf");
}
}
}
After running the program, please check the output file generated by the program. You will find that a PDF file with blank pages has been generated, and by default, it should be in the bin/Debug directory where your project files are located.
-
NET Core SDK Note: ComPDFKit PDF SDK is multi-targeting. Target Frameworks : .NET Core 2.1+, .NET Standard 2.0, .NET 5, .NET 6, .NET 7, .NET 8。
-
ComPDFKit 's .NET Core PDF Library for Linux: Please contact us to obtain the ComPDFKit PDF SDK for NET Core.
-
ComPDFKit PDF SDK license
Commercial license keys are required for use in production environments. If you do not have a valid license key, please contact us to obtain the license key.
License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).
Enter the sample folder and run the example from the command line:
- Input/ Run. sh all to run all examples.
- Input/ Run. shRun a specific example. For example/ Run. sh BatesTest.
If you receive an error message bash:/ Test. sh: Permission denied, you need to enter the following command:
chmod+x run .sh
You can follow the manual or nuget integration described below for operation. This section will help you build your first ComPDFKit application. If you can open, save, and close PDFDoc, you can easily integrate the rest of the ComPDFKit PDF SDK.
-
Create a new project named ComPDFKit Demo_ through the console:
mkdir ComPDFKitDemo cd ComPDFKitDemo dotnet new console -o "ComPDFKit Demo"
-
Copy the ComPDFKitNative.so file and ComPDFKit Copy the NET.dll file to the project folder.
-
Add the following code to the. csproj file:
<ItemGroup> <Reference Include="ComPDFKit.NET.dll"> <HintPath>ComPDFKit.NET.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Content Include="ComPDFKitNative.so"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup>
Your final ComPDFKit Demo.csproj file should look like this:
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <ItemGroup> <Reference Include="ComPDFKit.NET.dll"> <HintPath>ComPDFKit.NET.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Content Include="ComPDFKitNative.so"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup> </Project>
-
Create a new project named ComPDFKit Demo_ through the console:
mkdir ComPDFKitDemo cd ComPDFKitDemo dotnet new console -o "ComPDFKit Demo"
-
Enter the project folder and install ComPDFKit Core NuGet package:
dotnet add package ComPDFKit.NetCore
We have completed all the preparation steps. Now let's use the ComPDFKit PDF SDK to create a PDF file with a blank page, and replace your Program. cs file with the following code. Note that you need to replace your license in the 'LicenseVerify()' method.
using ComPDFKit.NativeMethod;
using ComPDFKit.PDFDocument;
using System.Reflection.Metadata;
namespace ComPDFKit_Demo
{
public class Program
{
private static bool LicenseVerify()
{
if (!CPDFSDKVerifier.LoadNativeLibrary())
return false;
LicenseErrorCode verifyResult = CPDFSDKVerifier.LicenseVerify("Input your license here");
return (verifyResult == LicenseErrorCode.E_LICENSE_SUCCESS);
}
public static void Main()
{
LicenseVerify();
CPDFDocument document = CPDFDocument.CreateDocument();
int pageIndex = 0;
int pageWidth = 595;
int pageHeight = 842;
document.InsertPage(pageIndex, pageWidth, pageHeight, "");
document.WriteToFilePath("new_file.pdf");
Console.WriteLine("Done. Results saved in new_file.pdf");
}
}
}
Now you can run the program from the command line:
dotnet run
Now you will find the 'new_file. pdf' file in the program output directory, which is a PDF file with a blank page.
-
.NET Core SDK
Note: ComPDFKit PDF SDK is multi-targeting. Target Frameworks : .NET Core 2.1+, .NET Standard 2.0, .NET 5, .NET 6, .NET 7, .NET 8。
-
ComPDFKit 's .NET Core PDF Library for macOS: Please contact us to obtain the ComPDFKit PDF SDK for NET Core.
-
ComPDFKit PDF SDK license
Commercial license keys are required for use in production environments. If you do not have a valid license key, please contact us to obtain the license key.
License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).
Enter the sample folder and run the example from the command line:
- Input/ Run. sh all to run all examples.
- Input/ Run. shRun a specific example. For example/ Run. sh BatesTest.
If you receive an error message bash:/ Test. sh: Permission denied, you need to enter the following command:
chmod +x run.sh
You can follow the manual or nuget integration described below for operation. This section will help you build your first ComPDFKit application. If you can open, save, and close PDFDoc, you can easily integrate the rest of the ComPDFKit PDF SDK.
-
Create a new project named ComPDFKit Demo_ through the console
mkdir ComPDFKitDemo cd ComPDFKitDemo dotnet new console -o "ComPDFKit Demo"
-
Copy the libComPDFKit.dylib file and the ComPDFKit.Desk.Core.dll file to the project folder.
-
Add the following code to the .csproj file:
<ItemGroup> <Reference Include="ComPDFKit.NET.dll"> <HintPath>ComPDFKit.Desk.Core.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Content Include="libComPDFKit.dylib"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup>
Your final ComPDFKit Demo.csproj file should look like this:
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <ItemGroup> <Reference Include="ComPDFKit.Desk.Core.dll"> <HintPath>ComPDFKit.Desk.Core.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Content Include="libComPDFKit.dylib"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup> </Project>
-
Create a new project named ComPDFKit Demo in the console:
mkdir ComPDFKitDemo cd ComPDFKitDemo dotnet new console -o "ComPDFKit Demo"
-
Go to the project folder and install the ComPDFKit.Core NuGet package:
dotnet add package ComPDFKit.NetCore
We have completed all the preparation steps. Now let us use ComPDFKit PDF SDK to create a PDF file with a blank page. Replace your Program.cs file with the following code. Note: You need to replace your license into the LicenseVerify()
method.
using ComPDFKit.NativeMethod;
using ComPDFKit.PDFDocument;
using System.Reflection.Metadata;
namespace ComPDFKit_Demo
{
public class Program
{
private static bool LicenseVerify()
{
if (!CPDFSDKVerifier.LoadNativeLibrary())
return false;
LicenseErrorCode verifyResult = CPDFSDKVerifier.LicenseVerify("Input your license here");
return (verifyResult == LicenseErrorCode.E_LICENSE_SUCCESS);
}
public static void Main()
{
LicenseVerify();
CPDFDocument document = CPDFDocument.CreateDocument();
int pageIndex = 0;
int pageWidth = 595;
int pageHeight = 842;
document.InsertPage(pageIndex, pageWidth, pageHeight, "");
document.WriteToFilePath("new_file.pdf");
Console.WriteLine("Done. Results saved in new_file.pdf");
}
}
}
Now you can run the program from the command line:
dotnet run
You will now find the new_file.pdf
file in the program output directory, which is a PDF file with a blank page.
ComPDFKit has a professional R&D team that produces comprehensive technical documentation and guides to help developers. Also, you can get an immediate response when reporting your problems to our support team.
-
For detailed information, please visit our Guides page.
-
Stay updated with the latest improvements through our Changelog.
-
For technical assistance, please reach out to our Technical Support.
-
To get more details and an accurate quote, please contact our Sales Team.
ComPDFKit PDF SDK supports flexible licensing options, please contact our sales team to know more. Each license is only valid for one application ID in development mode. However, any documents, sample code, or source code distribution from the released package of ComPDFKit PDF SDK to any third party is prohibited.
We are glad to announce that you can register a ComPDFKit API account for a free trial to process 1000 documents per month for free.