Re: [iText-questions] Plz..help

2007-12-08 Thread Paulo Soares
You can't, that would be stealing iText.

Paulo

- Original Message - 
From: neeraj dixit [EMAIL PROTECTED]
To: itext-questions@lists.sourceforge.net
Sent: Saturday, December 08, 2007 4:19 AM
Subject: [iText-questions] Plz..help


Dear Hi
  plz. tell me hoe to change pdf producer name any pdf 
file...
 
   thanks
 
neeraj dixit



-
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
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/


Fwd: [iText-questions] Plz help for creating a rectangle

2005-02-28 Thread ravi shankar
Hi
I have a got a rectangle with text in it  like this

   String text=Joint Secretary to CM;
String text1=Chief Minister's Office,Hyd.;
String text2=Hon'ble Chief Minister has approved;
String text3=the above cases under C.M.R.F.;
PdfContentByte rb = writer.getDirectContent();
helv = BaseFont.createFont(Helvetica,
BaseFont.WINANSI, false);
 float textSize = helv.getWidthPoint(text, 8);
rb.beginText();
rb.setFontAndSize(helv, 8);
rb.setLineWidth(1);
rb.setColorStroke(Color.blue);
rb.rectangle(630,5, 180, 80);
rb.stroke();

rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text,701,19,0);

rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text1,701,9,0);

rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text2,660,75,0);

rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text3,633,65,0);
 rb.endText();

I have got some text in the rectangle which I am printing .This is
actaully a stamp which  I am trying to print.I am putting this in
onEndPage() but this is not getting printed.I have the logic of
Page X of Y running .I am declaring a new PdfContentByte and
trying to print..but it is not getting printed at all...I am unable to
debug since no error is shownIf I print the above code in a single
page then i am getting an error  'illegal operation 're' inside a
text object'. Plz help me.
Regards
Ravi Shankar

On Fri, 18 Feb 2005 10:00:31 -, Paulo Soares [EMAIL PROTECTED] wrote:
 PdfContentByte cb = ...;
 cb.setLineWidth(2);
 cb.setColorStroke(Color.red);
 cb.rectangle(10, 10, 100, 100);
 cb.stroke();

  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On
  Behalf Of ravi shankar
  Sent: Friday, February 18, 2005 9:36 AM
  To: itext-questions@lists.sourceforge.net
  Subject: [iText-questions] Plz help for creating a rectangle
 
  Hi all this is my second messageI have been trying this but
  couldnt succeed.
  A box like this has to appear on every page on a report of table data
  .on the right side corner at the bottom of the pageI tried the
  footer but wasnt satisfied and also was not in my control .can
  someone suggest a better way for this.
  --
  | The following are approved |
  ||
  ||
  | signed by Auth.|
  |-
 
  Hi all. I have a report which needs to have a small rectangle at the
  end of every page with some formatted text in it...I could get the
  page x of y functionality  in every page but couldnt get the rectangle
  properly Please help me in this regard
  Bye
  Ravi Shankar
 
 
  ---
  SF email is sponsored by - The IT Product Guide
  Read honest  candid reviews on hundreds of IT Products from
  real users.
  Discover which products truly live up to the hype. Start reading now.
  http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
  ___
  iText-questions mailing list
  iText-questions@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/itext-questions
 

 ---
 SF email is sponsored by - The IT Product Guide
 Read honest  candid reviews on hundreds of IT Products from real users.
 Discover which products truly live up to the hype. Start reading now.
 http://ads.osdn.com/?ad_ide95alloc_id396opclick
 ___
 iText-questions mailing list
 iText-questions@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/itext-questions



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95alloc_id396op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] Plz help for creating a rectangle

2005-02-28 Thread Paulo Soares
Put the rectangle before the beginText(). 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of ravi shankar
 Sent: Monday, February 28, 2005 11:32 AM
 To: itext-questions@lists.sourceforge.net
 Subject: Fwd: [iText-questions] Plz help for creating a rectangle
 
 Hi
 I have a got a rectangle with text in it  like this
 
String text=Joint Secretary to CM;
 String text1=Chief Minister's Office,Hyd.;
 String text2=Hon'ble Chief Minister 
 has approved;
 String text3=the above cases under C.M.R.F.;
 PdfContentByte rb = writer.getDirectContent();
 helv = BaseFont.createFont(Helvetica,
 BaseFont.WINANSI, false);
  float textSize = helv.getWidthPoint(text, 8);
 rb.beginText();
 rb.setFontAndSize(helv, 8);
 rb.setLineWidth(1);
 rb.setColorStroke(Color.blue);
 rb.rectangle(630,5, 180, 80);
 rb.stroke();
 
 rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text,701,19,0);
 
 rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text1,701,9,0);
 
 rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text2,660,75,0);
 
 rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text3,633,65,0);
  rb.endText();
 
 I have got some text in the rectangle which I am printing .This is
 actaully a stamp which  I am trying to print.I am putting this in
 onEndPage() but this is not getting printed.I have the logic of
 Page X of Y running .I am declaring a new PdfContentByte and
 trying to print..but it is not getting printed at all...I am unable to
 debug since no error is shownIf I print the above code in a single
 page then i am getting an error  'illegal operation 're' inside a
 text object'. Plz help me.
 Regards
 Ravi Shankar
 
 On Fri, 18 Feb 2005 10:00:31 -, Paulo Soares 
 [EMAIL PROTECTED] wrote:
  PdfContentByte cb = ...;
  cb.setLineWidth(2);
  cb.setColorStroke(Color.red);
  cb.rectangle(10, 10, 100, 100);
  cb.stroke();
 
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] On
   Behalf Of ravi shankar
   Sent: Friday, February 18, 2005 9:36 AM
   To: itext-questions@lists.sourceforge.net
   Subject: [iText-questions] Plz help for creating a rectangle
  
   Hi all this is my second messageI have been trying this but
   couldnt succeed.
   A box like this has to appear on every page on a report 
 of table data
   .on the right side corner at the bottom of the 
 pageI tried the
   footer but wasnt satisfied and also was not in my control .can
   someone suggest a better way for this.
   --
   | The following are approved |
   ||
   ||
   | signed by Auth.|
   |-
  
   Hi all. I have a report which needs to have a small 
 rectangle at the
   end of every page with some formatted text in it...I could get the
   page x of y functionality  in every page but couldnt get 
 the rectangle
   properly Please help me in this regard
   Bye
   Ravi Shankar
  
  
   ---
   SF email is sponsored by - The IT Product Guide
   Read honest  candid reviews on hundreds of IT Products from
   real users.
   Discover which products truly live up to the hype. Start 
 reading now.
   http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
   ___
   iText-questions mailing list
   iText-questions@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/itext-questions
  
 
  ---
  SF email is sponsored by - The IT Product Guide
  Read honest  candid reviews on hundreds of IT Products 
 from real users.
  Discover which products truly live up to the hype. Start 
 reading now.
  http://ads.osdn.com/?ad_ide95alloc_id396opclick
  ___
  iText-questions mailing list
  iText-questions@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/itext-questions
 
 
 
 ---
 SF email is sponsored by - The IT Product Guide
 Read honest  candid reviews on hundreds of IT Products from 
 real users.
 Discover which products truly live up to the hype. Start reading now.
 http://ads.osdn.com/?ad_ide95alloc_id396op=ick
 ___
 iText-questions mailing list
 iText-questions@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/itext-questions

Re: [iText-questions] Plz help for creating a rectangle

2005-02-28 Thread ravi shankar
This is my onEndPage()  method..But its still not displaying.

public void onEndPage(PdfWriter writer, Document document) {
PdfContentByte cb = writer.getDirectContent();
PdfContentByte rb = writer.getDirectContent();
rb.saveState();
cb.saveState();
table.setTotalWidth(document.right() - document.left());

  String text0=Joint Secretary to CM;
String text1=Chief Minister's Office,Hyd.;
String text2=Hon'ble Chief Minister has approved;
String text3=the above cases under C.M.R.F.;
   float  textSize = helv.getWidthPoint(text0, 9);

rb.rectangle(620,20, 180, 80);

rb.beginText();
rb.setFontAndSize(helv, 9);
rb.setLineWidth(1);
rb.setColorStroke(Color.blue);
rb.stroke();
   
rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text0,691,34,0);
   
rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text1,691,24,0);
   
rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text2,650,90,0);
   
rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text3,623,80,0);
rb.endText();


String text = Page  + writer.getPageNumber() +  of ;
textSize = helv.getWidthPoint(text, 9);
float textBase = document.bottom() - 20;
float textBase = document.bottom() - 20;
cb.beginText();
cb.setFontAndSize(helv, 9);
if ((writer.getPageNumber()  1) == 1) {

  cb.setTextMatrix(document.left(), textBase);
  cb.showText(text);
  cb.endText();
  cb.addTemplate(tpl, document.left() +
textSize, textBase);
}
else {
float adjust = helv.getWidthPoint(0, 9);
   
cb.setTextMatrix(document.left(), textBase);
cb.showText(text);
cb.endText();
cb.addTemplate(tpl, document.left() + textSize, textBase);
}


cb.saveState();
cb.restoreState();

}


On Mon, 28 Feb 2005 11:41:17 -, Paulo Soares [EMAIL PROTECTED] wrote:
 Put the rectangle before the beginText().
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On
  Behalf Of ravi shankar
  Sent: Monday, February 28, 2005 11:32 AM
  To: itext-questions@lists.sourceforge.net
  Subject: Fwd: [iText-questions] Plz help for creating a rectangle
 
  Hi
  I have a got a rectangle with text in it  like this
 
 String text=Joint Secretary to CM;
  String text1=Chief Minister's Office,Hyd.;
  String text2=Hon'ble Chief Minister
  has approved;
  String text3=the above cases under C.M.R.F.;
  PdfContentByte rb = writer.getDirectContent();
  helv = BaseFont.createFont(Helvetica,
  BaseFont.WINANSI, false);
   float textSize = helv.getWidthPoint(text, 8);
  rb.beginText();
  rb.setFontAndSize(helv, 8);
  rb.setLineWidth(1);
  rb.setColorStroke(Color.blue);
  rb.rectangle(630,5, 180, 80);
  rb.stroke();
 
  rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text,701,19,0);
 
  rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text1,701,9,0);
 
  rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text2,660,75,0);
 
  rb.showTextAligned(PdfContentByte.ALIGN_LEFT,text3,633,65,0);
   rb.endText();
 
  I have got some text in the rectangle which I am printing .This is
  actaully a stamp which  I am trying to print.I am putting this in
  onEndPage() but this is not getting printed.I have the logic of
  Page X of Y running .I am declaring a new PdfContentByte and
  trying to print..but it is not getting printed at all...I am unable to
  debug since no error is shownIf I print the above code in a single
  page then i am getting an error  'illegal operation 're' inside a
  text object'. Plz help me.
  Regards
  Ravi Shankar
 
  On Fri, 18 Feb 2005 10:00:31 -, Paulo Soares
  [EMAIL PROTECTED] wrote:
   PdfContentByte cb = ...;
   cb.setLineWidth(2);
   cb.setColorStroke(Color.red);
   cb.rectangle(10, 10, 100, 100);
   cb.stroke();
  
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of ravi shankar
Sent: Friday, February 18, 2005 9:36 AM
To: itext-questions@lists.sourceforge.net
Subject: [iText-questions] Plz help for creating a rectangle
   
Hi all this is my second messageI have been trying this but
couldnt succeed.
A box like this has to appear on every page

[iText-questions] Plz help for creating a rectangle

2005-02-18 Thread ravi shankar
Hi all this is my second messageI have been trying this but
couldnt succeed.
A box like this has to appear on every page on a report of table data
.on the right side corner at the bottom of the pageI tried the
footer but wasnt satisfied and also was not in my control .can
someone suggest a better way for this.
--
| The following are approved |
||  
||
| signed by Auth.|
|-

Hi all. I have a report which needs to have a small rectangle at the
end of every page with some formatted text in it...I could get the
page x of y functionality  in every page but couldnt get the rectangle
properly Please help me in this regard
Bye
Ravi Shankar


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] Plz help for creating a rectangle

2005-02-18 Thread Paulo Soares
PdfContentByte cb = ...;
cb.setLineWidth(2);
cb.setColorStroke(Color.red);
cb.rectangle(10, 10, 100, 100);
cb.stroke(); 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of ravi shankar
 Sent: Friday, February 18, 2005 9:36 AM
 To: itext-questions@lists.sourceforge.net
 Subject: [iText-questions] Plz help for creating a rectangle
 
 Hi all this is my second messageI have been trying this but
 couldnt succeed.
 A box like this has to appear on every page on a report of table data
 .on the right side corner at the bottom of the pageI tried the
 footer but wasnt satisfied and also was not in my control .can
 someone suggest a better way for this.
 --
 | The following are approved |
 ||  
 ||
 | signed by Auth.|
 |-
 
 Hi all. I have a report which needs to have a small rectangle at the
 end of every page with some formatted text in it...I could get the
 page x of y functionality  in every page but couldnt get the rectangle
 properly Please help me in this regard
 Bye
 Ravi Shankar
 
 
 ---
 SF email is sponsored by - The IT Product Guide
 Read honest  candid reviews on hundreds of IT Products from 
 real users.
 Discover which products truly live up to the hype. Start reading now.
 http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
 ___
 iText-questions mailing list
 iText-questions@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/itext-questions
 


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95alloc_id396op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


[iText-questions] plz help me..

2002-10-18 Thread prashant kakani
Hi i'Text Developers...
Well, I am having a problem when trying to labela checkbox in PDF...
String name="testing";String value="testing";PdfFormField pform1=acroForm.addCheckBox(name, value, true, 50, 650, 60, 660);
I dont get the label as "testing" beside the checkbox
I was also trying 2 work on setCheckBoxParams  drawCheckBoxAppearences methods 
But i am not getting the label displayed. If i try adding the label to a Chunk or Phrase or... and then add the Chunk or Phrase or to the document... then i get the label in the next line.. ( not the same line )
If anybody has worked on the 'CheckBox' from " PdfAcroForm Class" plz try to help me on how you worked, onlabeling the checkbox efficiently.
I wud be very helpful if anybody cud help me. I appreciate ur help
Thanks
Prashant

Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos, & more
faith.yahoo.com

[iText-questions] Plz help me out .... in my problem

2002-09-09 Thread prashant kakani
Dear iText Developers,
I have recently joined the iText mailing list and i'm pretty much impressed.I request you people to plz help me out if you can, on my problem.
Well, I have recently developed a web application using IBM websphere( worksusing the MVC structure-servlets,Java-Beans and JSP ) and now I am required to make asmall addition;I also would want the JSP outputto be convertedinto PDF formatand get the output in the acrobat readeron the fly.
The JSP output pages have dynamic content ( generating the properties of the Java Beans).I wanted to convert this output to pdf format and it is then, i have come to know and read about the iText PDF_API and i am really impressed ; i worked out on a few examples;but unfortunately i couldn't get to see an example or any documentation about converting dynamic JSP's to PDF format.
I request anybody to plz help me out and give me an idea as to how i can work on the conversion from dynamic JSP to PDF.
Ifanybody could enclose an example, i would be very happy.
I really appreciateyour help a lot,lot.
Thanks a lot ;-)
prashant





Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes