Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-17 Thread PhilipPeinsold
); cell.setColspan(1); cell.setHorizontalAlignment(Element.ALIGN_CENTER); table.addCell(cell); } greetings... PhilipPeinsold wrote: Hi @ all! Need your help! I'm trying to get a blob (the blob is an image) from a oracle

[iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread PhilipPeinsold
Hi @ all! Need your help! I'm trying to get a blob (the blob is an image) from a oracle datatbase, and want to put it out in a pdf-file as an image. I don't know how to get the image out of the database and then convert it into com.lowagie.text.Image. May here is someone who tried that already

Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread PhilipPeinsold
Thanks, that's absolutly what I needed! Alexis Pigeon wrote: Hi Philip, On 16/06/2008, PhilipPeinsold [EMAIL PROTECTED] wrote: Hi @ all! Need your help! I'm trying to get a blob (the blob is an image) from a oracle datatbase, and want to put it out in a pdf-file as an image

[iText-questions] table at the end of page

2008-06-13 Thread PhilipPeinsold
Hello @ all!! Is it possible to insert a table at the end of the page? I don't want to make a footer, cause the table should only be at the first page. please help me! thx -- View this message in context: http://www.nabble.com/table-at-the-end-of-page-tp17815800p17815800.html Sent from the

[iText-questions] image in cell

2008-06-02 Thread PhilipPeinsold
Hello @ all! I've a problem with creating a formular. I have to put out an image in a PdfCell, and works fine. But I want to scale the image to 15x15 and tried that with scaleAbsoluteWidth and scaleAbsoluteHight, but the size of the image didn't change!!! If I try that with an other image, it

Re: [iText-questions] image in cell

2008-06-02 Thread PhilipPeinsold
I've found what I made wrong. I tried to make cell.setImage(img); and then the picture doesn't scale! Now I make it like this, and that works fine: Image checkbox = Image.getInstance(D:/Projekt USB/checkbox.GIF); checkbox.scaleToFit(10, 10); cell = new PdfPCell(checkbox, false);