GrapeCity.Documents.Pdf 0.3.0.70-beta01

This is a prerelease version of GrapeCity.Documents.Pdf.
There is a newer version of this package available.
See the version list below for details.
dotnet add package GrapeCity.Documents.Pdf --version 0.3.0.70-beta01
                    
NuGet\Install-Package GrapeCity.Documents.Pdf -Version 0.3.0.70-beta01
                    
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="GrapeCity.Documents.Pdf" Version="0.3.0.70-beta01" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GrapeCity.Documents.Pdf" Version="0.3.0.70-beta01" />
                    
Directory.Packages.props
<PackageReference Include="GrapeCity.Documents.Pdf" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GrapeCity.Documents.Pdf --version 0.3.0.70-beta01
                    
#r "nuget: GrapeCity.Documents.Pdf, 0.3.0.70-beta01"
                    
#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.
#:package GrapeCity.Documents.Pdf@0.3.0.70-beta01
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GrapeCity.Documents.Pdf&version=0.3.0.70-beta01&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=GrapeCity.Documents.Pdf&version=0.3.0.70-beta01&prerelease
                    
Install as a Cake Tool
  • GcPdf is a collection of .NET Standard 2.0 class libraries written in C#. It provides an API that allows to create PDF documents from scratch and to load, analyze and modify existing files.
  • GcPdf's object model closely follows the Adobe PDF spec, and strives to provide direct access to the PDF features.
  • GcPdf includes a powerful platform-independent font processing and text layout engine, and some other high-level features that make creating PDFs easy and convenient.
  • GcPdf works on all platforms supported by .NET Standard, including .NET Core, ASP.NET Core, .NET Framework etc.

Quick Start

This code will create a "Hello, World!" PDF:

using GrapeCity.Documents.Pdf;
using GrapeCity.Documents.Text;
...
var pdf = new GcPdfDocument();
var page = pdf.Pages.Add();
page.Graphics.DrawString("Hello, World!", new TextFormat(), new PointF(72, 72));
pdf.Save("helloworld.pdf");

Code Samples

The online GcPdf Sample Browser at: http://demos.componentone.com/DocumentServices/GcPdfWeb demonstrates many of the available features in action, showing various sample PDFs and the code that generated them.
All samples can be downloaded as standalone .NET Core command line app Visual Studio projects with full source code. New samples are added regularly, so check back often. The Sample Browser's About page includes an overview of the GcPdf's object model. There is also a link to the full API Reference.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 (26)

Showing the top 5 NuGet packages that depend on GrapeCity.Documents.Pdf:

Package Downloads
GrapeCity.ActiveReports.Export.Pdf

ActiveReports is a set of assemblies that enable you to create, render, print, and export reports in a .NET or .NET Core application. This package includes the core engine assemblies required to create and render pixel perfect, WYSIWYG, reports.

GrapeCity.ActiveReports.Core.Export.Pdf.Page

ActiveReports PDF export library

GrapeCity.ActiveReports.Core.Export.Pdf.Section

ActiveReports RDF document PDF rendering implementation

GrapeCity.Documents.Excel

GrapeCity Documents for Excel is a high-speed, small-footprint spreadsheet API that requires no dependencies on Excel. With full .NET 6 support, you can generate, load, modify, and convert spreadsheets in .NET 6, .NET Framework, .NET Core, Mono, and Xamarin. Apps using this spreadsheet API can be deployed to cloud, Windows, Mac, or Linux. Its powerful calculation engine and breadth of features means you’ll never have to compromise design or requirements. We model our interface-based API on Excel's document object model. This means that you can import, calculate, query, generate, and export any spreadsheet scenario. Using GcExcel, you can create full reports, sorted and filtered tables, sorted and filtered pivot tables, dashboard reports, add charts, sparklines, conditional formats, import and export Excel templates and also convert spreadsheets to PDF. The online Documents for Excel sample browser is available at https://www.grapecity.com/documents-api-excel/demos

GrapeCity.Documents.Html

This is a cross-platform library that provides HTML processing and rendering features to other GrapeCity.Documents packages (GrapeCity.Documents.Pdf, GrapeCity.Documents.Imaging).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.2.3 150,180 10/9/2024
7.2.2 45,673 9/20/2024
7.2.1 1,701 9/3/2024
7.2.0 129,772 8/19/2024
7.1.4 5,002 7/24/2024
7.1.3 7,502 6/26/2024
7.1.2 58,349 5/29/2024
7.1.1 20,132 4/24/2024
7.1.0 66,365 4/15/2024
7.0.4 6,195 3/22/2024
7.0.3 6,063 2/21/2024
7.0.2 3,570 1/25/2024
7.0.1 4,741 1/5/2024
7.0.0 104,645 12/11/2023
6.2.5 59,375 11/23/2023
6.2.4 86,636 10/27/2023
6.2.3 24,260 9/28/2023
6.2.2 42,919 9/13/2023
6.2.1 26,339 8/17/2023
0.3.0.70-beta01 2,582 2/9/2018
Loading failed

This beta will expire on Oct 31, 2018.