A CLI tool to edit PDF slides using natural language prompts, powered by Google's Gemini 3 Pro Image ("Nano Banana") model.
- Natural Language Editing: "Update the graph to include data from 2025", "Change the chart to a bar graph".
- Add New Slides: Generate entirely new slides that match your deck's visual style.
- Non-Destructive: Preserves the searchable text layer of your PDF using OCR re-hydration.
- Multi-page & Parallel: Edit multiple pages in a single command with concurrent processing.
Nano PDF uses Gemini 3 Pro Image (aka Nano Banana) and PDF manipulation to enable quick edits of PDFs with natural language editing:
- Page Rendering: Converts target PDF pages to images using Poppler
- Style References: Optionally includes style reference pages with generation request to understand visual style (fonts, colors, layout)
- AI Generation: Sends images + prompts to Gemini 3 Pro Image, which generates edited versions
- OCR Re-hydration: Uses Tesseract to restore searchable text layer to generated images
- PDF Stitching: Replaces original pages with AI-edited versions while preserving document structure
The tool processes multiple pages in parallel for speed, with configurable resolution (4K/2K/1K) to balance quality vs. cost.
You need a paid Google Gemini API key with billing enabled. Free tier keys do not support image generation.
- Get an API key from Google AI Studio
- Enable billing on your Google Cloud project
- Set it as an environment variable:
export GEMINI_API_KEY="your_api_key_here"Note: This tool uses Gemini 3 Pro Image which requires a paid API tier. See pricing for details.
Edit a single page (e.g., Page 2):
nano-pdf edit my_deck.pdf 2 "Change the title to 'Q3 Results'"Edit multiple pages in one go:
nano-pdf edit my_deck.pdf \
1 "Update date to Oct 2025" \
5 "Add company logo" \
10 "Fix typo in footer"Insert a new AI-generated slide into your deck:
# Add a title slide at the beginning
nano-pdf add my_deck.pdf 0 "Title slide with 'Q3 2025 Review'"
# Add a slide after page 5
nano-pdf add my_deck.pdf 5 "Summary slide with key takeaways as bullet points"The new slide will automatically match the visual style of your existing slides and uses document context by default for better relevance.
--use-context/--no-use-context: Include the full text of the PDF as context for the model. Disabled by default foredit, enabled by default foradd. Use--no-use-contextto disable.--style-refs "1,5": Manually specify which pages to use as style references.--output "new.pdf": Specify the output filename.--resolution "4K": Image resolution - "4K" (default), "2K", or "1K". Higher quality = slower processing.--disable-google-search: Prevents the model from using Google Search to find information before generating (enabled by default).
# Fix typos across multiple slides
nano-pdf edit pitch_deck.pdf \
3 "Fix the typo 'recieve' to 'receive'" \
7 "Change 'Q4 2024' to 'Q1 2025'"# Update branding and colors
nano-pdf edit slides.pdf 1 "Make the header background blue and text white" \
--style-refs "2,3" --output branded_slides.pdf# Update financial data
nano-pdf edit report.pdf 12 "Update the revenue chart to show Q3 at $2.5M instead of $2.1M"# Use full document context for consistency
nano-pdf edit presentation.pdf \
5 "Update the chart colors to match the theme" \
8 "Add the company logo in the bottom right" \
--use-context# Add a new agenda slide at the beginning
nano-pdf add quarterly_report.pdf 0 "Agenda slide with: Overview, Financial Results, Q4 Outlook"# Google Search is enabled by default - the model can look up current information
nano-pdf edit deck.pdf 5 "Update the market share data to latest figures"
# Disable Google Search if you want the model to only use provided context
nano-pdf add deck.pdf 3 "Add a summary slide" --disable-google-search- Python 3.10+
poppler(for PDF rendering)tesseract(for OCR)
brew install poppler tesseractchoco install poppler tesseractNote: After installation, you may need to restart your terminal or add the installation directory to your PATH.
sudo apt-get install poppler-utils tesseract-ocrMake sure you've installed poppler and tesseract for your platform. After installation, restart your terminal to refresh PATH. Run which pdftotext and which tesseract to verify they're accessible.
Set your API key as an environment variable:
export GEMINI_API_KEY="your_key_here"Gemini 3 Pro Image requires a paid API tier. Visit Google AI Studio to enable billing on your project.
Try using --style-refs to specify reference pages that have the desired visual style. The model will analyze these pages to better match fonts, colors, and layout.
The tool uses Tesseract OCR to restore searchable text. For best results, ensure your generated images are high resolution (--resolution "4K"). Note that OCR may not be perfect for stylized fonts or small text.
- Use
--resolution "2K"or--resolution "1K"for faster processing
If you want to run the latest development version:
# Clone the repository
git clone https://github.com/gavrielc/Nano-PDF.git
cd Nano-PDF
# Install dependencies
pip install -e .
# Run the tool
nano-pdf edit my_deck.pdf 2 "Your edit here"MIT