questpdf

QuestPDF report generation with fluent C# API. Use when generating PDF documents, designing report layouts, creating invoices/data tables, implementing page structures with headers/footers, or building reusable document components.

allowed_tools: Read, Write, Edit, Glob, Grep, Bash(dotnet:*), WebFetch

$ 安裝

git clone https://github.com/keithdv/ClaudeSkills /tmp/ClaudeSkills && cp -r /tmp/ClaudeSkills/skills/questpdf ~/.claude/skills/ClaudeSkills

// tip: Run this command in your terminal to install the skill


name: questpdf description: QuestPDF report generation with fluent C# API. Use when generating PDF documents, designing report layouts, creating invoices/data tables, implementing page structures with headers/footers, or building reusable document components. allowed-tools: Read, Write, Edit, Glob, Grep, Bash(dotnet:*), WebFetch

QuestPDF Report Generation

Overview

QuestPDF is a modern C# library for PDF document generation with a dedicated layout engine optimized for PDF creation. It uses a component-based, fluent API architecture where simple elements are composed into sophisticated documents.

Key Benefits

FeatureDescription
Native C# APINo HTML-to-PDF conversion - direct PDF generation
Component-BasedReusable IComponent pattern for modular documents
Automatic PaginationContent flows naturally across pages
Type-SafeCompile-time checked document structure
Fluent APIIntuitive chaining syntax for layout definition

Installation

dotnet add package QuestPDF

License: Free for individuals, non-profits, and businesses < $1M annual revenue.

Quick Start

using QuestPDF.Fluent;
using QuestPDF.Infrastructure;
using QuestPDF.Helpers;

Document.Create(container =>
{
    container.Page(page =>
    {
        page.Size(PageSizes.A4);
        page.Margin(50);

        page.Header().Text("My Report").FontSize(24).Bold();

        page.Content().Column(column =>
        {
            column.Spacing(10);
            column.Item().Text("Hello, QuestPDF!");
            column.Item().Text($"Generated: {DateTime.Now:g}");
        });

        page.Footer().AlignCenter().Text(text =>
        {
            text.Span("Page ");
            text.CurrentPageNumber();
            text.Span(" of ");
            text.TotalPages();
        });
    });
}).GeneratePdf("report.pdf");

Common Pitfalls

PitfallSolution
Constraint conflictsEnsure parent containers provide sufficient space for width/height constraints
Header/Footer heightCombined header + footer must leave space for content
Image loadingLoad images once and reuse for performance
Text overflowUse .ClampLines() or ensure adequate width
DateTime metadataUse DateTimeOffset.Now instead of DateTime.Now

Additional Resources

For detailed guidance, see:

API Reference

For complete API documentation, see: https://www.questpdf.com/api-reference/