gpt4 book ai didi

java - 在 Itext 中的当前位置绘制一条线

转载 作者:行者123 更新时间:2023-11-30 06:23:55 26 4
gpt4 key购买 nike

我正在尝试将图例作为单行(段落)添加到在我的页面上绘制为图像的图表中。图例需要有描述符( block ),后跟适当颜色的线以匹配图表。当我搜索如何绘制一条线时,似乎只能使用绝对定位来完成。是否有某种方法可以在描述符后面绘制线条,无论描述符位于段落中和页面上的位置?它还后面跟着一个或多个附加描述符( block ),每个描述符都有一条适当颜色的线。 TIA。

String[] monitors=Configuration.getInstance().getMonitorIds();
Chunk title=new Chunk("Legend: ");
title.setFont(legendFont);
Paragraph legend=new Paragraph(title);
for (String entry : monitors) {
Monitor mon=Configuration.getInstance().getMonitor(entry);
Chunk name=new Chunk(mon.getName());
Font nameFont=new Font(FontFamily.TIMES_ROMAN, 20.f, Font.BOLD,new BaseColor(mon.getColor().getRGB()));
name.setFont(nameFont);
// What goes here to draw the line???
legend.add(name);
}
document.add(legend);

@mkl 发表评论后更新:

我想我在这篇文章中找到了您的意思:Drawing diagonal line in a cell of a table in iTExt? 。因此,我将以下内容添加到我的助手中以绘制水平线而不是文章中的对角线:

@Override
public void onGenericTag(PdfWriter writer_, Document document_, Rectangle rectangle_, String tag_) {
PdfContentByte canvas = writer_.getDirectContent();
canvas.saveState();
Monitor mon=Configuration.getInstance().getMonitor(tag_);
canvas.setColorStroke(new BaseColor(mon.getColor().getRGB()));
canvas.moveTo(Rectangle.LEFT,Rectangle.ALIGN_CENTER);
canvas.lineTo(Rectangle.RIGHT,Rectangle.ALIGN_CENTER);
canvas.stroke();
canvas.restoreState();
}

然后我更改了代码(以及其他一些调整)以包含 onGenericTag Chunk,但这并不是我解释文章时直接发生的事情。我不能只在单元格中放入一个 block 。这是我当前的代码:

String[] monitorIds=Configuration.getInstance().getMonitorIds();
PdfPTable leg=new PdfPTable(monitorIds.length+2);
Paragraph p=new Paragraph("Legend: ",legendFont);
PdfPCell title=new PdfPCell(p);
title.setBorder(Rectangle.NO_BORDER);
leg.addCell(title);
for (String entry : monitorIds) {
Monitor mon=Configuration.getInstance().getMonitor(entry);
Font nameFont=new Font(FontFamily.TIMES_ROMAN, 14.f, Font.BOLD,new BaseColor(mon.getColor().getRGB()));
Paragraph name=new Paragraph(mon.getName(),nameFont);
PdfPCell c=new PdfPCell(name);
c.setBorder(Rectangle.NO_BORDER);
leg.addCell(c);
Chunk line=new Chunk();
line.setGenericTag(entry);
c=new PdfPCell(new Paragraph(line));
c.setBorder(Rectangle.NO_BORDER);
leg.addCell(c);
}
document.add(leg);

不幸的是,该行没有显示。我究竟做错了什么? TIA。

提出所有建议

谢谢他们。我决定尝试坚持使用 OnGenericTag。我认为此时开始一个新线程更合适。 Drawing a Line in a PdfPCell Using OnGenericTag

最佳答案

如果你想画一条线,你可以使用由不间断空格组成的Chunk:

Chunk line = new Chunk("\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0");

现在使用setUnderline()方法来绘制一条线。请参阅the API docs .

您可以根据需要在同一 block 上多次调用此方法(例如,在某些情况下您可能想要绘制双线)。您可以将颜色作为参数传递,包括线条的粗细,可以是绝对值,也可以是相对于字体大小的值,还包括相对于基线的 y 位置正文:

public Chunk setUnderline(BaseColor color,
float thickness, float thicknessMul,
float yPosition, float yPositionMul,
int cap)

这就是参数的含义:

  • color - 线条的颜色或跟随文本颜色的 null
  • 粗细 - 线条的绝对粗细
  • thicknessMul - 厚度与字体大小的乘法因子
  • yPosition - 相对于基线的绝对 y 位置
  • yPositionMul - 位置与字体大小的乘法因子
  • cap - 结束线帽。允许的值为 PdfContentByte.LINE_CAP_BUTTPdfContentByte.LINE_CAP_ROUNDPdfContentByte.LINE_CAP_PROJECTING_SQUARE

您还可以使用分隔符(例如,参见 API docs 中的 LineSeparator 类)?请参阅Separator示例。

您可以使用这样的分隔符作为两行文本之间的一行:

但是您也可以使用这样的分隔符作为Chunk。例如,参见Create Index File(TOC) for merged pdf using itext library in java我们有:

p.add(new Chunk(new DottedLineSeparator()));

您可以为每种颜色定义一个特殊的 LineSeparator 类,并将其包装在 Chunk 内。

我发现您已尝试 onGenericTag() 功能,但没有成功。如果您确实需要该功能,请确保向 PdfWriter 声明页面事件。

例如:How to draw a line every 25 words?

在此示例中,我们有一个名为 WordCount 的页面事件类,并将该类的一个实例添加到 PdfWriter 对象中:

writer.setPageEvent(new WordCounter());

如果你忘记了这一点,什么都不会发生(出于非常合乎逻辑的原因)。

如果你想画一条线,你还需要确保Chunk不为空,或者你从点x,y到平底线x,y画一条线(这是一个看不见的点,不是线)。

另一种方法是创建一个 PdfTemplate,向其绘制一条线,然后将该 PdfTemplate 包装在图像内。请参阅How do I align a graphic in iTextPDF?或者看看RectangleInCell示例:

PdfTemplate template = writer.getDirectContent().createTemplate(120, 80);
template.setColorFill(BaseColor.RED);
template.rectangle(0, 0, 120, 80);
template.fill();
writer.releaseTemplate(template);
table.addCell(Image.getInstance(template));

在此示例中,我们创建一个 120 x 80 个用户单位的模板,并在该模板上绘制一个红色矩形。我们释放模板(内容写入输出),并将模板作为 Image 添加到 PdfPTable 中。

关于java - 在 Itext 中的当前位置绘制一条线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47607388/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com