<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-2701</id>
	<title>Nabble - iText - General</title>
	<updated>2009-11-26T02:21:56Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/iText---General-f2701.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/iText---General-f2701.html" />
	<subtitle type="html">iText is a Java-PDF library which contains classes that generate documents in the Portable Document Format (PDF) and/or HTML.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26527273</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-26T02:21:56Z</published>
	<updated>2009-11-26T02:21:56Z</updated>
	<author>
		<name>Wain, Matthew</name>
	</author>
	<content type="html">Hi :)
&lt;br&gt;&lt;br&gt;My experience of iText is only a few weeks old, but I'd already made conditional new pages so I knew that it might help in your circumstance. &amp;nbsp;The implications depend on what conditions you put into the newPage override. &amp;nbsp;I'd want to understand it fully as well :) &amp;nbsp;It was only a quick workaround in case you needed it done quickly, sorry I was unable to give a more comprehensive solution.
&lt;br&gt;&lt;br&gt;I won't be working with iText for a few weeks unfortunately (Data modelling and mock-up visio screens for the business to do) so won't be able to test anything at present. &amp;nbsp;Try the suggestion about:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;If you add the VerticalPositionMark to the final Paragraph,
&lt;br&gt;&amp;nbsp; &amp;nbsp; it will be on the current page.&amp;quot;
&lt;br&gt;&lt;br&gt;... and see if that works :)
&lt;br&gt;&lt;br&gt;Matthew
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Anthony Oganesian [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26527273&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tony@...&lt;/a&gt;]
&lt;br&gt;Sent: 24 November 2009 20:15
&lt;br&gt;To: 'Post all your questions about iText here'
&lt;br&gt;Subject: Re: [iText-questions] problem with adding content to the last
&lt;br&gt;page
&lt;br&gt;&lt;br&gt;&lt;br&gt;Behavior is expected and makes sense, but not desirable in this case. 
&lt;br&gt;I am looking for a work-around. Thanks for the pointer to VerticalPositionMark.
&lt;br&gt;I will try, but I don't expect it to succeed. By the time I start using 
&lt;br&gt;VerticalPositionMark a call to newPage has already happened, so I assume the 
&lt;br&gt;drawing will take place on the new page, will it not?
&lt;br&gt;&lt;br&gt;Is there any way to detect that no free-flowing content has been added 
&lt;br&gt;after the call to newPage and &amp;quot;roll-back&amp;quot; that call so that the 
&lt;br&gt;absolute-position drawing can happen on the right page?
&lt;br&gt;&lt;br&gt;Matthew,
&lt;br&gt;&lt;br&gt;I looked into overriding the newPage()method to delay
&lt;br&gt;The call to newPage() until it's actually needed (see below) and it worked,
&lt;br&gt;I am just concerned that I don't understand the full impact of this hack.
&lt;br&gt;I had to create MyPdfWriter because all PdfWriter constructors are protected.
&lt;br&gt;For a good reason, perhaps? :-)
&lt;br&gt;&lt;br&gt;------------ START CODE --------------
&lt;br&gt;PdfDocument pdf = new PdfDocument()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; private boolean conditionalNewPage = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; @Override
&lt;br&gt;&amp;nbsp; &amp;nbsp; public boolean add(Element element) throws DocumentException
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (conditionalNewPage)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.newPage();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; conditionalNewPage = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return super.add(element);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Override
&lt;br&gt;&amp;nbsp; &amp;nbsp; public boolean newPage()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; conditionalNewPage = true;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return true;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Override
&lt;br&gt;&amp;nbsp; &amp;nbsp; public void close()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (conditionalNewPage)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.newPage();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; conditionalNewPage = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.close(); &amp;nbsp; &amp;nbsp;//To change body of overridden methods use File | Settings | File Templates.
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;};
&lt;br&gt;document.addDocListener(pdf);
&lt;br&gt;MyPdfWriter writer = new MyPdfWriter(pdf, new FileOutputStream(&amp;quot;test.pdf&amp;quot;));
&lt;br&gt;pdf.addWriter(writer);
&lt;br&gt;------------ END CODE --------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: 1T3XT info [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26527273&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, November 24, 2009 09:25
&lt;br&gt;To: Post all your questions about iText here
&lt;br&gt;Subject: Re: [iText-questions] problem with adding content to the last page
&lt;br&gt;&lt;br&gt;Anthony Oganesian wrote:
&lt;br&gt;&amp;gt; Following is a sample illustrating my issue. Thank you very much for 
&lt;br&gt;&amp;gt; looking into this issue.
&lt;br&gt;&lt;br&gt;O... Now I understand what you mean.
&lt;br&gt;&lt;br&gt;That's expected behavior, isn't it?
&lt;br&gt;&lt;br&gt;Have you tried adding the content as a VerticalPositionMark?
&lt;br&gt;If you don't know what a VerticalPositionMark is, go to:
&lt;br&gt;&lt;a href=&quot;http://www.manning.com/affiliate/idevaffiliate.php?id=223_212&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.manning.com/affiliate/idevaffiliate.php?id=223_212&lt;/a&gt;&lt;br&gt;Download the draft of Chapter 2 and read section 2.2.6.
&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26527273&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;&lt;br&gt;This email was received from the INTERNET and scanned by the Government Secure Intranet anti-virus service supplied by Cable&amp;Wireless in partnership with MessageLabs. (CCTM Certificate Number 2009/09/0052.) In case of problems, please call your organisation's IT Helpdesk. 
&lt;br&gt;Communications via the GSi may be automatically logged, monitored and/or recorded for legal purposes.
&lt;br&gt;&lt;br&gt;Land Registry's House Price Index is now live. www.landregistry.gov.uk
&lt;br&gt;&lt;br&gt;If you have received this e-mail and it was not intended for you, please let us know, and then delete it. Please treat our communications in confidence, as you would expect us to treat yours. Land Registry checks all mail and attachments for known viruses, however, you are advised that you open any attachments at your own risk.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The original of this email was scanned for viruses by the Government Secure Intranet virus scanning service supplied by Cable&amp;Wireless in partnership with MessageLabs. (CCTM Certificate Number 2009/09/0052.) On leaving the GSi this email was certified virus free.
&lt;br&gt;Communications via the GSi may be automatically logged, monitored and/or recorded for legal purposes.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26527273&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26527273.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525309</id>
	<title>Partition of data in PDF417 with PDF417_USE_MACRO</title>
	<published>2009-11-26T01:20:16Z</published>
	<updated>2009-11-26T01:20:16Z</updated>
	<author>
		<name>John_Z80</name>
	</author>
	<content type="html">Hello, sometime ago I did a PDF417 with PDF417_USE_MACRO macro option, as I cant verify it, I though it was ok, now doing something similar I've a doubt.
&lt;br&gt;&lt;br&gt;What I did sometime ago was adapt and use part of a cut&amp;paste forum code, it did something like (not the real code only to get an idea):
&lt;br&gt;&lt;br&gt;byte[] data;
&lt;br&gt;for(number_of_blocks_of_data) //where each 850bytes for example was a block of data
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; data[]=get_this_part_of_file(block_number);
&lt;br&gt;&amp;nbsp; &amp;nbsp;pdf417_0.setMacroSegmentId(i);
&lt;br&gt;&amp;nbsp; &amp;nbsp;pdf417_0.setText(data);
&lt;br&gt;&amp;nbsp; &amp;nbsp;com.lowagie.text.Image img = pdf417_0.getImage();
&lt;br&gt;&amp;nbsp; &amp;nbsp;document.add(img);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;In this code I get, for example for a 8.5Kb 10 blocks, and I do setMacro, setText, getImage and add a image to the pdf document for EACH block,and I get a BIG pdf.
&lt;br&gt;&lt;br&gt;So I though it was not correct and did something like:
&lt;br&gt;for(number_of_blocks_of_data) //where each 850bytes for example was a block of data
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; data[]=get_this_part_of_file(block_number);
&lt;br&gt;&amp;nbsp; &amp;nbsp;pdf417_0.setMacroSegmentId(i);
&lt;br&gt;&amp;nbsp; &amp;nbsp;pdf417_0.setText(data);
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; &amp;nbsp;com.lowagie.text.Image img = pdf417_0.getImage();
&lt;br&gt;&amp;nbsp; &amp;nbsp;document.add(img);
&lt;br&gt;&lt;br&gt;The DIFFERENCE is that in the second one in the same example I get 10 block and do setmacro and setText for each block, BUT getImage and add to the document only ONE.
&lt;br&gt;&lt;br&gt;In the first example I almost get a full page of PDF417 matrix, in the second one I get a only line full of PDF417.
&lt;br&gt;&lt;br&gt;Wich one is the correct?
&lt;br&gt;&lt;br&gt;Best regards.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Partition-of-data-in-PDF417-with-PDF417_USE_MACRO-tp26525309p26525309.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525013</id>
	<title>Re: How to know if a table fits on a page?</title>
	<published>2009-11-25T22:52:53Z</published>
	<updated>2009-11-25T22:52:53Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">Sebastian Pereira wrote:
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there a way to know, before I draw a table to a page of a PDF 
&lt;br&gt;&amp;gt; document, the available vertical space on the page?
&lt;br&gt;&lt;br&gt;Use ColumnText.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525013&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-know-if-a-table-fits-on-a-page--tp26518387p26525013.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26524857</id>
	<title>[iText-Questions] Reading the PDF Forms which has the Data connection</title>
	<published>2009-11-25T22:25:44Z</published>
	<updated>2009-11-25T22:25:44Z</updated>
	<author>
		<name>Sree Harsha Vardhana</name>
	</author>
	<content type="html">Dear All,&lt;br&gt;&lt;br&gt;I have a question with respect to the reading the PDF Templates which has the XML Dataconnection in it.&lt;br&gt;&lt;br&gt;Because, if I have the XML File as Datasource, I am not able to read the value for the Fields in the PDF Form, I can get the collection of fields, but not the field value. Please check the attached file for more details. In the Image i have explained my problem with proper annotation. Please check the attachment.&lt;br&gt;
&lt;br&gt;I am hoping for the positive response from your end.&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;Regards,&lt;br&gt;&lt;br&gt;Sree Harshavardhana.&lt;br&gt;
&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524857&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;itextSharp-PDFFormReading.PNG&lt;/strong&gt; (62K) &lt;a href=&quot;http://old.nabble.com/attachment/26524857/0/itextSharp-PDFFormReading.PNG&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-iText-Questions--Reading-the-PDF-Forms-which-has-the-Data-connection-tp26524857p26524857.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26518387</id>
	<title>How to know if a table fits on a page?</title>
	<published>2009-11-25T10:25:25Z</published>
	<updated>2009-11-25T10:25:25Z</updated>
	<author>
		<name>Sebastian Pereira</name>
	</author>
	<content type="html">&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 14px; border-collapse: collapse; line-height: 18px; &quot;&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; clear: both; background-position: initial initial; background-repeat: initial initial; &quot;&gt;
Hello,&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; clear: both; background-position: initial initial; background-repeat: initial initial; &quot;&gt;
Is there a way to know, before I draw a table to a page of a PDF document, the available vertical space on the page?&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; clear: both; background-position: initial initial; background-repeat: initial initial; &quot;&gt;
The scenario is the following:&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; clear: both; background-position: initial initial; background-repeat: initial initial; &quot;&gt;
I need to add some tables to a PDF document, but there are certaing requirements I need to fulfill while I do that. Before I draw a table to the page (or add rows to the table) I need to know if the entire table will fit in the page or will need to be splitted, in which case I need to call NewPage method of the document and re-draw the table header.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-size: 14px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; clear: both; background-position: initial initial; background-repeat: initial initial; &quot;&gt;
Thank you&lt;/p&gt;&lt;/span&gt;&lt;br&gt;-- &lt;br&gt;Sebastian Pereira&lt;br&gt;Software Engineer&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26518387&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-know-if-a-table-fits-on-a-page--tp26518387p26518387.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513339</id>
	<title>Re: Overflow issue with Itext AcroFields</title>
	<published>2009-11-25T06:12:01Z</published>
	<updated>2009-11-25T06:12:01Z</updated>
	<author>
		<name>Leonard Rosenthol-3</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Look like your boxes are incorrect and you need to fix them in
the form.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Leonard&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; raju komaturi
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513339&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rkomaturi2382@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 25, 2009 9:08 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513339&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;itext-questions@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [iText-questions] Overflow issue with Itext AcroFields&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Hi Sir,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Still i didn't get actual solution to my problem,Is there
any iText API&amp;nbsp;to right truncate the value.Because values are going outside
of the box.We don't know what are the values are giving by customer and
length.I want a solution from iText API to control the overflow of values.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;If you see the red circle in&amp;nbsp;14th box values(5th) going
down where as 15 and 20 are going out of the box horizontally.I am not worrying
about conversion of .00 to 00.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Thanks,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Raju komaturi&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513339&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-issue-with-Itext-AcroFields-tp26497016p26513339.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513277</id>
	<title>Re: Overflow Indicator for text fields</title>
	<published>2009-11-25T06:08:04Z</published>
	<updated>2009-11-25T06:08:04Z</updated>
	<author>
		<name>Leonard Rosenthol-3</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:#1F497D'&gt;Then w/o the actual PDF in
question &amp;#8211; we can only guess &lt;/span&gt;&lt;span style='font-family:Wingdings;
color:#1F497D'&gt;L&lt;/span&gt;&lt;span style='color:#1F497D'&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Sawan Jain
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513277&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sawan.jain@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 25, 2009 8:16 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513277&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;itext-questions@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [iText-questions] Overflow Indicator for text fields&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Yes, it&amp;#8217;s a single line field and I have set the scroll long text
property to true. But I have not added any line break.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Sawan&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513277&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-Indicator-for-text-fields-tp26511730p26513277.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513271</id>
	<title>Re: Overflow issue with Itext AcroFields</title>
	<published>2009-11-25T06:07:30Z</published>
	<updated>2009-11-25T06:07:30Z</updated>
	<author>
		<name>raju komaturi</name>
	</author>
	<content type="html">&lt;div&gt;Hi Sir,&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Still i didn&amp;#39;t get actual solution to my problem,Is there any iText API to right truncate the value.Because values are going outside of the box.We don&amp;#39;t know what are the values are giving by customer and length.I want a solution from iText API to control the overflow of values.&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;
&lt;div&gt;If you see the red circle in 14th box values(5th) going down where as 15 and 20 are going out of the box horizontally.I am not worrying about conversion of .00 to 00.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Thanks,&lt;/div&gt;
&lt;div&gt;Raju komaturi&lt;/div&gt;
&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513271&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;example.JPG&lt;/strong&gt; (85K) &lt;a href=&quot;http://old.nabble.com/attachment/26513271/0/example.JPG&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-issue-with-Itext-AcroFields-tp26497016p26513271.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513019</id>
	<title>Re: Overflow Indicator for text fields</title>
	<published>2009-11-25T05:16:17Z</published>
	<updated>2009-11-25T05:16:17Z</updated>
	<author>
		<name>Sawan Jain-2</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Yes, it&amp;#8217;s a single line field and I have set the scroll long
text property to true. But I have not added any line break.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Sawan&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513019&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-Indicator-for-text-fields-tp26511730p26513019.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26512067</id>
	<title>Re: Overflow Indicator for text fields</title>
	<published>2009-11-25T04:46:37Z</published>
	<updated>2009-11-25T04:46:37Z</updated>
	<author>
		<name>Leonard Rosenthol-3</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:#1F497D'&gt;I bet the field is set as a
single line field (the default) and there is a line break in there!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:#1F497D'&gt;Leonard&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Sawan Jain
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26512067&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sawan.jain@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 25, 2009 6:26 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26512067&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;itext-questions@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; [iText-questions] Overflow Indicator for text fields&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;I
am using a fillable form (acroform) in Acrobat 6.0 and I keep getting the
overflow indicator (the plus sign) on the bottom left corner of my text field.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Originally
I thought my field wasn&amp;#8217;t large enough to accommodate the text but this is not
the case. I took the field and stretched it as large as the page itself but I
still receive the warning. Max length for field is 300 characters. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;In
preferences setting I kept it unchecked, but it still shows the indicator on
other client&amp;#8217;s&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Is
there any way to hide the overflow indicator?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Sawan&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26512067&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-Indicator-for-text-fields-tp26511730p26512067.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511730</id>
	<title>Overflow Indicator for text fields</title>
	<published>2009-11-25T03:25:57Z</published>
	<updated>2009-11-25T03:25:57Z</updated>
	<author>
		<name>Sawan Jain-2</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;I
am using a fillable form (acroform) in Acrobat 6.0 and I keep getting the
overflow indicator (the plus sign) on the bottom left corner of my text field.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Originally
I thought my field wasn&amp;#8217;t large enough to accommodate the text but this
is not the case. I took the field and stretched it as large as the page itself
but I still receive the warning. Max length for field is 300 characters. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;In
preferences setting I kept it unchecked, but it still shows the indicator on
other client&amp;#8217;s&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Is
there any way to hide the overflow indicator?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.5pt;font-family:&quot;Georgia&quot;,&quot;serif&quot;'&gt;Sawan&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511730&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-Indicator-for-text-fields-tp26511730p26511730.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510621</id>
	<title>Re: Overflow issue with Itext AcroFields</title>
	<published>2009-11-25T02:39:41Z</published>
	<updated>2009-11-25T02:39:41Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">raju komaturi wrote:
&lt;br&gt;&amp;gt; Hi sir,
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; Please see the attached jpeg file .I marked what are the fileds are 
&lt;br&gt;&amp;gt; overflow to outside.
&lt;br&gt;&lt;br&gt;The fields with NNNNNN are OK, and are the default behavior of iText
&lt;br&gt;when you use:
&lt;br&gt;&lt;br&gt;&amp;gt; AcroFields formFields =
&lt;br&gt;&amp;gt; stamp.getAcroFields();
&lt;br&gt;&amp;gt; formFields.setField(keys, value);
&lt;br&gt;&lt;br&gt;If you use that code for the fields with .00,
&lt;br&gt;then the content WILL BE TRUNCATED TOO, unless the field rectangle
&lt;br&gt;doesn't coincide with the printed rectangle.
&lt;br&gt;&lt;br&gt;So either your form is wrong, or you're not using setField().
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510621&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-issue-with-Itext-AcroFields-tp26497016p26510621.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510356</id>
	<title>Re: Overflow issue with Itext AcroFields</title>
	<published>2009-11-25T02:16:39Z</published>
	<updated>2009-11-25T02:16:39Z</updated>
	<author>
		<name>raju komaturi</name>
	</author>
	<content type="html">&lt;div&gt;Hi sir,&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Please see the attached jpeg file .I marked what are the fileds are overflow to outside.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I am using the below code to set the value of every acrofield.&lt;/div&gt;
&lt;div&gt;&lt;font size=&quot;2&quot;&gt;
&lt;p&gt;AcroFields formFields = &lt;/p&gt;&lt;/font&gt;&lt;font color=&quot;#0000c0&quot; size=&quot;2&quot;&gt;stamp&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;.getAcroFields();&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;&lt;font size=&quot;2&quot;&gt;
&lt;p&gt;formFields.setField(keys, value);&lt;/p&gt;
&lt;p&gt;The values are not truncated &lt;a href=&quot;http://automatically.it&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;automatically.it&lt;/a&gt;&amp;#39;s going outside of the box.Please give me any workarround solution on this particular situation.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Raju komaturi(Esn technologies)&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510356&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;example.JPG&lt;/strong&gt; (85K) &lt;a href=&quot;http://old.nabble.com/attachment/26510356/0/example.JPG&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-issue-with-Itext-AcroFields-tp26497016p26510356.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26509504</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-25T01:13:03Z</published>
	<updated>2009-11-25T01:13:03Z</updated>
	<author>
		<name>George Bilalis</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;as promised yesterday, I did check your suggestion and it works as needed. I have to thank you both 1T3XTinfo and Leonard Rosenthol for excellent guidance, that answered my question.
&lt;br&gt;Analyzing the resulting PDF in Acrobat Pro (with typographers marks applied after my processing with iText), reports an additional ColorSpace of &amp;quot;separation&amp;quot;, a &amp;quot;registration color&amp;quot; of Black, and an alternative colorSpace of Gray - as this is what I used to define my new PdfSpotColor in. Marks appear properly on each separated CMYK plate and also on each different spotColor separated plate, as needed.
&lt;br&gt;&lt;br&gt;Thanks again for all
&lt;br&gt;George
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;George Bilalis&quot;&gt;&lt;br&gt;Thank you all, 1T3XT info and Leonard for your nice help sofar.
&lt;br&gt;&lt;br&gt;I will try your last suggestion and report back, hoping it will work as needed.
&lt;br&gt;Also I hope I didn't sound &amp;quot;overloading&amp;quot; while repeating about registration black :) 
&lt;br&gt;&lt;br&gt;With great appreciation
&lt;br&gt;George
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;1T3XT info wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;George Bilalis wrote:
&lt;br&gt;&amp;gt; Hi Leonard,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I didn't try anything yet in this context as I am in the middle of a bigger
&lt;br&gt;&amp;gt; development project, part of which is this iText app.
&lt;br&gt;&amp;gt; It will be tremendous help if you give an example of how you create the
&lt;br&gt;&amp;gt; PdfSpotColor object using the name &amp;quot;All&amp;quot; ?
&lt;br&gt;&lt;br&gt;On p329, spot colors are created with the name &amp;quot;iTextSpotColorGray&amp;quot;,
&lt;br&gt;&amp;quot;iTextSpotColorRGB&amp;quot;, &amp;quot;iTextSpotColorCMYK&amp;quot;,... I don't know, but maybe
&lt;br&gt;you could try one of those lines and replace the &amp;quot;iTextXYZ&amp;quot; name with
&lt;br&gt;&amp;quot;All&amp;quot;.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;iText-questions@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26509504.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26508078</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-24T22:19:10Z</published>
	<updated>2009-11-24T22:19:10Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">Anthony Oganesian wrote:
&lt;br&gt;&amp;gt; Behavior is expected and makes sense, but not desirable in this case. 
&lt;br&gt;&amp;gt; I am looking for a work-around. Thanks for the pointer to VerticalPositionMark.
&lt;br&gt;&amp;gt; I will try, but I don't expect it to succeed. By the time I start using 
&lt;br&gt;&amp;gt; VerticalPositionMark a call to newPage has already happened, so I assume the 
&lt;br&gt;&amp;gt; drawing will take place on the new page, will it not?
&lt;br&gt;&lt;br&gt;Did you read chapter 2? I quote: &amp;quot;Observe that we didn't add the 
&lt;br&gt;PositionedArrow directly to the Document in listing 2.18. In this 
&lt;br&gt;example, the arrow refers to the content of a Paragraph, and it's better 
&lt;br&gt;to add it to the corresponding object, as is done in lines #2 and #3. 
&lt;br&gt;Otherwise a page break could cause the text to be on one page, and the 
&lt;br&gt;arrow on the next; which can be your intention, but that's not the case 
&lt;br&gt;here.&amp;quot;
&lt;br&gt;&lt;br&gt;If you add the VerticalPositionMark with document.add();
&lt;br&gt;the mark will be on the next page.
&lt;br&gt;If you add the VerticalPositionMark to the final Paragraph,
&lt;br&gt;it will be on the current page.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26508078&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26508078.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507352</id>
	<title>How to insert a image under the text as a pdf background ?</title>
	<published>2009-11-24T20:19:22Z</published>
	<updated>2009-11-24T20:19:22Z</updated>
	<author>
		<name>zengqingyi12</name>
	</author>
	<content type="html">I need some sample code to insert a image as a pdf background, is there any this kind of sample code ?
&lt;br&gt;and I have wrote the text well, then i need to insert a image under the text.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-insert-a-image-under-the-text-as-a-pdf-background---tp26507352p26507352.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26505711</id>
	<title>PdfPTable table merge</title>
	<published>2009-11-24T16:32:54Z</published>
	<updated>2009-11-24T16:32:54Z</updated>
	<author>
		<name>sk_itext</name>
	</author>
	<content type="html">&lt;br&gt;I have two PdfPTable table,
&lt;br&gt;&amp;nbsp;PdfPTable table1_top= new PdfPTable(4);....
&lt;br&gt;&amp;nbsp;PdfPTable table2_bottom= new PdfPTable(9);....
&lt;br&gt;&lt;br&gt;there is a spacing between table1_top &amp; table2_bottom tables.
&lt;br&gt;I want to delete the space inbetween these two tables and merge the border and make it feel
&lt;br&gt;like one single table. &amp;nbsp;I tried setBorderSpacingBefore by giving negative value it is not working... I might be wrong.. Can you please help me this
&lt;br&gt;&lt;br&gt;My old post is not getting accepted..sorry if you happen to read it again 
&lt;br&gt;Thank You </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PdfPTable-table-merge-tp26505711p26505711.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26504053</id>
	<title>Delete space between PdfPTable</title>
	<published>2009-11-24T14:02:46Z</published>
	<updated>2009-11-24T14:02:46Z</updated>
	<author>
		<name>sk_itext</name>
	</author>
	<content type="html">I have two PdfPTable table,
&lt;br&gt;&amp;nbsp;PdfPTable table1_top= new PdfPTable(4);....
&lt;br&gt;&amp;nbsp;PdfPTable table2_bottom= new PdfPTable(9);....
&lt;br&gt;&lt;br&gt;there is a spacing between table1_top &amp; table2_bottom tables.
&lt;br&gt;I want to avoid the space inbetween these two tables and merge the border and make it feel
&lt;br&gt;like one single table. &amp;nbsp;I tried setBorderSpacingBefore by giving negative value it is not working... I might be wrong.. Can you please help me this
&lt;br&gt;&lt;br&gt;Thank You
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Delete-space-between-PdfPTable-tp26504053p26504053.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26502580</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-24T12:14:32Z</published>
	<updated>2009-11-24T12:14:32Z</updated>
	<author>
		<name>Anthony Oganesian</name>
	</author>
	<content type="html">Behavior is expected and makes sense, but not desirable in this case. 
&lt;br&gt;I am looking for a work-around. Thanks for the pointer to VerticalPositionMark.
&lt;br&gt;I will try, but I don't expect it to succeed. By the time I start using 
&lt;br&gt;VerticalPositionMark a call to newPage has already happened, so I assume the 
&lt;br&gt;drawing will take place on the new page, will it not?
&lt;br&gt;&lt;br&gt;Is there any way to detect that no free-flowing content has been added 
&lt;br&gt;after the call to newPage and &amp;quot;roll-back&amp;quot; that call so that the 
&lt;br&gt;absolute-position drawing can happen on the right page?
&lt;br&gt;&lt;br&gt;Matthew,
&lt;br&gt;&lt;br&gt;I looked into overriding the newPage()method to delay
&lt;br&gt;The call to newPage() until it's actually needed (see below) and it worked,
&lt;br&gt;I am just concerned that I don't understand the full impact of this hack.
&lt;br&gt;I had to create MyPdfWriter because all PdfWriter constructors are protected.
&lt;br&gt;For a good reason, perhaps? :-)
&lt;br&gt;&lt;br&gt;------------ START CODE --------------
&lt;br&gt;PdfDocument pdf = new PdfDocument()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; private boolean conditionalNewPage = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; @Override
&lt;br&gt;&amp;nbsp; &amp;nbsp; public boolean add(Element element) throws DocumentException
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (conditionalNewPage)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.newPage();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; conditionalNewPage = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return super.add(element);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Override
&lt;br&gt;&amp;nbsp; &amp;nbsp; public boolean newPage()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; conditionalNewPage = true;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return true;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Override
&lt;br&gt;&amp;nbsp; &amp;nbsp; public void close()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (conditionalNewPage)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.newPage();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; conditionalNewPage = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.close(); &amp;nbsp; &amp;nbsp;//To change body of overridden methods use File | Settings | File Templates.
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;};
&lt;br&gt;document.addDocListener(pdf);
&lt;br&gt;MyPdfWriter writer = new MyPdfWriter(pdf, new FileOutputStream(&amp;quot;test.pdf&amp;quot;));
&lt;br&gt;pdf.addWriter(writer);
&lt;br&gt;------------ END CODE --------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: 1T3XT info [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502580&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, November 24, 2009 09:25
&lt;br&gt;To: Post all your questions about iText here
&lt;br&gt;Subject: Re: [iText-questions] problem with adding content to the last page
&lt;br&gt;&lt;br&gt;Anthony Oganesian wrote:
&lt;br&gt;&amp;gt; Following is a sample illustrating my issue. Thank you very much for 
&lt;br&gt;&amp;gt; looking into this issue.
&lt;br&gt;&lt;br&gt;O... Now I understand what you mean.
&lt;br&gt;&lt;br&gt;That's expected behavior, isn't it?
&lt;br&gt;&lt;br&gt;Have you tried adding the content as a VerticalPositionMark?
&lt;br&gt;If you don't know what a VerticalPositionMark is, go to:
&lt;br&gt;&lt;a href=&quot;http://www.manning.com/affiliate/idevaffiliate.php?id=223_212&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.manning.com/affiliate/idevaffiliate.php?id=223_212&lt;/a&gt;&lt;br&gt;Download the draft of Chapter 2 and read section 2.2.6.
&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502580&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26502580.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26500085</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-24T09:25:03Z</published>
	<updated>2009-11-24T09:25:03Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">Anthony Oganesian wrote:
&lt;br&gt;&amp;gt; Following is a sample illustrating my issue. Thank you very much for 
&lt;br&gt;&amp;gt; looking into this issue.
&lt;br&gt;&lt;br&gt;O... Now I understand what you mean.
&lt;br&gt;&lt;br&gt;That's expected behavior, isn't it?
&lt;br&gt;&lt;br&gt;Have you tried adding the content as a VerticalPositionMark?
&lt;br&gt;If you don't know what a VerticalPositionMark is, go to:
&lt;br&gt;&lt;a href=&quot;http://www.manning.com/affiliate/idevaffiliate.php?id=223_212&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.manning.com/affiliate/idevaffiliate.php?id=223_212&lt;/a&gt;&lt;br&gt;Download the draft of Chapter 2 and read section 2.2.6.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500085&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26500085.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499354</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-24T08:45:05Z</published>
	<updated>2009-11-24T08:45:05Z</updated>
	<author>
		<name>Anthony Oganesian</name>
	</author>
	<content type="html">Following is a sample illustrating my issue. Thank you very much for 
&lt;br&gt;looking into this issue.
&lt;br&gt;&lt;br&gt;Tony
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------ START CODE --------------
&lt;br&gt;import com.lowagie.text.*;
&lt;br&gt;import com.lowagie.text.Font;
&lt;br&gt;import com.lowagie.text.pdf.*;
&lt;br&gt;&lt;br&gt;&lt;br&gt;import java.io.*;
&lt;br&gt;&lt;br&gt;&lt;br&gt;public class PDFProblemTest
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; public static void main(String[] args)
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Document document = new Document(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new Rectangle(612, 800),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 20, 20, 200, 25);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PdfWriter writer = PdfWriter.getInstance(document,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new FileOutputStream(&amp;quot;test.pdf&amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.open();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Emulating free-flowing content
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // * use 30 lines to have the content fit perfectly
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // &amp;nbsp; on the page and see the problem
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // * use 29 or 31 lines to see it work normally
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int MAX_LINES = 30;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i = 1; i &amp;lt;= MAX_LINES; i++)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.add(new Paragraph(&amp;quot;Line &amp;quot; + i));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Now let's add absolute positioning on the last page
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Font fnt = new Font(Font.HELVETICA, 12, Font.NORMAL);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BaseFont helv = fnt.getCalculatedBaseFont(false);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PdfContentByte cb = writer.getDirectContent();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.saveState();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.beginText();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.setFontAndSize(helv, fnt.getSize());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.moveText(400, 700);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.showText(&amp;quot;ABSOLUTE POSITIONED CONTENT&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.endText();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cb.restoreState();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (Exception de)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.err.println(de.getMessage());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.close();
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;------------ END CODE --------------
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: 1T3XT info [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499354&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, November 24, 2009 04:17
&lt;br&gt;To: Post all your questions about iText here
&lt;br&gt;Subject: Re: [iText-questions] problem with adding content to the last page
&lt;br&gt;&lt;br&gt;Anthony Oganesian wrote:
&lt;br&gt;&amp;gt; It all works as described except for a very special case when the 
&lt;br&gt;&amp;gt; free-floating content fits PERFECTLY onto the last page. As far as I 
&lt;br&gt;&amp;gt; could understand the code, in this case iText is immediately creating 
&lt;br&gt;&amp;gt; the new page in anticipation of me adding more free-floating content 
&lt;br&gt;&amp;gt; (But there is none left). Instead my absolute-positioning content is now 
&lt;br&gt;&amp;gt; drawn on the extra blank page at the end of the document.
&lt;br&gt;&lt;br&gt;Can you help us reproduce the problem?
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499354&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26499354.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26497600</id>
	<title>Re: Overflow issue with Itext AcroFields</title>
	<published>2009-11-24T07:09:34Z</published>
	<updated>2009-11-24T07:09:34Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">raju komaturi wrote:
&lt;br&gt;&amp;gt; Hi Sir,
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; I am having Overflow problem with pdf form.I want to &amp;nbsp;right truncate the 
&lt;br&gt;&amp;gt; data if any of the Acrofiled overflow to outside.
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; I need small example how to do this with AcroFields and PdfStamper object.
&lt;br&gt;&lt;br&gt;The data is truncated automatically, so please rephrase your question
&lt;br&gt;(or give us an example that demonstrates your problem).
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497600&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-issue-with-Itext-AcroFields-tp26497016p26497600.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26497741</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-24T06:47:38Z</published>
	<updated>2009-11-24T06:47:38Z</updated>
	<author>
		<name>Wain, Matthew</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML xmlns=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot;&gt;&lt;HEAD&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=iso-8859-1&quot;&gt;


&lt;META content=&quot;MSHTML 6.00.2900.3627&quot; name=GENERATOR&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;&lt;/HEAD&gt;
&lt;BODY lang=EN-US vLink=purple link=blue&gt;
&lt;DIV&gt;&lt;SPAN class=864154614-24112009&gt;&lt;FONT face=Arial color=#008080 size=2&gt;You 
could possibly override the newPage method to take into account your special 
case, and not actually create the page if certain criteria are not met.&amp;nbsp; 
Haven't fiddled much with newPage though.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=864154614-24112009&gt;&lt;FONT face=Arial color=#008080 size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=864154614-24112009&gt;&lt;FONT face=Arial color=#008080 size=2&gt;Matthew&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE&gt;
  &lt;DIV class=OutlookMessageHeader dir=ltr align=left&gt;&lt;FONT face=Tahoma size=2&gt;-----Original Message-----&lt;BR&gt;&lt;B&gt;From:&lt;/B&gt; Anthony Oganesian 
  [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497741&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tony@...&lt;/a&gt;]&lt;BR&gt;&lt;B&gt;Sent:&lt;/B&gt; 24 November 2009 
  10:48&lt;BR&gt;&lt;B&gt;To:&lt;/B&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497741&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;&lt;BR&gt;&lt;B&gt;Subject:&lt;/B&gt; 
  [iText-questions] problem with adding content to the last 
  page&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/DIV&gt;
  &lt;DIV class=Section1&gt;
  &lt;P class=MsoNormal&gt;Hi,&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;I am running into a strange blocker issue with a very 
  simple requirement and would greatly appreciate any help from the 
  community.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;I need to add various elements (text, images, SVGs, etc &amp;#8230;) 
  using absolute positioning to the LAST PAGE of the pdf document that I am 
  generating. &amp;nbsp;As I am adding the regular (free-flowing) content to the 
  document, iText is creating new pages automatically for me. As soon I am done 
  with the free-floating content, I find myself on the last page and I am able 
  to add all the special (absolute-positioning) elements that I need to add to 
  the last page.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;It all works as described except for a very special case 
  when the free-floating content fits PERFECTLY onto the last page. As far as I 
  could understand the code, in this case iText is immediately creating the new 
  page in anticipation of me adding more free-floating content (But there is 
  none left). Instead my absolute-positioning content is now drawn on the extra 
  blank page at the end of the document.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;Is there any workaround for this?&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;Thanks a lot in advance for any 
  hints/pointers&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
  &lt;P class=MsoNormal&gt;Tony.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;BR&gt;This email was received from 
  the INTERNET and scanned by the Government Secure Intranet anti-virus service 
  supplied by Cable&amp;amp;Wireless in partnership with MessageLabs. (CCTM 
  Certificate Number 2009/09/0052.) In case of problems, please call your 
  organisation&amp;#8217;s IT Helpdesk. &lt;BR&gt;Communications via the GSi may be 
  automatically logged, monitored and/or recorded for legal 
purposes.&lt;BR&gt;&lt;/BLOCKQUOTE&gt;
&lt;p&gt;&lt;span style=&quot;font-family:'Arial';font-size:11pt;&quot;&gt;Land Registry's House Price Index is now live. www.landregistry.gov.uk&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family:'Arial';font-size:11pt;&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family:'Arial';font-size:11pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family:'Arial';font-size:11pt;&quot;&gt;If you have received this e-mail and it was not intended for you, please let us know, and then delete it. Please treat our communications in confidence, as you would expect us to treat yours. Land Registry checks all mail and attachments for known viruses, however, you are advised that you open any attachments at your own risk.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family:'Arial';font-size:12pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family:'Arial';font-size:12pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;BR&gt;
The original of this email was scanned for viruses by the Government Secure Intranet virus scanning service supplied by Cable&amp;Wireless in partnership with MessageLabs. (CCTM Certificate Number 2009/09/0052.) On leaving the GSi this email was certified virus free.&lt;BR&gt;
Communications via the GSi may be automatically logged, monitored and/or recorded for legal purposes.&lt;BR&gt;
&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497741&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26497741.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26497016</id>
	<title>Overflow issue with Itext AcroFields</title>
	<published>2009-11-24T06:36:30Z</published>
	<updated>2009-11-24T06:36:30Z</updated>
	<author>
		<name>raju komaturi</name>
	</author>
	<content type="html">&lt;div&gt;Hi Sir,&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I am having Overflow problem with pdf form.I want to  right truncate the data if any of the Acrofiled overflow to outside.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I need small example how to do this with AcroFields and PdfStamper object.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Thanks,&lt;/div&gt;
&lt;div&gt;Raju komaturi&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497016&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Overflow-issue-with-Itext-AcroFields-tp26497016p26497016.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26496796</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-24T06:32:45Z</published>
	<updated>2009-11-24T06:32:45Z</updated>
	<author>
		<name>George Bilalis</name>
	</author>
	<content type="html">Thank you all, 1T3XT info and Leonard for your nice help sofar.
&lt;br&gt;&lt;br&gt;I will try your last suggestion and report back, hoping it will work as needed.
&lt;br&gt;Also I hope I didn't sound &amp;quot;overloading&amp;quot; while repeating about registration black :) 
&lt;br&gt;&lt;br&gt;With great appreciation
&lt;br&gt;George
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;1T3XT info wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;George Bilalis wrote:
&lt;br&gt;&amp;gt; Hi Leonard,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I didn't try anything yet in this context as I am in the middle of a bigger
&lt;br&gt;&amp;gt; development project, part of which is this iText app.
&lt;br&gt;&amp;gt; It will be tremendous help if you give an example of how you create the
&lt;br&gt;&amp;gt; PdfSpotColor object using the name &amp;quot;All&amp;quot; ?
&lt;br&gt;&lt;br&gt;On p329, spot colors are created with the name &amp;quot;iTextSpotColorGray&amp;quot;,
&lt;br&gt;&amp;quot;iTextSpotColorRGB&amp;quot;, &amp;quot;iTextSpotColorCMYK&amp;quot;,... I don't know, but maybe
&lt;br&gt;you could try one of those lines and replace the &amp;quot;iTextXYZ&amp;quot; name with
&lt;br&gt;&amp;quot;All&amp;quot;.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;iText-questions@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26496796.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495769</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-24T05:21:07Z</published>
	<updated>2009-11-24T05:21:07Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">George Bilalis wrote:
&lt;br&gt;&amp;gt; Hi Leonard,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I didn't try anything yet in this context as I am in the middle of a bigger
&lt;br&gt;&amp;gt; development project, part of which is this iText app.
&lt;br&gt;&amp;gt; It will be tremendous help if you give an example of how you create the
&lt;br&gt;&amp;gt; PdfSpotColor object using the name &amp;quot;All&amp;quot; ?
&lt;br&gt;&lt;br&gt;On p329, spot colors are created with the name &amp;quot;iTextSpotColorGray&amp;quot;,
&lt;br&gt;&amp;quot;iTextSpotColorRGB&amp;quot;, &amp;quot;iTextSpotColorCMYK&amp;quot;,... I don't know, but maybe
&lt;br&gt;you could try one of those lines and replace the &amp;quot;iTextXYZ&amp;quot; name with
&lt;br&gt;&amp;quot;All&amp;quot;.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495769&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26495769.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495539</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-24T05:07:41Z</published>
	<updated>2009-11-24T05:07:41Z</updated>
	<author>
		<name>George Bilalis</name>
	</author>
	<content type="html">Hi Leonard,
&lt;br&gt;&lt;br&gt;I didn't try anything yet in this context as I am in the middle of a bigger development project, part of which is this iText app.
&lt;br&gt;It will be tremendous help if you give an example of how you create the PdfSpotColor object using the name &amp;quot;All&amp;quot; ?
&lt;br&gt;&lt;br&gt;Thanks again
&lt;br&gt;George
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Leonard Rosenthol-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Create the PdfSpotColor object using the name &amp;quot;All&amp;quot; - that's what you need to do. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Have you tried it? &amp;nbsp;What do you get and why isn't it correct?
&lt;br&gt;&lt;br&gt;Leonard
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: George Bilalis [mailto:grg_blls@hotmail.com] 
&lt;br&gt;Sent: Tuesday, November 24, 2009 4:54 AM
&lt;br&gt;To: itext-questions@lists.sourceforge.net
&lt;br&gt;Subject: Re: [iText-questions] How?: Drawing typographers marks using Registration Black
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;&amp;gt;From iText API, you can set a colorStroke in 2 flavors:
&lt;br&gt;&lt;br&gt;setColorStroke
&lt;br&gt;public void setColorStroke(Color color)Sets the stroke color. color can be
&lt;br&gt;an ExtendedColor. 
&lt;br&gt;&lt;br&gt;Parameters:
&lt;br&gt;color - the color
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;setColorStroke
&lt;br&gt;public void setColorStroke(PdfSpotColor sp,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;float tint)Sets the stroke color to a spot color. 
&lt;br&gt;&lt;br&gt;Parameters:
&lt;br&gt;sp - the spot color
&lt;br&gt;tint - the tint for the spot color. 0 is no color and 1 is 100% color
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Registration (typographers) marks have to appear in ALL separated color
&lt;br&gt;plates of a multicolor job (CMYK plus Spot colors). What named color should
&lt;br&gt;I use according to the above definitions?
&lt;br&gt;I know I have to use a colorSpace &amp;quot;separation&amp;quot; and a colorant &amp;quot;All&amp;quot;
&lt;br&gt;according to PDF reference, but I can't see how to accomplish this with
&lt;br&gt;above API definitions.
&lt;br&gt;(I hope this helps you understand the nature of my question)
&lt;br&gt;&lt;br&gt;George &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;1T3XT info wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; George Bilalis wrote:
&lt;br&gt;&amp;gt;&amp;gt; Well, No.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; SetColorFill is for filling the &amp;quot;interior area&amp;quot; of shapes, while a line
&lt;br&gt;&amp;gt;&amp;gt; is
&lt;br&gt;&amp;gt;&amp;gt; an abstract of 2 points with no interior.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What about one of the setColorStroke methods? I can't give a more 
&lt;br&gt;&amp;gt; concrete answer because I don't understand the problem.
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; This answer is provided by 1T3XT BVBA
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; iText-questions mailing list
&lt;br&gt;&amp;gt; iText-questions@lists.sourceforge.net
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;&amp;gt; Check the site with examples before you ask questions:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;&amp;gt; You can also search the keywords list:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26493155.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26493155.html&lt;/a&gt;&lt;br&gt;Sent from the iText - General mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;iText-questions@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;iText-questions@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26495539.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495264</id>
	<title>Re: Using Unicode characters 0f71 - 0fbc</title>
	<published>2009-11-24T04:19:14Z</published>
	<updated>2009-11-24T04:19:14Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">Leanne Northrop wrote:
&lt;br&gt;&amp;gt; a ligaturizer does not yet
&lt;br&gt;&amp;gt; exist for Tibetan?
&lt;br&gt;&lt;br&gt;Correct.
&lt;br&gt;There's no ligaturizer for Hindic languages either.
&lt;br&gt;&lt;br&gt;&amp;gt; Tibetan is both horizontal and vertical but generally regarded as
&lt;br&gt;&amp;gt; horizontal where the vertical stacks are 'ligatures' of the vowels,
&lt;br&gt;&amp;gt; subjoined and main characters. Can anyone can offer any pointers on
&lt;br&gt;&amp;gt; how to solve this?
&lt;br&gt;&lt;br&gt;Write a Tibetan ligaturizer.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495264&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Using-Unicode-characters-0f71---0fbc-tp26494837p26495264.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495289</id>
	<title>Re: problem with adding content to the last page</title>
	<published>2009-11-24T04:17:10Z</published>
	<updated>2009-11-24T04:17:10Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">Anthony Oganesian wrote:
&lt;br&gt;&amp;gt; It all works as described except for a very special case when the 
&lt;br&gt;&amp;gt; free-floating content fits PERFECTLY onto the last page. As far as I 
&lt;br&gt;&amp;gt; could understand the code, in this case iText is immediately creating 
&lt;br&gt;&amp;gt; the new page in anticipation of me adding more free-floating content 
&lt;br&gt;&amp;gt; (But there is none left). Instead my absolute-positioning content is now 
&lt;br&gt;&amp;gt; drawn on the extra blank page at the end of the document.
&lt;br&gt;&lt;br&gt;Can you help us reproduce the problem?
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495289&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26495289.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494837</id>
	<title>Using Unicode characters 0f71 - 0fbc</title>
	<published>2009-11-24T04:07:49Z</published>
	<updated>2009-11-24T04:07:49Z</updated>
	<author>
		<name>Leanne Northrop-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I have just read chapters 8 &amp; 9 of iText in Action ed 1 and tried
&lt;br&gt;searching the archives for information on using Tibetan stacking
&lt;br&gt;characters with iText but have yet to find anything. I noticed the
&lt;br&gt;Peace example unfortunately does not correctly stack the characters, I
&lt;br&gt;guess because the setWidth was not used or a ligaturizer does not yet
&lt;br&gt;exist for Tibetan? I am trying to get iText to produce the same output
&lt;br&gt;as putting &amp;#x0F44;&amp;#x0F7A; into a HTML file (viewed on a Mac or
&lt;br&gt;Vista) using:
&lt;br&gt;&lt;br&gt;BaseFont.createFont(&amp;quot;/ARIALUNI.ttf&amp;quot;, BaseFont.IDENTITY_H, BaseFont.EMBEDDED)
&lt;br&gt;...
&lt;br&gt;String s = &amp;quot;\u0f44\0f7a&amp;quot;;
&lt;br&gt;document.add(new Paragraph(s, font));
&lt;br&gt;&lt;br&gt;Tibetan is both horizontal and vertical but generally regarded as
&lt;br&gt;horizontal where the vertical stacks are 'ligatures' of the vowels,
&lt;br&gt;subjoined and main characters. Can anyone can offer any pointers on
&lt;br&gt;how to solve this?
&lt;br&gt;&lt;br&gt;With Kind Regards,
&lt;br&gt;Leanne
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494837&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Using-Unicode-characters-0f71---0fbc-tp26494837p26494837.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494300</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-24T03:24:15Z</published>
	<updated>2009-11-24T03:24:15Z</updated>
	<author>
		<name>Leonard Rosenthol-3</name>
	</author>
	<content type="html">Create the PdfSpotColor object using the name &amp;quot;All&amp;quot; - that's what you need to do. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Have you tried it? &amp;nbsp;What do you get and why isn't it correct?
&lt;br&gt;&lt;br&gt;Leonard
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: George Bilalis [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494300&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;grg_blls@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, November 24, 2009 4:54 AM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494300&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;itext-questions@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [iText-questions] How?: Drawing typographers marks using Registration Black
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;&amp;gt;From iText API, you can set a colorStroke in 2 flavors:
&lt;br&gt;&lt;br&gt;setColorStroke
&lt;br&gt;public void setColorStroke(Color color)Sets the stroke color. color can be
&lt;br&gt;an ExtendedColor. 
&lt;br&gt;&lt;br&gt;Parameters:
&lt;br&gt;color - the color
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;setColorStroke
&lt;br&gt;public void setColorStroke(PdfSpotColor sp,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;float tint)Sets the stroke color to a spot color. 
&lt;br&gt;&lt;br&gt;Parameters:
&lt;br&gt;sp - the spot color
&lt;br&gt;tint - the tint for the spot color. 0 is no color and 1 is 100% color
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Registration (typographers) marks have to appear in ALL separated color
&lt;br&gt;plates of a multicolor job (CMYK plus Spot colors). What named color should
&lt;br&gt;I use according to the above definitions?
&lt;br&gt;I know I have to use a colorSpace &amp;quot;separation&amp;quot; and a colorant &amp;quot;All&amp;quot;
&lt;br&gt;according to PDF reference, but I can't see how to accomplish this with
&lt;br&gt;above API definitions.
&lt;br&gt;(I hope this helps you understand the nature of my question)
&lt;br&gt;&lt;br&gt;George &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;1T3XT info wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; George Bilalis wrote:
&lt;br&gt;&amp;gt;&amp;gt; Well, No.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; SetColorFill is for filling the &amp;quot;interior area&amp;quot; of shapes, while a line
&lt;br&gt;&amp;gt;&amp;gt; is
&lt;br&gt;&amp;gt;&amp;gt; an abstract of 2 points with no interior.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What about one of the setColorStroke methods? I can't give a more 
&lt;br&gt;&amp;gt; concrete answer because I don't understand the problem.
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; This answer is provided by 1T3XT BVBA
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; iText-questions mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494300&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;&amp;gt; Check the site with examples before you ask questions:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;&amp;gt; You can also search the keywords list:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26493155.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26493155.html&lt;/a&gt;&lt;br&gt;Sent from the iText - General mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494300&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494300&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26494300.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493819</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-24T02:50:34Z</published>
	<updated>2009-11-24T02:50:34Z</updated>
	<author>
		<name>George Bilalis</name>
	</author>
	<content type="html">Hi again,
&lt;br&gt;Thanks for a commented and clear answer. 
&lt;br&gt;&lt;br&gt;I am not complaining about anything and I agree that besides buying your ecellent book 20 months ago, that has helped me enormously sofar, I can only wait to buy the second edition, when ready.
&lt;br&gt;&lt;br&gt;My first post on the subject was on May 2008 and Leonard was very kind at the time to provide a rather generic answer (based on the PDF reference), which although correct, couldn't be applied. As I was rather academically interested at that time, I let it pass. Now I had to decide if I could use iText (as is) to solve a real problem, or abide by the limitations of my solution. 
&lt;br&gt;&lt;br&gt;Thank you for clearing this out (even as a negative - cant be done manner). 
&lt;br&gt;I believe iText is a great product sofar and maybe some future edition extends functionality in this multicolor offset printing realm along with its widening market acceptance. Afterall it's all about PDF :)
&lt;br&gt;&lt;br&gt;Thanks Bruno for iText
&lt;br&gt;George
&lt;br&gt;&lt;br&gt;P.S. I think the only way to bypass the limitation as it stands, is to know before hand the names of all the spot colors besides CMYK, in the print job. This way I could use these colorants names in setColorStroke(PdfSpotColor, tint) and draw my registration marks once for C=1,M=1,Y=1,K=1 and one for each spot color. &amp;nbsp;What do you think?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;1T3XT info wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;George Bilalis wrote:
&lt;br&gt;&amp;gt; Registration (typographers) marks have to appear in ALL separated color
&lt;br&gt;&amp;gt; plates of a multicolor job (CMYK plus Spot colors). What named color should
&lt;br&gt;&amp;gt; I use according to the above definitions?
&lt;br&gt;&lt;br&gt;I don't know because I never had to do this in a project.
&lt;br&gt;&lt;br&gt;Everything that is offered for free in iText was written because 
&lt;br&gt;somebody needed it in a project (and spent time and/or money on it). 
&lt;br&gt;Some part of what is offered for free was written for fun.
&lt;br&gt;&lt;br&gt;&amp;gt; I know I have to use a colorSpace &amp;quot;separation&amp;quot; and a colorant &amp;quot;All&amp;quot;
&lt;br&gt;&amp;gt; according to PDF reference, but I can't see how to accomplish this with
&lt;br&gt;&amp;gt; above API definitions.
&lt;br&gt;&lt;br&gt;I should look that up in the PDF Reference, but I don't have any time to 
&lt;br&gt;do that.
&lt;br&gt;&lt;br&gt;&amp;gt; (I hope this helps you understand the nature of my question)
&lt;br&gt;&lt;br&gt;I don't have the time to do the needed research to understand your 
&lt;br&gt;question. Please understand that you're using iText for free and that 
&lt;br&gt;your asking something that falls outside of the scope of what can be 
&lt;br&gt;offered for free.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;iText-questions@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26493819.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494749</id>
	<title>problem with adding content to the last page</title>
	<published>2009-11-24T02:47:45Z</published>
	<updated>2009-11-24T02:47:45Z</updated>
	<author>
		<name>Anthony Oganesian</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;Hi,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I am running into a strange blocker issue with a very simple
requirement and would greatly appreciate any help from the community.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I need to add various elements (text, images, SVGs, etc &amp;#8230;)
using absolute positioning to the LAST PAGE of the pdf document that I am
generating. &amp;nbsp;As I am adding the regular (free-flowing) content to the
document, iText is creating new pages automatically for me. As soon I am done
with the free-floating content, I find myself on the last page and I am able to
add all the special (absolute-positioning) elements that I need to add to the
last page.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;It all works as described except for a very special case when
the free-floating content fits PERFECTLY onto the last page. As far as I could
understand the code, in this case iText is immediately creating the new page in
anticipation of me adding more free-floating content (But there is none left).
Instead my absolute-positioning content is now drawn on the extra blank page at
the end of the document.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Is there any workaround for this?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Thanks a lot in advance for any hints/pointers&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Tony.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494749&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-adding-content-to-the-last-page-tp26494749p26494749.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493305</id>
	<title>Re: How?: Drawing typographers marks using Registration Black</title>
	<published>2009-11-24T02:04:10Z</published>
	<updated>2009-11-24T02:04:10Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">George Bilalis wrote:
&lt;br&gt;&amp;gt; Registration (typographers) marks have to appear in ALL separated color
&lt;br&gt;&amp;gt; plates of a multicolor job (CMYK plus Spot colors). What named color should
&lt;br&gt;&amp;gt; I use according to the above definitions?
&lt;br&gt;&lt;br&gt;I don't know because I never had to do this in a project.
&lt;br&gt;&lt;br&gt;Everything that is offered for free in iText was written because 
&lt;br&gt;somebody needed it in a project (and spent time and/or money on it). 
&lt;br&gt;Some part of what is offered for free was written for fun.
&lt;br&gt;&lt;br&gt;&amp;gt; I know I have to use a colorSpace &amp;quot;separation&amp;quot; and a colorant &amp;quot;All&amp;quot;
&lt;br&gt;&amp;gt; according to PDF reference, but I can't see how to accomplish this with
&lt;br&gt;&amp;gt; above API definitions.
&lt;br&gt;&lt;br&gt;I should look that up in the PDF Reference, but I don't have any time to 
&lt;br&gt;do that.
&lt;br&gt;&lt;br&gt;&amp;gt; (I hope this helps you understand the nature of my question)
&lt;br&gt;&lt;br&gt;I don't have the time to do the needed research to understand your 
&lt;br&gt;question. Please understand that you're using iText for free and that 
&lt;br&gt;your asking something that falls outside of the scope of what can be 
&lt;br&gt;offered for free.
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26493305&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-%3A-Drawing-typographers-marks-using-Registration-Black-tp26421239p26493305.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493223</id>
	<title>Re: Re naming TextFields on different pages using iText is not working..</title>
	<published>2009-11-24T01:56:40Z</published>
	<updated>2009-11-24T01:56:40Z</updated>
	<author>
		<name>1T3XT info</name>
	</author>
	<content type="html">jthom wrote:
&lt;br&gt;&amp;gt; This is my first time using iText:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Could you give little more info in how the parent can be renamed? 
&lt;br&gt;&lt;br&gt;Get the /AcroForm from the root.
&lt;br&gt;Parse the tree with the fields,
&lt;br&gt;replace the /T value of the field you want to change.
&lt;br&gt;&lt;br&gt;If this is your first time using iText:
&lt;br&gt;ask a professional to do it for you.
&lt;br&gt;&lt;br&gt;Chapter 18 of &amp;quot;iText in Action - first edition&amp;quot; can help you understand 
&lt;br&gt;what the first three lines of my answer mean. You get the ebook of the 
&lt;br&gt;first edition for free if you purchase the MEAP version of the second 
&lt;br&gt;edition: &lt;a href=&quot;http://1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.com/docs/book.php&lt;/a&gt;&amp;nbsp;)
&lt;br&gt;-- 
&lt;br&gt;This answer is provided by 1T3XT BVBA
&lt;br&gt;&lt;a href=&quot;http://www.1t3xt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/&lt;/a&gt;&amp;nbsp;- &lt;a href=&quot;http://www.1t3xt.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;iText-questions mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26493223&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iText-questions@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/itext-questions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/itext-questions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Buy the iText book: &lt;a href=&quot;http://www.1t3xt.com/docs/book.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.com/docs/book.php&lt;/a&gt;&lt;br&gt;Check the site with examples before you ask questions: &lt;a href=&quot;http://www.1t3xt.info/examples/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.1t3xt.info/examples/&lt;/a&gt;&lt;br&gt;You can also search the keywords list: &lt;a href=&quot;http://1t3xt.info/tutorials/keywords/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://1t3xt.info/tutorials/keywords/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Renaming-TextFields-on-different-pages-using-iText-is-not-working..-tp26449014p26493223.html" />
</entry>

</feed>
