惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Render a PDF to an image in .NET — with a pure-C# PDF engine
Michael Jordan · 2026-06-25 · via DEV Community

Michael Jordan

Most PDF libraries in .NET are wrappers. PDFium, MuPDF, Ghostscript — solid engines, but they ship native binaries you P/Invoke into. That buys you per-RID packages, Native AOT friction, the "works on my box, throws DllNotFoundException in the Alpine container" dance, and a deployment story that's never quite boring.

PdfLibrary takes the other road: the PDF engine and every image codec are pure managed C#. No vendored native PDF library, no native image decoders. I'll be precise about the one native piece (SkiaSharp, for rasterization) further down — because a "no native dependencies" claim that quietly ignores SkiaSharp would be a lie, and you'd find out the first time you deployed.

Here's the part you came for — rendering the first page of a PDF to a PNG:

using PdfLibrary.Structure;
using PdfLibrary.Rendering.SkiaSharp;

using var document = PdfDocument.Load("input.pdf");

document.GetPage(0)                 // 0-based page index
    .Render(document)
    .WithDpi(150)
    .ToFile("page1.png");

That's it. No engine init, no global handle to dispose, no SetDllDirectory.

Install

dotnet add package Lxman.PdfLibrary
dotnet add package Lxman.PdfLibrary.Rendering.SkiaSharp

The core package parses, creates, edits, and optimizes PDFs. The .Rendering.SkiaSharp package is the rasterization backend — add it only when you actually need pixels.

A bit more control

using var document = PdfDocument.Load("input.pdf");
var page = document.GetPage(0);

// High-DPI render with a custom background, straight to an SKImage
using var image = page.Render(document)
    .WithDpi(300)
    .WithBackgroundColor(new SKColor(255, 250, 240))   // antique white
    .ToImage();

// Or render just a region of the page
using var crop = page.Render(document)
    .WithScale(2.0)
    .WithCropBox(100, 100, 400, 600)                   // x, y, width, height
    .ToImage();

.WithScale(1.0) is 72 DPI (1 PDF point = 1 pixel); .WithDpi(n) is the same knob expressed the way you usually think about it.

The honest "no native dependencies" section

This matters, so here's the exact breakdown:

  • Lxman.PdfLibrary (core) — parsing, content streams, fonts, and all image decoding are 100% managed C#. That includes the codecs people usually reach for a native lib to handle: baseline and progressive JPEG, JPEG 2000, JBIG2, CCITT Group 3/4 fax, LZW, and Flate. Zero native dependencies.
  • Lxman.PdfLibrary.Rendering.SkiaSharp (rasterizer) — uses SkiaSharp as the 2D canvas to turn the parsed page into pixels. SkiaSharp carries a native component.

So the rule of thumb:

  • Parsing, text extraction, editing, optimizing → fully managed, ship no native code.
  • Rasterizing a page to an image → add SkiaSharp.

SkiaSharp is a well-behaved, broadly-supported cross-platform dependency, so this is a very different proposition from bundling and P/Invoking a PDF engine yourself — but it's not nothing, and you should know exactly where the line is.

It's not just a renderer

Rendering is the flashy demo, but the managed core is the actual point. A few things that need only the core package (no SkiaSharp):

Extract text:

using var doc = PdfDocument.Load("input.pdf");
string text = doc.GetPage(0).ExtractText(doc);

Edit an existing document:

using PdfLibrary.Editing;

using var doc = PdfDocument.Load("input.pdf");
var edit = doc.Edit();
edit.Pages.RemoveAt(2);     // delete the 3rd page
edit.Pages.Rotate(0, 90);   // rotate the 1st page 90°
edit.Save("edited.pdf");

Optimize / shrink:

using PdfLibrary.Optimization;

using var doc = PdfDocument.Load("input.pdf");
using var output = File.Create("optimized.pdf");
PdfOptimizer.Optimize(doc, output);   // lossless by default

Threading

PdfLibrary is built for the one-document-per-request model — the standard pattern for ASP.NET Core. Load a PdfDocument per request, render it on its own target, dispose both. Under that model it's thread-safe, and the process-wide caches (glyph paths, font resolution, ICC profiles) are synchronized. The one thing you must not do is share a single PdfDocument (or a SkiaSharpRenderTarget) across threads.

Links

If you try it and something doesn't render the way you expect, open an issue with the PDF attached — edge cases in the wild are how this kind of library gets better.