[iText-questions] Why? getOutputStream() has already been called for this response

2004-03-16 Thread David
I have seen several posts for this but none resolve my issue. First, my code: <%@ page import="java.io.*, com.lowagie.text.*, com.lowagie.text.pdf.*, com.lowagie.text.html.*, java.awt.Color" %> <%

[iText-questions] Getting the following error: getOutputStream() has already been called for this response

2004-03-16 Thread David
I have seen several posts for this message but none address my problem. Here is my code: <%@ page import="java.io.*, com.lowagie.text.*, com.lowagie.text.pdf.*, com.lowagie.text.html.*, java.awt.Col

[iText-questions] Hello ! Dispaly Thai in JasperReport which use iText

2004-03-16 Thread jonathan wong
Dear All , I read a message from Paulo Soares about how to display Thai in JasperReport : "You need pdfFontName="c:/windows/fonts/arialuni.ttf" or a similar font." I downloaded and installed the MS UNICODE font , follow the sample and make a code like : However , it is not work . Ho

[iText-questions] HTML to PDF

2004-03-16 Thread Deepak PM
Hi, I am trying to convert a HTML document to PDF Document, I am using the following code…   public static void main( String[] args ) {    Document  m_oDocument  = new Document(  );    PdfWriter m_oPdfWriter = null;    try    {

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-16 Thread Bill Ensley
My apologies to all, including the iText team. I haven't intended to create a "flame war". I was told my Leonard that web/screen was the focus of iText and PDF/X is output by nature. I will tone down my comments in an effor to create a more positive productive environment in this mialing-list. I

RE: [iText-questions] Adding header and footer to a PDF report us ing iText XML frontend

2004-03-16 Thread Penmatcha, Raju V.
I need to add a table in the page header. I was looking at UJAC, and it seems that it allows only text in page header. Is that correct? Any way around that? Thanks Raju -Original Message- From: Bruno [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 10:45 AM To: Penmatcha, Raju V.

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-16 Thread Matt Benson
--- Paulo Soares <[EMAIL PROTECTED]> wrote: > No member of the team said that there aren't plans > to support PDF/X in the future. As you saw, iText Yes, and it bothered me when I saw that remark. I remember approximately the comments from which it was derived, but I felt this last comment cont

Re: [iText-questions] Adding header and footer to a PDF report using iText XML frontend

2004-03-16 Thread Bruno
Quoting "Penmatcha, Raju V." <[EMAIL PROTECTED]>: > Hi, > > I am using iText XML for generating PDF reports. > I wasn't able to find a keyword to add a header and footer in the XML DTD. > > Is there a way to do that? Or you use PageEvents (header and footer NOT in XML) or you use http://ujac.so

[iText-questions] Adding header and footer to a PDF report using iText XML frontend

2004-03-16 Thread Penmatcha, Raju V.
Title: Adding header and footer to a PDF report using iText XML frontend Hi, I am using iText XML for generating PDF reports. I wasn't able to find a keyword to add a header and footer in the XML DTD. Is there a way to do that? Thanks Raju

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-16 Thread Paulo Soares
No member of the team said that there aren't plans to support PDF/X in the future. As you saw, iText already can create PDF/X compliant docs (except for the trimbox). What you probably won't have is a something to check compliance as you create the doc. You'll have the trimbox and more if needed

Re: [iText-questions] can i get images from a pdf?

2004-03-16 Thread Leonard Rosenthol
At 03:16 AM 3/16/2004, Francisco García Leal wrote: I am creating a pdf with images, and I am sending it to another company which has to get some images from the pdf. Does anyone know how to get these images from the pdf? Adobe Acrobat Standard or Professional. Leonard

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-16 Thread opgeklopter
Hello, first of all thanks for all the help! I wrote "congestion-key" in earlier mails, sorry, I translated it wrong from german into english...it is of course the trapped key. In the code it' working like this: writer.getInfo().put(PdfName.TRAPPED, new PdfString("false")); The string fo

RE: [iText-questions] UTF+JasperReports+DBForms+Tomcat

2004-03-16 Thread Paulo Soares
Title: Howdy   You need pdfFontName="c:/windows/fonts/arialuni.ttf" or a similar font.   Best Regards, Paulo Soares     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of nealSent: Tuesday, March 16, 2004 3:17 AMTo: [EMAIL PROTECTED]Subject: [iText-questions

RE: [iText-questions] iText - how to use PdfContentByte in servlet , PLS REPLY .. need HELP !!!

2004-03-16 Thread Paulo Soares
I suppose you something more than cb.showTextAligned(PdfContentByte.ALIGN_LEFT," pdf content byte kjsdhfkjsdhfjkshfkshfks test application", 125, 330, 0); cb.endText(); Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of

[iText-questions] can i get images from a pdf?

2004-03-16 Thread Francisco García Leal
Hello.       I am creating a pdf with images, and I am sending it to another company which has to get some images from the pdf. Does anyone know how to get these images from the pdf?     Thanks in advance.  

[iText-questions] UTF+JasperReports+DBForms+Tomcat

2004-03-16 Thread neal
Title: Howdy I apologize if this is the wrong forum for this question, but I think my underlying problem is iText related.   I am trying to generate a PDF file using dbforms and jasperreports (0.5.0)  that contains UTF8 strings (in this case Thai). Currently I only see “?” for Thai charac

Re: [iText-questions] Table height in xml

2004-03-16 Thread Bruno
Quoting Mark Goking <[EMAIL PROTECTED]>: > > > > > > Hi, I added an attrbute height under table in my tagmap xml file. But it > doesn't seem to work > Even if I set it at by pixel or by percentage, the height of the table > wont extend to the bottom of the page. :) With XML you can onl

[iText-questions] iText - how to use PdfContentByte in servlet , PLS REPLY .. need HELP !!!

2004-03-16 Thread kiruthika shunmugam
Hi, I am createing a PDF file in memory using java.io.ByteArrayOutputStream. The application sends the PDF bytes to the client via the servlet's output stream. I'm trying to write pdfcontent direct to the browser.It works fine for , but using has no effect. here is the code, if anybody has co