如何在 Reportlab 中找到一行文本的基线?

发布于 2024-08-25 03:34:02 字数 80 浏览 8 评论 0原文

如何在 Reportlab 中找到一行文本的基线,以便将页面上的其他元素与文本的基线对齐?我对这些元素使用canvas.drawString()。

How do I find the baseline for a line of text in Reportlab so I can align other elements on the page with the baseline of the text? I am using canvas.drawString() for these elements.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤单情人 2024-09-01 03:34:02

画布应被视为一张白纸,纸张上的点使用笛卡尔 (X,Y) 坐标进行标识,默认情况下,原点 (0,0) 位于页面的左下角。

此外,默认情况下,第一个坐标 x 向右,第二个坐标 y 向上。

知道 x 和 y 坐标,您就可以对齐任何东西。

from reportlab.pdfgen import canvas

def hello(c):
    c.drawString(100,100, "x=100,y=100")
    c.drawString(200,200, "x=200,y=200")

c = canvas.Canvas("hello.pdf")
hello(c)
c.showPage()
c.save()

The canvas should be thought of as a sheet of white paper with points on the sheet identified using Cartesian (X,Y) coordinates which by default have the (0,0) origin point at the lower left corner of the page.

Furthermore the first coordinate x goes to the right and the second coordinate y goes up, by default.

Knowing x and y coordinates, you can align anything.

from reportlab.pdfgen import canvas

def hello(c):
    c.drawString(100,100, "x=100,y=100")
    c.drawString(200,200, "x=200,y=200")

c = canvas.Canvas("hello.pdf")
hello(c)
c.showPage()
c.save()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文