我一直试图用PDFBox绘制一条细长的水平线,但似乎我可以画出细线的限制。如果我对线条粗细使用小于1的值,它看起来与我为值提供的值相同。这是PDFBox的限制,还是我需要做一些不同的事情?
// This looks the same as providing 1 for setLineWidth()
contentStream.setLineWidth(0.5f);
contentStream.setStrokingColor(Color.BLACK);
contentStream.moveTo(40f, 30f);
contentStream.lineTo(570f, 30f);
contentStream.closeAndStroke();
答案 0 :(得分:0)
一个简单的笔画呼叫对我有用。
contentStream.setLineWidth(0.5f);
contentStream.moveTo(40f, 30f);
contentStream.lineTo(570f, 30f);
contentStream.stroke();