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

推荐订阅源

博客园_首页
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
M
MIT News - Artificial intelligence
IT之家
IT之家
博客园 - 【当耐特】
U
Unit 42
云风的 BLOG
云风的 BLOG
L
LangChain Blog
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
宝玉的分享
宝玉的分享
N
Netflix TechBlog - Medium

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
Bates Numbering in Rust — Automating Legal Document Stamping
hiyoyo · 2026-05-06 · via DEV Community

All tests run on an 8-year-old MacBook Air.
All results from shipping 7 Mac apps as a solo developer. No sponsored opinion.
Bates numbering is sequential page stamping used in legal documents. Every page gets a unique identifier: CASE-001, CASE-002, etc.
I built this into Hiyoko PDF Vault. Here's how it works in Rust.

What Bates numbering actually is
A Bates stamp is a text label added to a fixed position on each page — usually bottom-right or bottom-left. The label increments sequentially across a document set.
Format: [PREFIX][NUMBER][SUFFIX] where number is zero-padded to a fixed width.
Examples: SMITH-000001, EXHIBIT_A_0042, DOC00100

The implementation with lopdf
rustuse lopdf::{Document, Object, Stream, Dictionary, content::Content};

pub struct BatesConfig {
pub prefix: String,
pub suffix: String,
pub start_number: u64,
pub pad_width: usize,
pub position: BatesPosition,
pub font_size: f32,
}

pub enum BatesPosition {
BottomRight,
BottomLeft,
TopRight,
TopLeft,
}

pub fn apply_bates(doc: &mut Document, config: &BatesConfig) -> Result<(), AppError> {
let page_ids: Vec<_> = doc.page_iter().collect();

for (i, page_id) in page_ids.iter().enumerate() {
    let number = config.start_number + i as u64;
    let label = format!(
        "{}{}{}",
        config.prefix,
        format!("{:0>width$}", number, width = config.pad_width),
        config.suffix
    );

    stamp_page(doc, *page_id, &label, &config)?;
}

Ok(())

Enter fullscreen mode Exit fullscreen mode

}

Stamping a page
Adding text to a PDF page requires appending to its content stream:
rustfn stamp_page(
doc: &mut Document,
page_id: (u32, u16),
label: &str,
config: &BatesConfig,
) -> Result<(), AppError> {
let (x, y) = calculate_position(doc, page_id, &config.position)?;

let stamp_content = format!(
    "BT /F1 {} Tf {} {} Td ({}) Tj ET",
    config.font_size, x, y, label
);

// Append to existing page content
// Ensure font is available in page resources
append_content_to_page(doc, page_id, &stamp_content)?;

Ok(())

Enter fullscreen mode Exit fullscreen mode

}

The font dependency
PDF text rendering requires a font reference in the page's resource dictionary. If the page doesn't already have a suitable font, you need to embed one or reference a standard PDF font (Helvetica, Times, Courier — guaranteed to be available in any PDF viewer).
For Bates stamps, Helvetica works fine and requires no font embedding.

Batch processing
The real use case is stamping hundreds of pages across multiple documents. Process sequentially with progress events back to the frontend. Don't try to parallelize PDF mutation — document state is not thread-safe with lopdf's mutable references.

If this was useful, a ❤️ helps more than you'd think — thanks!
Hiyoko PDF Vault → https://hiyokoko.gumroad.com/l/HiyokoPDFVault
X → @hiyoyok