iTextSharp.PdfHelpers 1.0.0

dotnet add package iTextSharp.PdfHelpers --version 1.0.0
NuGet\Install-Package iTextSharp.PdfHelpers -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="iTextSharp.PdfHelpers" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add iTextSharp.PdfHelpers --version 1.0.0
#r "nuget: iTextSharp.PdfHelpers, 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 iTextSharp.PdfHelpers as a Cake Addin
#addin nuget:?package=iTextSharp.PdfHelpers&version=1.0.0

// Install iTextSharp.PdfHelpers as a Cake Tool
#tool nuget:?package=iTextSharp.PdfHelpers&version=1.0.0

PdfHelpers.Resize

Lightweight Helper Library for performing tasks on Pdf files such as: scaling and resizing Pdf Documents and Pages of existing Pdf documents, converting Images into Pdf format, and merging Pdf Documents as well as merging Images into Existing Pdf documents. It leverages iTextSharp for core work but offeres a easy wrapper for common resizing, conversion, and merging needs. In addition, this library is intented to help simplify the task of rendering Pdf based outputs/reports and works best when combined with a template based Pdf Rendering process such as the one here that allows use of Razor templates to render Pdf files.

It's as easy as . . .

Sample for Resizing Pdf Content:
byte[] pdfBytes = File.ReadAllBytes("...path to pdf...");
var targetSizeInfo = new PdfResizeInfo(PageSize.POSTCARD, PdfMarginSize.None);
byte[] scaledPdfBytes = PdfResizeHelper.ResizePdfPageSize(pdfBytes, targetSizeInfo, PdfScalingOptions.Default)

PdfHelpers.Convert

Set of helpers for converting common things into Pdf (e.g. converting an Image into Pdf for mergeing/Combining into other Pdf documents.

Sample for Converting Image to Pdf Document:
var imageBytes = File.ReadAllBytes("...path to valid Image...");
var pageSizeInfo = new PdfResizeInfo(PageSize.POSTCARD, PdfMarginSize.None);
var pdfBytes = PdfConvertHelper.ConvertImageToPdf(imageBytes, pageSizeInfo, PdfScalingOptions.Default);

PdfHelpers.Merge

Set of helpers for merging Pdf documents together into one output Pdf. When combined with the Convert helper above it's easy to append Image files onto an existing Pdf).

NOTE: This uses the PdfSmartCopy underlying copier to merge the documents. Therfore, assuming they haven't been scaled/resized the annotations and dynamic elements will be preserved. This also enables the output document to be optimized without unnecessary duplicate references to embedded elemetns such as Fonts.

Sample for Converting Image to Pdf Document:
var pageSizeInfo = new PdfResizeInfo(PageSize.POSTCARD, PdfMarginSize.None);

var pdfFileBytesList = new List<byte[]>() {
    File.ReadAllBytes("...path to pdf..."),
    PdfConvertHelper.ConvertImageToPdf("...path to valid Image 1...", pageSizeInfo),
    PdfConvertHelper.ConvertImageToPdf("...path to valid Image 2...", pageSizeInfo),
    PdfConvertHelper.ConvertImageToPdf("...path to valid Image 3...", pageSizeInfo),
};

var pdfBytes = PdfConvertHelper.MergePdfFiles(pdfFileBytesList, pageSizeInfo);
NOTES:

Loss of Interactive Elements from Pdfs:
iTextSharp does not allow manipulation of content when using the PdfCopy or PdfSmartCopy classes for Pdf merging, therefore the PdfWriter must be used to make changes to content such as scaling it -- as opposed to just adding overlay/underlay content. This has the side effect of causing loss of interactive functions of pages that are resized such as Annotations, Form Fields, etc. However for many use cases this is perfectly valid implilcation when resizing content as Annotations would lose their positions, and form fields could become unusable, etc. So for Read-only content the concept of scaling/re-sizing will work with the approach used here.

Additional information: Great overview of merging and manipulating Pdfs with iTextSharp (e.g. iText) can be found in the free online book chapter -- written by the authoer of iText -- here:
https://livebook.manning.com/book/itext-in-action-second-edition/chapter-6/

/*
MIT License

Copyright (c) 2018

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
Product 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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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.

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 6,863 3/12/2020

Initial package upload for PdfHelpers.