Как добавить текст Штамп аннотации в ротации pdf

Я хочу добавить аннотацию штампа с текстом в PDF. Вращение pdf составляет 270.

Код, который я написал, но вращение штампа неверно.

PdfReader reader = new PdfReader(file.getAbsolutePath(), "PDF".getBytes());
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(outFile));
int i = 1;
PdfContentByte content = stamper.getOverContent(i);
Rectangle pageRect = reader.getPageSizeWithRotation(i);
float pageWidth = pageRect.getWidth();
float pageHeight = pageRect.getHeight();
float rectWidth = 700;
float rectHeight = 500;
float fontsize = 40;
content.setFontAndSize(font, fontsize);
rectWidth = content.getEffectiveStringWidth(stampLabel,false);
Rectangle rectangle = new Rectangle(0,0,rectWidth, rectHeight);
PdfAppearance appearance = content.createAppearance(rectWidth,rectHeight);
appearance.setColorFill(BaseColor.RED);
appearance.setFontAndSize(font, fontsize);      
rectangle.setBorder(Rectangle.BOX);
rectangle.setBorderColor(BaseColor.RED);
rectangle.setBorderWidth(2);
appearance.rectangle(rectangle);
appearance.saveState();
appearance.beginText();
appearance.showText(stampLabel);
appearance.restoreState();
PdfAnnotation stampAnnot =   PdfAnnotation.createStamp(content.getPdfWriter(),    rectangle,stampLabel,"STATUA_STAMP");
stampAnnot.setAppearance(PdfAnnotation.APPEARANCE_NORMAL, appearance);
stampAnnot.setFlags(PdfAnnotation.FLAGS_PRINT);         
stamper.addAnnotation(stampAnnot, i);

0 ответов

Другие вопросы по тегам