FFCreatorLite
FFCreatorLite copied to clipboard
How to center text?
How can i center text or paragraph in width?
Bump
const text1 = new FFText({
text: videoTitle,
font: fontPath,
// x: (width - textBoxWidth) / 2,
x: `(w-text_w)/2`, // center text 居中显示
y: config.titleY,
fontSize: config.titleFontSize
});
@hurely Thanks, will give this a go. Didn't see the textBoxWidth anywhere in the repo. You know if textBoxHeight would also be applicable for the Y co-ordinate?
@hurely Thanks, will give this a go. Didn't see the textBoxWidth anywhere in the repo. You know if textBoxHeight would also be applicable for the Y co-ordinate?
textBoxWidth is not useful,you can just use x:' (w-text_w)/2'