PdfFormFillUpUtility 1.0.0
dotnet add package PdfFormFillUpUtility --version 1.0.0
NuGet\Install-Package PdfFormFillUpUtility -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PdfFormFillUpUtility" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PdfFormFillUpUtility --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PdfFormFillUpUtility, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PdfFormFillUpUtility as a Cake Addin #addin nuget:?package=PdfFormFillUpUtility&version=1.0.0 // Install PdfFormFillUpUtility as a Cake Tool #tool nuget:?package=PdfFormFillUpUtility&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FillPdfForm
.NET Library to fill pdf forms dynamically
Getting Started
Installing Package
Install-Package FillPdfFormUtility -Version 1.0.0
Usage
Get list of form fields in a PDF
var filePath = ".\leaveform.pdf";
var listOfFields = PdfFormUtility.GetFieldsToMap(filePath);
Filling a PDF Form.
Fill a PDF Form with given data and returns the PDF bytes.
var filePath = ".\leaveform.pdf";
var inputData= new Dictionary<string, string>
{
{"Given Name Text Box", "Sagar Pathak"},
{"Family Name Text Box", "Anjali R Sharma"},
{"Favourite Colour List Box", "Red"},
{"Language 1 Check Box", "Off"},
{"Language 2 Check Box", "Off"},
{"Language 3 Check Box", "Off"},
{"Language 4 Check Box", "Off"},
{"Language 5 Check Box", "On"},
{"Address 1 Text Box", "JB Nagar"},
{"Address 2 Text Box", "Chakala, Andheri East"},
{"Postcode Text Box", "12345"},
{"City Text Box", "Mumbai"},
{"House nr Text Box", "23 A"},
{"Country Combo Box", "Denmark"},
{"Gender List Box", "Man"},
{"Height Formatted Field", "175 cm"},
{"Driving License Check Box", "On"}
});
var result = PdfFormUtility.GeneratePdf(filePath, inputData);
DemoConsoleApp
This is a console app for reference purpose where you can see how we can hookup fill form utility.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- itext7 (>= 7.2.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 683 | 5/26/2022 |