gpt4 book ai didi

java - PDF 到达页面末尾时出现问题

转载 作者:行者123 更新时间:2023-11-30 03:57:34 24 4
gpt4 key购买 nike

嗯,我在创建新页面时遇到了一些麻烦。

我从查询中获取数据。

抱歉,如果我发布了很多代码,但这都是必需的,而且我不确定如何进行 MCVE,因为我对 PDF 工作还很陌生。

这个问题是:

在编写下一个代码块之前,我检查当前的 Y 坐标,我可以实现这一点,但是当我需要创建新页面并再次开始编写时,就会发生 this

以下是 PDF 中使用的代码:

public float checkContentStream(float y) throws Exception {
float newY = checkYCoord(y, 3, 10);
if (newY == 700) {
if (content != null) {
content.close();
}

File file = new File(logoPath);
PDJpeg logoImg = new PDJpeg(doc, new FileInputStream(file));
PDPage page = new PDPage(PDPage.PAGE_SIZE_LETTER);
doc.addPage(page);
content = new PDPageContentStream(doc, page);
content.drawImage(logoImg, 50, 720);
rHeader();
}
return newY;
}

此方法检查是否达到 BOTTOM MARGIN = 60

private float checkYCoord(float y, int lines, int space) {
float newY = y;
for (int i = 0; i < lines; i++) {
if ((newY - space) <= BOTTOM_MARGIN) {
newY = 700f;
return newY;
} else {
newY = newY - space;
}
}
return y;
}

此方法与第一种方法相同,但同时使用了两种方法,我知道我不应该也不能使用硬编码值,例如 10 或 3。

public float checkContentStream(float y, int lines, int space) throws Exception {
float newY = checkYCoord(y, lines, space);
if (newY == 700) {
if (content != null) {
content.close();
}
File file = new File(logoPath);
PDJpeg logoImg = new PDJpeg(doc, new FileInputStream(file));
PDPage page = new PDPage(PDPage.PAGE_SIZE_LETTER);
doc.addPage(page);
content = new PDPageContentStream(doc, page);
content.drawImage(logoImg, 50, 720);
rHeader();
}
}

public float rText(float x, float y, int space, String labelField, String value, int fieldSize) throws Exception {
if(fieldSize == 1){
return rText(x, y, space, labelField, value, FIELD_WIDTH, VALUE_WIDTH);
}
else{
if(fieldSize == 2){
return rText(x, y, space, labelField, value, FIELD_WIDTH, DESC_WIDTH);
}
else{
return rText(x, y, space, labelField, value, FIELD_WIDTH, TEXT_WIDTH);
}
}
}

我几乎可以肯定错误来自此方法:

public float rText(float x, float y, int space, String labelField, String value, int fieldWidth, int valueWidth) throws Exception {
PDFont font = PDType1Font.TIMES_BOLD;
content.setFont(font, 9);
float y1 = 0f;
float y2 = 0f;
//y = y >= 700 ? 700 : checkContentStream(y, 3, 10);
if (value == null) {
//y = checkYCoord(y, 1, 10);
return rText(labelField, fieldWidth, x, y - 19, space, font, false);
}else {
//y = checkYCoord(y, 3, 10);
y1 = rText(labelField, fieldWidth, x, y - 20, space, font, false);
font = PDType1Font.TIMES_ROMAN;
content.setFont(font, 9);
y = checkYCoord(y, 3, 10); // Comment / Uncoment this line
y2 = rText(value, valueWidth, x + fieldWidth + 10, y - 20, space, font, true);
if (y1 >= y2) {
return y2;
} else {
return y1;
}
}
}

此方法绘制文本

private float rText(String text, int width, float x, float y, int space, PDFont font, boolean isValue) throws Exception {
float newY = y;
int rowHeight = 0;
ArrayList<String> rowList = getRows(text, width, font);
if(isValue){
newY = checkContentStream(newY);
newY = newY == 700 ? 680 : newY;
for (String row : rowList) {
if(rowHeight >= 10){
newY = checkContentStream(newY - 10);
newY = newY == 700 ? 680 : newY;
}
else{
newY = checkContentStream(newY);
newY = newY == 700 ? 680 : newY;
}
content.beginText();
content.moveTextPositionByAmount(x, newY);
content.drawString(row);
content.endText();
rowHeight = rowHeight + 10;
}
}
else{
newY = checkContentStream(newY, rowList.size(), space);
newY = newY == 700 ? 680 : newY;
for(String row : rowList){
content.beginText();
content.moveTextPositionByAmount(x, newY - rowHeight);
content.drawString(row);
content.endText();
rowHeight = rowHeight + 10;
}
newY -= (rowHeight - 9);
}
return newY;
}

这个方法位于另一个类中,它从查询中获取数据:

private float renderSubscriptionNew(PdfRenderingPC pdf, float y, SubscriptionNew sNew) throws Exception {
DataResponse dr = dataSvc.buildResponse(folio, sNew, unitSvc);
List<Data> dataList = dr.getDataList();

int i = 0;
int j = 0;
float y2[] = new float[3];
for (Data data : dataList) {
String labelField = constants.getString(data.getName());
String value = getValue(data);
float xCoord = 0;
boolean getNewRow = false;
int fieldSize = 1;
switch (i) {
case 0:
case 4:
xCoord = LEFT_MARGIN;
break;
case 1:
case 5:
xCoord = MIDDLE_COL;
break;
case 2:
case 6:
xCoord = RIGHT_COL;
getNewRow = true;
break;
case 3:
xCoord = LEFT_MARGIN;
getNewRow = true;
break;
}
if (getNewRow) {
if(j == 0){
y = pdf.rText(xCoord, y, 10, labelField, value, fieldSize);
}
else{
y = pdf.rText(xCoord, y, 10, labelField, value, fieldSize);
float min = y;
for(int k = (j - 1); k >= 0; k--){
if(y2[k] < min){
min = y2[k];
}
}
y = min;
j = 0;
}
} else {
y2[j] = pdf.rText(xCoord, y, 10, labelField, value, fieldSize);
j++;
}
i++;
}

任何帮助、指导,我们将不胜感激,并提前致谢

最佳答案

感谢@mkl对于他的评论,我这样解决了:

我在“renderSubscriptionNew”上添加了以下代码

if(visible){
if (getNewRow) {
if(j == 0){
y = pdf.checkContentStream(y, 3, 10);
y = pdf.rText(xCoord, y, 10, labelField, value,
fieldSize);
}
else{
y = pdf.rText(xCoord, y, 10, labelField, value,
fieldSize);
float min = y;
for(int k = (j - 1); k >= 0; k--){
if(y2[k] < min){
min = y2[k];
}
}
y = min;
j = 0;
}

} else {
if(j == 0){
y = pdf.checkContentStream(y, 3, 10);
}
y2[j] = pdf.rText(xCoord, y, 10, labelField, value,
fieldSize);
j++;
}
}
i++;
}

这是 rText(最后一个):

private float rText(String text, int width, float x, float y, int space,
PDFont font, boolean isValue) throws Exception {
float newY = y;
int rowHeight = 0;
ArrayList<String> rowList = getRows(text, width, font);
if(isValue){
for (String row : rowList) {
if(rowHeight >= 10){
newY = checkContentStream(newY - 10);
newY = newY == 700 ? 680 : newY;
}
else{
}
content.beginText();
content.moveTextPositionByAmount(x, newY);
content.drawString(row);
content.endText();
rowHeight = rowHeight + 10;
}
}
else{
for(String row : rowList){
content.beginText();
content.moveTextPositionByAmount(x, newY - rowHeight);
content.drawString(row);
content.endText();
rowHeight = rowHeight + 10;
}
newY -= (rowHeight - 9);
}
return newY;
}

关于java - PDF 到达页面末尾时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22774668/

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