如何在 Reportlab 中找到一行文本的基线?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
画布应被视为一张白纸,纸张上的点使用笛卡尔 (X,Y) 坐标进行标识,默认情况下,原点 (0,0) 位于页面的左下角。
此外,默认情况下,第一个坐标 x 向右,第二个坐标 y 向上。
知道 x 和 y 坐标,您就可以对齐任何东西。
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.