如何(水平)对齐PDFBox中的PDTextField的文本? [英] How to (horizontally) align text of PDTextField in PDFBox?

查看:491
本文介绍了如何(水平)对齐PDFBox中的PDTextField的文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个程序可以在PDF文件内创建TextField,因此可以将其用作表格.我希望将我在创建的TextField中编写的文本居中.那怎么可能呢?我的代码当前如下所示:

I have a program that create TextFields inside a PDF-file so it can be used as a form. I would like to have the text I write in the TextFields I created to be centered though. How is that possible? My code currently looks like this:

PDTextField textBox = new PDTextField(acroForm);
textBox.setPartialName("Field " + j + " " + i);
defaultAppearanceString = "/Helv 8 Tf 0 g"; //Textsize: 8
textBox.setDefaultAppearance(defaultAppearanceString);
acroForm.getFields().add(textBox);

PDAnnotationWidget widget = textBox.getWidgets().get(0);
PDRectangle rect = new PDRectangle(inputField.getX(), inputField.getY(), inputField.getWidth(), inputField.getHeight());
widget.setRectangle(rect);
widget.setPage(page);
widget.setPrinted(true);
page.getAnnotations().add(widget);

我想到了一个简单的函数来像这样对齐文本:

and I thought of an easy function to align text like this:

textBox.setAlignment(Alignment.CENTER);

但我没有找到它.

推荐答案

使用Q标志:

textBox.setQ(PDTextField.QUADDING_CENTERED);

其他可能的值是QUADDING_RIGHT和QUADDING_LEFT(这是默认值).

Other possible values are QUADDING_RIGHT and QUADDING_LEFT (which is the default).

这篇关于如何(水平)对齐PDFBox中的PDTextField的文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆