Re: [iText-questions] Unable to view the Example PDF given in the tutorial

2003-11-19 Thread Anis h
[EMAIL PROTECTED] wrote: Quoting Anis h [EMAIL PROTECTED]: Thanks a lot bruno! I tried to follow your instructions and created a pdf with the following font, bf = BaseFont.createFont(HeiseiKakuGo-W5, UniJIS-UCS2-H, BaseFont.NOT_EMBEDDED); Font font = new Font(bf, 12

Re: [iText-questions] Unable to view the Example PDF given in the tutorial

2003-11-18 Thread Anis h
Thanks a lot bruno! I tried to follow your instructions and created a pdf with the following font, bf = BaseFont.createFont(HeiseiKakuGo-W5, UniJIS-UCS2-H, BaseFont.NOT_EMBEDDED); Font font = new Font(bf, 12); but the pdf doesn't have the japanese characters .. please see the attachment.

[iText-questions] Unable to view the Example PDF given in the tutorial

2003-11-14 Thread Anis h
CJK Fonts are explained in the Tutorial in Chapter 9 There is link following the text given below This piece of code is used in example 9 and you can take a look a the result here. I clicked on the link to view the pdf .. I am getting the following errors error 1: A font required for font

[iText-questions] language support in iText

2003-07-15 Thread Anis h
Hello, I need to create PDF documents using iText and Italian, Germany, Japanese and Spanish. I need to understand how to use these fonts in iText.. please let me know where to find some info about this, any examples .. or previous posts Your help is highly appreciated Anish

[iText-questions] Servlet PDF Streaming

2003-04-02 Thread Anis h
Mike, change your browser settings check for newer versons of stored pages to AUTOMATICALLY your servlet will be invoked only once... Anis __ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more

[iText-questions] Servlet PDF Streaming

2003-04-02 Thread Anis h
Hello, I have a servlet that generates a PDF. Whenever I request the Servlet from my browser (IE 6.0) the Servlet always get invoked 2 times. I found some mention of this on a Google Groups search, but the suggested remedy did not work. Mark, Is your servlet always responds to the browser

[iText-questions] Servlet PDF Streaming - workaround

2003-04-02 Thread Anis h
try this.. it will work HTMLHEAD/head BODY leftMargin=0 topMargin=0 scroll=no EMBED src=http://myserver/pdfCreationServlet; width=100% height=100% type=application/pdf fullscreen=yes /body /html when you invoke your servlet which creates PDF as shown above only one request will be sent to the

[iText-questions] Arial font in iText

2003-04-01 Thread Anis h
Hello, I need to use Arial font and I am planning to create the font as shown below.. BaseFont arial = BaseFont.createFont(arial.ttf, BaseFont.WINANSI, BaseFont.EMBEDDED); Font font = new Font(arial, 12, Font.NORMAL); will there be a problem if the client system does not support Arial? I

[iText-questions] (no subject)

2003-03-06 Thread Anis h
Hello, I need to create multiple tables in a page .see the attached file ..I just want to know if this is possible by using Itext and if so few tips please. thanks __ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more

[iText-questions] Regarding servlet with iText in IE

2002-11-20 Thread Anis h
Aanshul, if still your problem is unresolved .. try installing acrobat reader .. it will refresh the plug-ins.. it helped me Anis __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site http://webhosting.yahoo.com

[iText-questions] problem with creating pdf files with Japanese characters

2002-11-20 Thread Anis h
Bruno/Paulo, I created a pdf file using the source code in http://www.mail-archive.com/itext-questions@lists.sourceforge.net/msg02770.html I downloaded the jar file as you suggested and I am getting the following error; com.lowagie.text.DocumentException: Font 'HeiseiKakuGo-W5' with

[iText-questions] problem with creating pdf files with Japanese characters

2002-11-20 Thread Anis h
first line in my earlier mail should read I tried to create a pdf file using the source code in .. sorry for the typo. Thanks Anis Note: forwarded message attached. __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site

[iText-questions] PDF parsing

2002-08-15 Thread Anis h
Hello! I would like to read a PDF document and extract certain text from the pdf.. I know PDFReader can read a PDF document but I don't know how to extract different pages from the pdfReader object? Kindly let me know. My requirement is like this... read a pdf docuent which has 5 pages ..

[iText-questions] FlateDecode - De compression

2002-08-14 Thread Anis h
Hello! iText has PDFStream where it compresses data using FlateDecode mechanism... I am wondering is there any class in iText which does the otherway arround.. meaning decompress the FlateDecode Compressed data Kindly let me know Thanks in advance Anish

[iText-questions] IE problem

2002-07-16 Thread Anis h
Hello! I am facing a prolem with IE 5.5 sp2 When I invoke my servlet to create a pdf from the browser .. IE doesn't bring the acroat plugin .. it throws me file download window, if i click save to disk it gives another window .. in which it says Internet explorer was not able to open this

[iText-questions] Gzip - pdf

2002-06-27 Thread Anis h
Hello, I create pdf using iText and I wanted zip it and send it to the browser.. this is what i did javax.servlet.ServletOutputStream servletOutputStream = response.getOutputStream(); response.setContentType(application/pdf); response.setHeader(Content-Encoding, gzip); PrintStream

[iText-questions] Servlet runs twice if I use IE 5.5

2002-05-03 Thread Anis h
Hello, I read your answere posted asking to check FAQ for info regarding IE problems.. as you said I followed the link to MS site and confirmed that IE 5.5 SP1 submits the request twice.. I installed SP2 but still I have the same problem.. unfortunately my sevelt updates a DB then it generates

[iText-questions] expiring pdf in the browser

2002-04-03 Thread Anis h
Hello, I have created a pdf in my servlet using iText and my servlet response goes to the browser, netscapte 6.2 after rendering pdf I move to different url .. and when I try to use browser BACK button I don't want to see the pdf on my browser ,..in short I want to expire the pdf ... kindly