ShreePdf 1.7.0
See the version list below for details.
dotnet add package ShreePdf --version 1.7.0
NuGet\Install-Package ShreePdf -Version 1.7.0
<PackageReference Include="ShreePdf" Version="1.7.0" />
<PackageVersion Include="ShreePdf" Version="1.7.0" />
<PackageReference Include="ShreePdf" />
paket add ShreePdf --version 1.7.0
#r "nuget: ShreePdf, 1.7.0"
#:package ShreePdf@1.7.0
#addin nuget:?package=ShreePdf&version=1.7.0
#tool nuget:?package=ShreePdf&version=1.7.0
<div align="center">
<img src="https://raw.githubusercontent.com/jjopensoftworks-blip/ShreePdf/main/logo.png" width="300" alt="ShreePdf">
ShreePdf
Radiant, intelligent PDF generation for .NET — built for the AI era.
Generate beautifully designed PDFs directly from C#, Markdown, or HTML — no headless browser, no native print stack, no external services.
</div>
Install
dotnet add package ShreePdf
Hello, PDF
using ShreePdf.Fluent;
Document.Create("Welcome")
.AddText("Hello, ShreePdf 👋", fontSize: 24, isBold: true)
.AddText("Beautiful, themed PDFs — straight from C#.")
.Save("welcome.pdf");
Markdown & LLM output → themed PDF
Perfect for turning AI assistant responses or docs into polished output.
string markdown = """
# Quarterly Review
- Revenue up **24%**
- Churn down **3%**

[Full report](https://example.com/report)
> Prepared by our AI assistant.
""";
Document.FromMarkdown(markdown, ThemePresets.SaaSAnalytics)
.EnableAutoFit()
.Save("review.pdf");
Ingestion understands inline images — Markdown  and HTML <img>, resolved from a file path, URL, or data URI — and Markdown links ([text](url)). A broken image source is skipped rather than failing the whole document.
Rich documents with the fluent API
var pdf = Document.Create("Invoice #1042")
.WithTheme(ThemePresets.ExecutiveMinimal)
.AddImageFromFile("logo.png", width: 120)
.AddText("Invoice #1042", fontSize: 20, isBold: true)
.AddBulletList("Design services", "Cloud hosting", "Priority support")
.AddTable(t =>
{
t.Columns.Add(new TableColumn { Header = "Item" });
t.Columns.Add(new TableColumn { Header = "Amount", Alignment = Alignment.Right });
var row = new TableRow();
row.Cells.Add("Total due");
row.Cells.Add(new TableCell("$4,200.00") { IsBold = true, Alignment = Alignment.Right });
t.Rows.Add(row);
})
.AddPageNumber("Page {page} of {pages}")
.GenerateBytes();
Navigation: bookmarks & table of contents
Headings automatically become a reader-sidebar bookmark outline, and a one-liner drops in an auto table of contents with page numbers and clickable rows.
Document.Create("Handbook")
.AddTableOfContents("Contents") // page numbers + links, filled automatically
.AddHeading("Getting Started", 1) // becomes a bookmark + a TOC row
.AddText("Welcome to the handbook.")
.AddHeading("Installation", 2) // nested under the previous heading
.AddText("Add the NuGet package and you're set.")
.AddHeading("Advanced Usage", 1)
.Save("handbook.pdf");
Bulk / mail-merge with templates
var data = new Dictionary<string, string?> { ["customer"] = "Ada Lovelace", ["total"] = "$4,200" };
Document.FromMarkdownTemplate("# Statement for {{customer}}\n\nBalance: **{{total}}**", data)
.Save("statement.pdf");
Output anywhere
doc.Save("report.pdf"); // to a file
byte[] bytes = doc.GenerateBytes(); // in memory
await doc.GenerateBytesAsync(); // async (web / serverless)
doc.GenerateToStream(httpResponseStream); // stream directly, bounded memory
Highlights
- 🎨 Out-of-the-box themes — professional presets so documents never look "default."
- 📝 Universal ingestion — build with a fluent C# API, or drop in Markdown or HTML.
- 🧩 Rich content — text, images, hyperlinks & anchors, ordered/unordered lists, styled multi-page tables, page numbers, watermarks, landscape, and full-bleed backgrounds.
- 🧭 Navigation built in — reader-sidebar bookmarks from your headings, plus an auto table of contents with page numbers and clickable links.
- 📄 Tidy pagination — smart page budgeting keeps content clean and avoids awkward orphan spills.
- ⚡ Fast & flexible output — synchronous,
async, or direct-to-Stream. - 🤖 AI / RAG friendly — optional machine-readable document metadata for indexing pipelines.
- 🌐 ASP.NET Core ready — Minimal API results and Razor view rendering.
Learn more
- ▶️ Interactive playground, samples & full documentation: jjopensoftworks-blip.github.io/ShreePdfPage
- 📦 Source, samples & issues: github.com/jjopensoftworks-blip/ShreePdf
Licensing
ShreePdf ships in a free Community tier for evaluation and everyday use, and a Pro tier for unlimited-page, watermark-free commercial use. See the project site for details.
<div align="center">
Made with ❤️ by jjopensoftworks-blip
</div>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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 is compatible. 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. |
-
net10.0
- SkiaSharp (>= 4.151.0)
- SkiaSharp.NativeAssets.Linux.NoDependencies (>= 4.151.0)
-
net8.0
- SkiaSharp (>= 4.151.0)
- SkiaSharp.NativeAssets.Linux.NoDependencies (>= 4.151.0)
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.16.0 | 99 | 8/25/2026 |
| 1.15.0 | 99 | 8/23/2026 |
| 1.14.0 | 104 | 8/19/2026 |
| 1.13.0 | 88 | 8/19/2026 |
| 1.12.0 | 85 | 8/19/2026 |
| 1.11.0 | 109 | 8/17/2026 |
| 1.10.0 | 103 | 8/15/2026 |
| 1.9.0 | 103 | 8/9/2026 |
| 1.8.0 | 97 | 8/9/2026 |
| 1.7.0 | 94 | 8/6/2026 |
| 1.6.0 | 114 | 8/4/2026 |
| 1.5.0 | 101 | 8/6/2026 |
| 1.3.0 | 111 | 8/1/2026 |
| 1.0.0 | 100 | 7/31/2026 |