Major features added since v0.5: - PNG support with alpha/transparency (soft masks) - FlateDecode compression via libdeflate-zig - Bookmarks/Outline for document navigation - Bezier curves, circles, ellipses, arcs - Transformations (rotate, scale, translate, skew) - Transparency/opacity (fill and stroke alpha) - Linear and radial gradients (Shading Patterns) - Code128 (1D) and QR Code (2D) barcodes - TrueType font parsing (metrics, glyph widths) - RC4 encryption module (40/128-bit) - AcroForms module (TextField, CheckBox) - SVG import (basic shapes and paths) - Template system (reusable layouts) - Markdown styling (bold, italic, links, headings, lists) Documentation: - README.md: Complete API reference with code examples - FUTURE_IMPROVEMENTS.md: Detailed roadmap for future development - CLAUDE.md: Updated to v1.0 release status Stats: - 125+ unit tests passing - 16 demo examples - 46 source files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
284 B
Zig
11 lines
284 B
Zig
//! Barcodes module - 1D and 2D barcode generation
|
|
//!
|
|
//! Supports:
|
|
//! - Code128 (1D) - ASCII 0-127
|
|
//! - QR Code (2D) - ISO/IEC 18004
|
|
|
|
pub const code128 = @import("code128.zig");
|
|
pub const Code128 = code128.Code128;
|
|
|
|
pub const qr = @import("qr.zig");
|
|
pub const QRCode = qr.QRCode;
|