我是usind pdfbox并试图为表格的标题着色;我使用教程'正确地绘制了表格。 http://fahdshariff.blogspot.in/2010/10/creating-tables-with-pdfbox.html'
代码如下
//draw the rows
float nexty = y ;
for (int i = 0; i <= rows; i++) {
contentStream.drawLine(margin, nexty, margin+tableWidth, nexty);
nexty-= rowHeight;
}
//draw the columns
float nextx = margin;
for (int i = 0; i <= cols; i++) {
contentStream.drawLine(nextx, y, nextx, y-tableHeight);
nextx += (colWidths != null) ? colWidths[i] : colWidth;
}
我得到了着色的代码如下:
contentStream.setNonStrokingColor( Color.RED );
contentStream.fillRect( 10, 10, 100, 100 );
我试图把它放在一边,但是根本不需要它。我只需要对表头进行着色。我怎样才能做到这一点。请帮帮我。