You must know the dimensions.

Paulo 

> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Wessam Abd Rabo
> Sent: Thursday, November 29, 2007 11:28 PM
> To: itext-questions@lists.sourceforge.net
> Subject: [iText-questions] Export Scene to PDF
> 
> Hi,
> I use itext in Netbeans to export a graph scene to pdf. It 
> works, but sometimes the pdf file is empty and sometimes it 
> doesn't contian the whole scene. Can anyone tell from the 
> following code what i need to change to fix this. I guess 
> it's has something to do with the width and height variables 
> which am not sure what best values to set them to.  
>  
> public void ExportPDF() {
>       Document document=new Document();
>       String path="H:\\erd.pdf";
>       int w = 300;
>       int h = 300;
>        try {
>                       
>             PdfWriter writer = 
> PdfWriter.getInstance(document, new FileOutputStream(path));
>             document.open();
>             PdfContentByte cb = writer.getDirectContent();
>             PdfTemplate tp = cb.createTemplate(w, h);
>             Graphics2D graphics = tp.createGraphics(w,h);
>             tp.setWidth(w);
>             tp.setHeight(h);
>             this.paint(graphics);
>             graphics.dispose();
>             cb.addTemplate(tp, 50, 400);              
>             } 
>         catch (DocumentException ex) {
>             Exceptions.printStackTrace(ex);
>         }       catch (IOException ex) {
>             Exceptions.printStackTrace(ex); 
>        } 
>         document.close(); 
>     }
>  
> Thanks in advance,
> Wessam
> 
> 


Aviso Legal:
Esta mensagem é destinada exclusivamente ao destinatário. Pode conter 
informação confidencial ou legalmente protegida. A incorrecta transmissão desta 
mensagem não significa a perca de confidencialidade. Se esta mensagem for 
recebida por engano, por favor envie-a de volta para o remetente e apague-a do 
seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de 
usar, revelar ou distribuir qualquer parte desta mensagem. 

Disclaimer:
This message is destined exclusively to the intended receiver. It may contain 
confidential or legally protected information. The incorrect transmission of 
this message does not mean the loss of its confidentiality. If this message is 
received by mistake, please send it back to the sender and delete it from your 
system immediately. It is forbidden to any person who is not the intended 
receiver to use, distribute or copy any part of this message.


-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/

Reply via email to