Skip to main content

Excel to PDF converter with font support

Project description

xlfill2pdf

🚧 警告:这是一个"能用就行"的项目!

💡 如果发现 bug,那一定是特性!

🔧 代码写得不够优雅?随时欢迎 PR!

🎯 目标是:能用 > 好用 > 很好用

一个用于将 Excel 文件转换为 PDF 的工具,支持占位符替换、二维码生成、水印添加等功能。 本项目是自用代码整理后的开源版本,功能可能不够完善,但核心功能已经可以正常使用。 欢迎根据实际需求修改代码,如果对你有帮助,请点个星!

特性

  • 支持 Excel 到 PDF 的转换
  • 支持文本占位符替换
  • 支持二维码生成
  • 支持自定义水印
  • 支持自定义字体
  • 支持合并单元格
  • 支持图片处理
  • 支持远程 Excel 文件

安装

pip install xlfill2pdf

基础使用

from xlfill2pdf import FontManager, ExcelProcessor

# 创建字体管理器
font_manager = FontManager()
font_manager.set_font("/path/to/your/font.ttf")  # 可选:设置自定义字体

# 创建处理器
processor = ExcelProcessor(
    font_manager=font_manager,
    watermark_text="机密",  # 可选:添加水印
    watermark_alpha=0.1,    # 水印透明度
    watermark_angle=-45,    # 水印角度
    watermark_color=(0, 0, 0)  # 水印颜色 (R,G,B)
)

# 处理数据
data = {
    "name": "张三",
    "id": "12345"
}

# 转换为 PDF
pdf_data = processor.process_excel_to_pdf("template.xlsx", data)

# 保存 PDF
with open("output.pdf", "wb") as f:
    f.write(pdf_data)

Excel 模板格式

在 Excel 模板中使用以下格式的占位符:

  • 文本占位符:{{name}}
  • 二维码占位符:{{id.二维码}}

自定义处理器

可以注册自定义处理器来处理特殊的占位符:

def handle_image(cell, field_name, data_dict):
    img = openpyxl.drawing.image.Image("image.png")
    img.width = 100
    img.height = 100
    cell.value = None
    column_letter = openpyxl.utils.get_column_letter(cell.column)
    anchor = f"{column_letter}{cell.row}"
    img.anchor = anchor
    return img, column_letter, cell.row

# 注册处理器
processor.register_handler(".图片", handle_image)

水印设置

processor = ExcelProcessor(
    font_manager=font_manager,
    watermark_text="机密文件",      # 水印文字
    watermark_alpha=0.1,           # 透明度 (0-1)
    watermark_angle=-45,           # 角度
    watermark_color=(216, 0, 54)   # RGB颜色
)

example

alt text alt text

API 参考

FontManager

字体管理器,用于管理 PDF 生成时使用的字体。

font_manager = FontManager()
font_manager.set_font("/path/to/font.ttf", "FontName")

ExcelProcessor

Excel 处理器,负责转换和生成 PDF。

主要参数:

  • font_manager: 字体管理器实例
  • prefix: 占位符前缀,默认 "{{"
  • suffix: 占位符后缀,默认 "}}"
  • qrcode_suffix: 二维码后缀,默认 ".二维码"
  • watermark_text: 水印文字
  • watermark_alpha: 水印透明度
  • watermark_angle: 水印角度
  • watermark_color: 水印颜色 (R,G,B)

注意事项

  1. 确保系统中安装了所需的字体, 使用默认的字体可能显示错误(如:你显示为尼等)
  2. Excel 模板中的占位符格式必须严格匹配
  3. 图片处理需要足够的系统内存
  4. 临时文件会自动清理

License

MIT


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xlfill2pdf-0.1.9.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

xlfill2pdf-0.1.9-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

File details

Details for the file xlfill2pdf-0.1.9.tar.gz.

File metadata

  • Download URL: xlfill2pdf-0.1.9.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.15 Windows/10

File hashes

Hashes for xlfill2pdf-0.1.9.tar.gz
Algorithm Hash digest
SHA256 6860148fd916ba37b198fa715eb657468a84a597adc82c97f6bed39bd8c72f36
MD5 85d2d9d810fdd327653820ade0fc09b0
BLAKE2b-256 c827ab86406b8e41ea069ad8e281915a22be01a222cf56b49ca214b3bd545cbd

See more details on using hashes here.

File details

Details for the file xlfill2pdf-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: xlfill2pdf-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.15 Windows/10

File hashes

Hashes for xlfill2pdf-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 5cdb30a9cb6716238b7b93fa94703f15c179a146f31c5593ca9e2411353761b9
MD5 ad4feb0d45f5e8a5b33cc95d68f92609
BLAKE2b-256 24badb6b6050ee267e1c6ca233c9355dc95d69153d757409e4f821b5aef2a362

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page