PDF 파일에서 특정 페이지를 편집해야하며 해당 페이지를 별도의 PDF 파일로 저장해야합니다. 나는 그 일을 성공적으로 끝냈다. 입력 파일은 레터 크기 페이지입니다. 그러나 지금 내가 필요한 것은 편집 된 페이지를 A4 크기로 저장하는 것입니다. 누구든지 나를 도와 줄 수 있어요. 나는 응답을 기다리고있다.편집 된 PDF 저장 itext를 사용하여 A4 크기의 페이지
다음은 제 코드입니다.
import java.awt.Color;
import java.io.FileOutputStream;
import java.io.IOException;
import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Element;
import com.lowagie.text.Font;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.ColumnText;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfReader;
import com.lowagie.text.pdf.PdfStamper;
public class pdfEdit {
private static String INPUTFILE = "./pdf/eng.pdf";
private static String OUTPUTFILE = "./pdf/output.pdf";
private static String footerRight = "Web content and services";
private static String footerLeft = "All Rigths Reserved";
private static Document document;
public static void main(String[] args) throws IOException, DocumentException {
document = new Document();
document.open();
PdfReader reader = new PdfReader(INPUTFILE);
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(OUTPUTFILE));
int editingPage = 3;
PdfContentByte cb = stamper.getOverContent(editingPage);
cb.rectangle(10, 10, 550, 30);
cb.setRGBColorFill(255, 255, 255);
cb.fill();
PdfContentByte cByte = stamper.getOverContent(editingPage);
editFooterText(cByte);
reader.selectPages(Integer.toString(editingPage));
stamper.close();
document.close();
}
private static void editFooterText(PdfContentByte cByte) throws DocumentException {
Font footerFont = new Font(Font.HELVETICA, 5f, Font.NORMAL, Color.BLACK);
ColumnText cTextLeft = new ColumnText(cByte);
Paragraph leftPara = new Paragraph();
cTextLeft.setAlignment(Element.ALIGN_LEFT);
cTextLeft.setSimpleColumn(document.left(), 10, 500, document.bottom());
Chunk strFooterLeft = new Chunk(footerLeft, footerFont);
leftPara.add(strFooterLeft);
cTextLeft.addElement(leftPara);
cTextLeft.go();
ColumnText cTextRight = new ColumnText(cByte);
cTextRight.setSimpleColumn(document.left(), 10, 430, document.bottom());
Paragraph Rightpara = new Paragraph();
Chunk strfooterRight = new Chunk(footerRight, footerFont);
Rightpara.setAlignment(Element.ALIGN_RIGHT);
Rightpara.add(strfooterRight);
cTextRight.addElement(Rightpara);
cTextRight.go();
}
}
안녕 친구 .. 제발 도와주세요. – 1355
아직 답장을 보내길 바랍니다 – 1355