Re: itext Programming Software Development by peter_budo >can someone show me how to view html code inside pdfptable using itext Sorry but that question doesn't makes sense to me. If you want to add some HTML to PDF you should look at iText book chapter 9 which has plenty of examples how to manipulate HTML have look [here](http://itextpdf.com/book/examples.php#chapter9) itext Programming Software Development by bipi09 hello.. can someone show me how to view html code inside pdfptable using itext iText for printing pdf Programming Web Development by chan95 hi everybody i have a problem of using iText for printing an existing pdf files. while reading the API of iText i came across methods where the Document object can be used and pdfWriter and writing pdf files etc. but i couldnt figure out how to print a given pdf file. pls help, thanks a lot in advance. Re: iText for printing pdf Programming Web Development by peter_budo … are not using a correct way of generating PDF with iText library. For example you missing instance of PdfWriter that is… online [URL="http://itextdocs.lowagie.com/tutorial/"]Tutorial: iText by Example[/URL], however you may also want to get… itext reports with database values Programming Software Development by london-G Hello, I am using Itext to create reports, I have created the layout which includes … Re: itext Programming Software Development by stultuske maybe [this](http://bit.ly/12LxHIY) can help you out? A few questions regarding iText... Programming Software Development by azket … has to write nice PDFs, and I'm using the iText library to do this. I am nearly done, except for… some major layout problems. 1. iText automatically splits tables up if it reaches the end of… how to create a pdf using iText in java Programming Computer Science by akashtripathi8 Introduction of iText Itext is often a library that permits you to create and manipulate PDF documents. It enables developers seeking to enhance web- and also other applications with dynamic PDF document generation and/or manipulation. javaaster.com Re: A few questions regarding iText... Programming Software Development by peter_budo … going on. So here we go with general stuff from iText online tutorials[LIST] [*] [URL="http://itextdocs.lowagie.com/tutorial… Re: A few questions regarding iText... Programming Software Development by azket … couldnt find any differences to my code though: [url]http://itext.ugent.be/library/com/lowagie/examples/objects/tables/CellAlignment.java… How to generate PDF using iText library Programming Software Development by java_programmer Could anyone please suggest me how to generate PDF files in Java using iText library. I searched the net but didn't get any good tutorial or code on it.Thanks in advance. charecters are missing for slovakia while generating pdf using itext Programming Software Development by neelunova I am using itext to create a pdf file for slovakia in java ,and after the pdf is created some characters are not displayed properly.I am using cp 1250 as charecter set and ARIALUNI.TTF file for font.How do i resolve the problem? Re: charecters are missing for slovakia while generating pdf using itext Programming Software Development by stultuske [QUOTE=neelunova;538432]I am using itext to create a pdf file for slovakia in java ,and … Another iText question... Programming Software Development by Xessa Hello. I have two questions about iText. The pdf file exactly has to be like the word … Reduce PDF File Size using Itext(JAVA) Programming Software Development by jeypijeypi … I can reduce the file size of the pdf using Itext? Or is there any way that I can generated the… How to add bookmarks and hyperlinks in pdf using itext? Programming Software Development by gopal_3 How to add bookmarks and hyperlinks in pdf using itext? can any body tell example. Thanks advance.. Re: How to add bookmarks and hyperlinks in pdf using itext? Programming Software Development by peter_budo Is it so hard to use Google search these days???? "java itext create hyperlink" and first link is http://itextpdf.com/examples/iia.php?id=131 Re: iText for printing pdf Programming Web Development by chan95 hi i just found out the answer, its in the Execute file of the com.lowagie.tools package thanks for ur time. but i still get another error where once the acrobat opens it keeps saying that the file is damaged but its not. no matter what file i try it keeps giving the error alert box. Re: iText for printing pdf Programming Web Development by peter_budo Some supportive data like code used, screen shot of error or printed PDF would help out to see what may be the issue Re: iText for printing pdf Programming Web Development by chan95 The java snippet used for printing is as follows: try{ Executable ex = new Executable(); ex.openDocument(fileName); ex.printDocument(fileName); }catch(IOException e){ e.printStackTrace(); } the acrobat reader opens but generates a error message as attached. Thanks for your time Re: iText for printing pdf Programming Web Development by peter_budo I'm sorry but the snipped is not sufficient enough. Would you mind to post the whole thing? That way I may either spot the problem or try to re-created the same problem on my own and see what can be done about it... Re: iText for printing pdf Programming Web Development by chan95 the program is structured as follows. there is this html file called PrintFile.html which has text field to pass a request parameter for the file name, once the form is submitted it calls upon a servlet called PrintServlet which forwards the request to a jsp called PrintJsp which then instenticate an object of the class FilePrinting.java which is … Re: iText for printing pdf Programming Web Development by chan95 i have read the example given on the site of the use of PdfWriter, but as i have read and understood the PdfWriter class is used when required to write a pdf and there u need to specify the font thats being used and the document size etc. but in here i am printing a existing pdf saved in the web application. but my only concern is this the … Re: iText for printing pdf Programming Web Development by peter_budo [QUOTE=chan95;710702]but in here i am printing a existing pdf saved in the web application. but my only concern is this the sample pdf file i saved along with the html and jsp files and assumed thats the default location the container look for the file but not sure whether its required for me to explicity specify the location the container needs to… Re: itext reports with database values Programming Software Development by london-G Ok made some changes but nothing happens Properties conProps = new Properties(); conProps.setProperty("user", "root"); conProps.setProperty("password", "root"); try { con = DriverManager.getConnection ("jdbc:mysql://localhost:… iText > merge/split PdfPCell? Programming Software Development by ShadoX Hello all, I need to make a PdfPTable with some cells being split or merged into one. The problem is that I can't seem to find a way of doing that. Could someone please help me with this? I spent the last hour on Google and couldn't find anything.. :( [B][edit][/B] I seem to be able to achieve a similar effect if I add just other tables to the… Itext sharp initialisation problem Programming Software Development by punnoosepj I have some problem i am trying to create a pdf with itextsharp in an aspx page i published in web service and called it but for the first time when i called aspx page i am getting an error message. But for every subsequent call to the webpage with query string i get the pdf -----------------The error message is----------- The process … Re: A few questions regarding iText... Programming Software Development by azket Okay, I solved the first Problem myself: [CODE=java]if (table.getTotalHeight() > writer.getVerticalPosition(true) - doc.bottomMargin()) { doc.newPage(); } doc.add(table);[/CODE] This seems to work fine. But please, does anyone have a solution for the problem in my second posting? If I got this one, I'm … Re: A few questions regarding iText... Programming Software Development by peter_budo I'm not exactly sure why (would have to spend more time reading documentation), but component alignment does not work on Chunk. You have to do cell alignment through Paragraph [code=Java]import java.io.FileOutputStream; import com.lowagie.text.*; import java.io.IOException; import com.lowagie.text.Document; import com.lowagie.text.pdf.PdfPCell… Re: A few questions regarding iText... Programming Software Development by azket Ok, thanks! Looks like the PdfPCell is pretty bugged: [CODE=java] PdfPCell cell = new PdfPCell(new Paragraph("I WANT TO BE RIGHT")); //alignment works fine. PdfPCell cell2 = new PdfPCell(); cell2.addElement(new Paragraph("ME TOO")); //alignment wont work PdfPCell cell3 = new PdfPCell(new Chunk("ME THREE&…