The current version is #ident "@(#)$Format:LocalFoodAI_lanfr144:Header_Footer_Antigravity.md:%an:%ae:%ad:%cn:%ce:%cd:%H:%D:%N$" # PDF Header and Footer Generation Guidelines (Antigravity Standard) This document provides guidelines on how to programmatically inject institutional headers and footers into compiled PDF documents using Python and PyMuPDF (`fitz`). ## 1. Concept Instead of relying on fragile HTML/CSS page rendering contexts that vary across layout engines, the Antigravity approach compiles standard Markdown to a clean, margin-compliant intermediate PDF. We then perform a post-processing pass using PyMuPDF to draw vector logos, document title headers, and footer blocks on every page at absolute coordinates. ## 2. Layout Structure The layout bounds on a standard A4 page (595 x 842 points) are mapped as follows: ```mermaid graph TD subgraph A4 Page Boundary [A4 Page Layout: 595 x 842 pt] subgraph Top Margin Area [Top Margin: Y=0 to Y=54] L_Logo["Left Logo: am.png
X=48, Y=12
(146.5 x 24.5 pt)"] M_Title["Middle Title: Document Title
X=Centered, Y=26"] R_Logo["Right Logo: Bts.png
X=479.9, Y=8
(67.1 x 36.8 pt)"] end subgraph Content Area [Main Document Context: Y=54 to Y=788] Content["HTML/CSS Layout Story Flow"] end subgraph Bottom Margin Area [Bottom Margin: Y=788 to Y=842] L_Foot["Left Footer: lanfr144
X=48, Y=820"] M_Foot["Middle Footer: Page X of Y
X=Centered, Y=820"] R_Foot["Right Footer: DOPRO1
X=width-48-width, Y=820"] end end ``` ## 3. High-Quality Scaled Drawing To ensure maximum visual fidelity when zoomed, follow these steps: 1. **Load PNGs as Pixmaps**: Read the image size using PyMuPDF `fitz.Pixmap`. 2. **Compute 10% Bounds**: Scale the pixel width and height to 10% for layout dimensions in points. 3. **Draw Bounds**: Insert the image using `page.insert_image(rect, filename)`. The full resolution is embedded in the PDF, keeping quality high when zoomed. 4. **Optimized Saving**: Always save the PDF with deflate compression, garbage collection, and linearization: ```python doc.save(pdf_file, clean=True, garbage=3, deflate=True) ```