vote up 1 vote down star

I would like to print my Swing JComponent via iText to pdf.

JComponent com = new JPanel();
com.add( new JLabel("hello") );

PdfWriter writer = PdfWriter.getInstance( document, new FileOutputStream( dFile ) );
document.open( );

PdfContentByte cb = writer.getDirectContent( );
PdfTemplate tp = cb.createTemplate( pageImageableWidth, pageImageableHeight );
Graphics2D g2d = tp.createGraphics( pageImageableWidth, pageImageableHeight, new DefaultFontMapper( ) );
g2d.translate( pf.getImageableX( ), pf.getImageableY( ) );
g2d.scale( 0.4d, 0.4d );
com.paint( g2d );
cb.addTemplate( tp, 25, 200 );
g2d.dispose( );

Unfortunately nothing is shown in the PDF file. Do you know how to solve this problem?

flag

3 Answers

vote up 1 vote down

I don't know that much about iText, but... you did close the PdfWriter at some point, right?

link|flag
yes, writer is closed! – jonash Jan 9 at 7:25
vote up 0 vote down check

I have figured it out adding addNotify and validate helps.

    com.addNotify( );
    com.validate( );
link|flag
vote up 0 vote down

I needed to call

com.addNotify()
com.setSize()
com.validate()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.