简体   繁体   English

如何从 qrc.py 访问图像和字体到 reportlab?

[英]How to access image and fonts from qrc.py into reportlab?

I am using我在用

pdfmetrics.registerFont(TTFont('Arial', 'Arial.ttf'))
pdfmetrics.registerFont(TTFont('Arial-Bold', 'Arial-Bold.ttf'))

I have converted "image_fonts.qrc" into image_fonts_rc.py file .我已将"image_fonts.qrc" into image_fonts_rc.py file It has one image named as "image.png" and "Arial-Bold.ttf" My question is How to use image and fonts into reportlab PDF in python from qrc.py file.它有一张名为"image.png" and "Arial-Bold.ttf"图像

image_fonts.qrc image_fonts.qrc

<RCC>
  <qresource prefix="image_fonts">
    <file>Arial-Bold.TTF</file>
    <file>logo.png</file>
    <file>Arial.TTF</file>
  </qresource>
</RCC>

A possible solution is to read the font using QFile and save it in io.BytesIO can already be read by TTFont reportlab:一个可能的解决方案是使用 QFile 读取字体并将其保存在 io.BytesIO 中,TTFont reportlab 已经可以读取了:

from io import BytesIO

from reportlab.pdfgen import canvas

from reportlab.pdfbase import pdfmetrics
from reportlab.pdfbase.ttfonts import TTFont

from PyQt5.QtCore import QFile, QIODevice

import image_fonts_rc


def convert_qrc_to_bytesio(filename):
    file = QFile(filename)
    if not file.open(QIODevice.ReadOnly):
        raise RuntimeError(file.errorString())
        return
    f = BytesIO(file.readAll().data())
    return f


pdfmetrics.registerFont(
    TTFont("Arial", convert_qrc_to_bytesio(":/image_fonts/Arial.TTF"))
)
pdfmetrics.registerFont(
    TTFont("Arial-Bold", convert_qrc_to_bytesio(":/image_fonts/Arial-Bold.TTF"))
)

c = canvas.Canvas("hello.pdf")
c.setFont("Arial", 32)
c.drawString(100, 750, "Welcome to Reportlab!")
c.save()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM