我将文本添加到pptx幻灯片中,并且不能正确对齐。
我使用以下代码
placing = (slide.width/2,0,slide.width/4,0)
txBox = slide.shapes.add_textbox(placing[0], placing[1], placing[2], placing[3])
tf = txBox.text_frame
tf.margin_left = 0
tf.text = text
它有效,但位置不一致,当文字变长或变短时,文字从不同的“左”位置开始。
我在这里失踪了什么?
当文本较长而且“左”值正在变化时,文本框架是否可能变大?在这种情况下,我如何强制文本适合某些任意维度?
感谢