旋转段落或单元格任意数度 - Itext

时间:2013-03-14 16:30:40

标签: rotation itext cell paragraph

我有一个网站,用户上传照片并创建相册。此外,他们可以在绝对位置,旋转和对齐方式添加文本。文本可以有新的行。

我一直在使用Itext Library来自动创建后来打印的Photobooks高质量Pdfs。

将用户上传的图像添加到PDF中非常简单,当我尝试添加文本时会出现问题。

理论上我需要做的是定义一个定义宽度和高度的段落,设置用户文本,字体,字体样式,对齐(中心,左,右,对齐),最后设置旋转

对于我读过的关于Itext的内容,我可以创建一个设置用户属性的段落,并使用ColumnText对象设置绝对位置,宽度和高度。但是,不可能将任何大于单线的旋转设置。

我也不能使用表格单元格,因为旋转方法只允许90度的倍数。

有没有办法添加一个带有一些旋转(比如20度)的段落,而不必使用ColumnText.showTextAligned()方法和所有涉及的数学逐行添加文本?​​

----编辑:08-Ago-2013 ----

如果它对任何人有帮助,这就是我用来解决这个问题的代码(感谢Bruno):

//Create the template that will contain the text
PdfContentByte canvas = pdfWriter.getDirectContent();
PdfTemplate textTemplate = canvas.createTemplate(imgWidth, imgHeight); //The width and height of the text to be inserted

ColumnText columnText = new ColumnText(textTemplate);

columnText.setSimpleColumn(0, 0, imgWidth, imgHeight);
columnText.addElement(paragraph);

columnText.go();

//Create de image wraper for the template
Image textImg = Image.getInstance(textTemplate);

//Asign the dimentions of the image, in this case, the text
textImg.setInterpolation(true);
textImg.scaleAbsolute(imgWidth, imgHeight);
textImg.setRotationDegrees((float) -textComp.getRotation()); //Arbitrary number of degress
textImg.setAbsolutePosition(imgXPos, imgYPos);

//Add the text to the pdf
pdfDocument.add(textImg);

2 个答案:

答案 0 :(得分:10)

  • 创建一个PdfTemplate对象;只是一个矩形。
  • 在此ColumnText上绘制PdfTemplate;不要担心旋转,只需用要添加到列的任何内容填充矩形。
  • PdfTemplate包裹在Image对象中;这只是为了方便,避免数学。这并不意味着您的文本将被栅格化。
  • 现在将旋转和绝对位置应用于Image并将其添加到您的文档中。

您的问题现已解决; - )

PS:我是iText in Action书籍的作者。

答案 1 :(得分:1)

感谢我们的朋友(Bruno& BernalCarlos) 我使用" RTL"的用户的最终代码他们的项目在这里:

// step 1
Document document = new Document();
document.setPageSize(PageSize.A4);

// step 2
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(destination_file));
CreateBorder event = new CreateBorder();
writer.setPageEvent(event);

// step 3
document.open();

// step 4
int imgWidth=400;
int imgHeight=50;
//Create the template that will contain the text
PdfContentByte canvas = writer.getDirectContent();
PdfTemplate textTemplate = canvas.createTemplate(imgWidth, imgHeight);
//The width and height of the text to be inserted

ColumnText columnText = new ColumnText(textTemplate);
columnText.setSimpleColumn(0, 0, imgWidth, imgHeight);
columnText.setRunDirection(PdfWriter.RUN_DIRECTION_RTL);
columnText.addElement(new Paragraph("محاسبه بار غیر متعادل", font_IranSemiBold));
columnText.go();

//Create de image wraper for the template
Image textImg = Image.getInstance(textTemplate);

//Asign the dimentions of the image, in this case, the text
textImg.setInterpolation(true);
textImg.scaleAbsolute(imgWidth, imgHeight);
textImg.setRotationDegrees(90); //Arbitrary number of degress
textImg.setAbsolutePosition(50, 200);

//Add the text to the pdf
document.add(textImg);

// step 5
document.close();