[iText-questions] Trouble applying style to html snippet via CSSResolver

2012-10-20 Thread ken
Hi there, I am trying to add a chunk of html to my pdf document, which it is doing nicely, but I am unable to apply style tags via CSSResolver, can someone have a look at the code below and advise, thanks. XMLWorkerFontProvider fontProvider = new XMLWorkerFontProvider();

Re: [iText-questions] Exporting XMP XML from PDF file

2010-02-12 Thread G. Ken Holman
Thank you for the quick response! I'll look into that. . . . . . . . . . . Ken At 2010-02-12 07:02 +0100, 1T3XT info wrote: >G. Ken Holman wrote: > > Please forgive me if these are duplicate questions but I'm having > > problems searching this mail list: > > >

[iText-questions] Exporting XMP XML from PDF file

2010-02-11 Thread G. Ken Holman
e embedded using a custom XMP schema; which iText library calls will give me access to the XMP? Thanks for your help! . . . . . . . . . . . Ken -- XSLT/XQuery/XPath training after http://XMLPrague.cz 2010-03-15/19 XSLT/XQuery/XPath training: San Carlos, California 2010-04-26/30 Vote fo

[iText-questions] Google's AppEngine?

2009-04-21 Thread Ken Corey
Anyone tried iText on Google's AppEngine? I'm after high-powered PDF generation, and I hear that iText is a good way to go. Thanks, -Ken -- Stay on top of everything new and different, both inside and aroun

Re: [iText-questions] HTMLWorker problem with ColumnText

2009-01-28 Thread Hamilton, Ken
Thanks. I'll focus on a workaround for now. -Original Message- From: 1T3XT info [mailto:i...@1t3xt.info] Sent: Wednesday, January 28, 2009 4:24 AM To: Post all your questions about iText here Subject: Re: [iText-questions] HTMLWorker problem with ColumnText Hamilton, Ken wrote: &

Re: [iText-questions] HTMLWorker problem with ColumnText

2009-01-26 Thread Hamilton, Ken
isn't my posting that is causing a delay. -Original Message- From: Hamilton, Ken Sent: Friday, January 23, 2009 9:39 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] HTMLWorker problem with ColumnText I have an HTML snippet that looks like this: TEST 1 TEST

Re: [iText-questions] All chunks in a paragraph get the same font & color

2009-01-15 Thread Hamilton, Ken
see the block below overides the font size, not the font type. If you're not setting the font type it will assume the default (helvetiva), but since helvetica doesnt exist in windows, it will apply arial as a substitute. Hamilton, Ken wrote: > Thanks a lot for looking through this. Tha

Re: [iText-questions] All chunks in a paragraph get the same font & color

2009-01-15 Thread Hamilton, Ken
Thanks a lot for looking through this. That particular line only runs if the vertical-align style is there, and even then gets overridden in the block just below where I handle the font-size style. I'm still hacking around trying to isolate this. -Original Message- From: Marta Figueiredo [

Re: [iText-questions] Image size in ColumnText

2008-12-10 Thread Hamilton, Ken
Thanks. I ended up creating a new ColumnText object the width that I wanted, and putting the image in that. I was concerned that setWidthPercentage would only scale the width, and not the height, and I'd get a skewed image. -Original Message- From: 1T3XT info [mailto:[EMAIL PROTECTED] Sen

Re: [iText-questions] Table/Text overlap

2008-11-08 Thread Hamilton, Ken
-Original Message- From: 1T3XT info [mailto:[EMAIL PROTECTED] Sent: Saturday, November 08, 2008 11:20 AM To: Post all your questions about iText here Subject: Re: [iText-questions] Table/Text overlap Hamilton, Ken wrote: > It works, except that after the go(), the rows > that would ha

Re: [iText-questions] Table/Text overlap

2008-11-07 Thread Hamilton, Ken
newPage(); log.debug("Page " + q++); } -Original Message- From: 1T3XT info [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 1:39 PM To: Post all your questions about iText here Subject: Re: [iText-questions] Table/Text overlap Hamilton, Ken wrot

Re: [iText-questions] Table/Text overlap

2008-11-05 Thread Hamilton, Ken
Yes, I am splitting my tables vertically and horizontally. I am already using the y position returned, what I didn't understand was how to get the next document.add, which doesn't accept a Y position, and doesn't seem to know about the writeselectedrows result, to appear in the right spot. You're s

Re: [iText-questions] newPage() doesn't work

2008-04-25 Thread Ken Gentry
Disregard my last email. Looks like it is an existing feature. I will try that instead. Thanks again. Ken -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, April 25, 2008 12:02 PM To: itext-questions@lists.sourceforge.net

Re: [iText-questions] newPage() doesn't work

2008-04-25 Thread Ken Gentry
Sorry for not including a test app. It was the end of a 14 hour day of development and my brain was cloudy :-( The attached app and generated output very closely mimic what our software framework is generating. Any help is greatly appreciated. Ken -Original Message- From: [EMAIL

[iText-questions] newPage() doesn't work

2008-04-24 Thread Ken Gentry
going nuts with this so any help would be greatly appreciated. Ken Gentry - This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $1

[iText-questions] Code Contributions?

2008-03-10 Thread ken cochrane
relatively straight forward change. If that goes well, then I may attempt to allow the ability to change the symbol (and size) on lists. If I make these changes, what is the procedure for getting the code added to the project? Thank you, Ken Cochrane -- http://CampRate.com

[iText-questions] RTF RtfShape Question

2006-11-27 Thread ken cochrane
would be great, thank you Ken Cochrane -- http://CampRate.com http://PopcornMonsters.com - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to

Re: [iText-questions] Footer rows

2006-08-28 Thread Ken
Here is the code I'm using. I get a table with 2 rows, not 3, at the bottom of the page.    public void onEndPage(PdfWriter writer, Document document)     {     Rectangle page = document.getPageSize();     PdfPTable head = new PdfPTable(1);     PdfPTable foo

Re: [iText-questions] Footer rows

2006-08-27 Thread Ken
see a constructor for PdfPTable that accepts a number of rows, BTW, unless it's in 1.4.3, which doesn't seem to be a healthy JAR file.Ken How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates.

Re: [iText-questions] Footer rows

2006-08-26 Thread Ken
Bruno,I'm still trying to get 3 rows printed as footer. You suggested I remove the setFooterRows() call, even though I thought that would force the footer table to show 3 rows. bruno <[EMAIL PROTECTED]> wrote: You are trying to add a table with writeSelectedRows in a page event(probably in a

[iText-questions] Footer rows

2006-08-17 Thread Ken
I'm trying to create a footer that contains Page X of Y as well as 3 lines of text. I copied the code from the tutorial and am only getting 2 lines of text. I've tried calling setHeaderRows(3) on the footer, but no luck. What do I need to do?Ken Do you Yahoo!? Get on boa

[iText-questions] Footer rows

2006-08-17 Thread Ken
ce the 3-line footer to print?Ken How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates.- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-inte

[iText-questions] How to determine end of data

2006-04-27 Thread Ken
I am creating a report that contains a table of data from numerous   files. On all pages but the first, there is a line of text containing   the names of the table columns. When processing each new file, I first   issue document.newPage(), which causes the page event handler to print   the colu

[iText-questions] HeaderFooter foolishness

2006-04-18 Thread Ken
Oops! Sorry--I see it now. Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.

[iText-questions] HeaderFooter foolishness

2006-04-18 Thread Ken
The only tutorial I see uses RtfHeaderFooter. Will that work with PDF? Blab-away for as little as 1¢/min. Make PC-to-Phone Calls using Yahoo! Messenger with Voice.

[iText-questions] HeaderFooter foolishness

2006-04-18 Thread Ken
Sorry, still not tracking on why this works on the second page but not the first.    public void onStartPage(PdfWriter arg0, Document arg1)     {     if (sensitivity != null)     {     Phrase phrase = new Phrase(sensitivity.toUpperCase(),   

[iText-questions] PageEvent

2006-04-18 Thread Ken
Here's the handler:private class EventHandler extends PdfPageEventHelper     {     public void onStartPage(PdfWriter writer, Document document)     {     if (sensitivity != null)     {     Chunk ch = new Chunk("\n\n " + sensitivity.toUpperC

[iText-questions] PageEvent

2006-04-18 Thread Ken
Is there some problem with PageEvents in landscape mode? I set up a handler to print a line when onStartPage was encountered. It works fine on the first page, but then prints again in the middle of the second page. Is there something I need to do to tell it it's in landscape? Talk is cheap.

[iText-questions] HeaderFooter foolishness

2006-04-18 Thread Ken
OL, I'll look at PageEvents. What then is HeaderFooter used for? New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.

[iText-questions] HeaderFooter foolishness

2006-04-17 Thread Ken
HeaderFooter seems just the ticket for printing a line of text on every page, but it's not cooperating. I set the same line of text as header and footer. Sometimes I get both, sometimes one, sometimes neither. Shouldn't they always print? Talk is cheap. Use Yahoo! Messenger to make PC-to-Pho

[iText-questions] Texta at bottom of page

2006-04-13 Thread Ken
I have a line of text that I want to put at the bottom of the page. How can I determine whether or not there's room for it? Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.

[iText-questions] Tiff files into PDF from ByteArrayOutputStream

2005-07-08 Thread Ken Ricci
va:83) at sun.applet.AppletPanel.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Any guidance is greatly appreciated. Regards, Ken Ricci --- This SF.Net email is sponsored by the 'Do More With Dual!' webinar happe

[iText-questions] Will iText support the watermark feature in RTF files in the future? Or is there any way somehow to achieve the same appearance?

2004-11-12 Thread Ken Wang
--- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database on Linux. http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click

[iText-questions] Is it possible to get this feature in a generated RTF file.

2004-11-08 Thread Ken Wang
This RTF file is quite uncommon. I think it's necessary to describe how to create this element manually in the MS Word. 1. Go to edit header. 2. Insert a "textbox" into the header area. 3. Insert a picture into this textbox. 4. Drag and move this picture/textbox out of the header area, and put it

[iText-questions] Any struts example of using iText?

2004-06-10 Thread Ken Ho
Dear all,       Is there any struts example of using iText, if there is, Would you mind send the link to me for study?   Best Regards, Ken Ho     

[iText-questions] Re: itext and weblogic7.0 (jdk1.3) - font error!

2003-11-11 Thread Ken Rimple
unless I did so... Same JDK as you. It runs fine. However, I don't have a fontCache set up; can you post a snippet of the code that loads the fontCache? Ken "seha neznanovic" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I am using jasperreports

RE: [iText-questions] Some questions about PdfContentByte...

2003-10-06 Thread Rimple, Ken
y? I couldn't find it in the JavaDoc. Ken -Original Message- From: Paulo Soares [mailto:[EMAIL PROTECTED] Sent: Saturday, October 04, 2003 9:46 AM To: Rimple, Ken; [EMAIL PROTECTED] Subject: Re: [iText-questions] Some questions about PdfContentByte... - Original Message -----

[iText-questions] Some questions about PdfContentByte...

2003-10-04 Thread Ken Rimple
slation matrix stuff seems like voodoo for me (admittedly a math idiot) and all I want to do is think top/left for my coordinate system without doing a ton of work. Are these simple questions? I didn't find anything in the tutorial or example

[iText-questions] Suggested fix for a positionining problem

2003-09-09 Thread Ken AtPdi
y breaks something else, we would appreciate the enlightenment and suggestions as to how to really fix the problem. If this is not the forum to make this suggestion, please inform me so we can do this right. Thank you Ken Beukelman Personnel Decisions International __

Fwd: [iText-questions] Horizontal Positioning of long paragraphs

2003-09-01 Thread Ken AtPdi
27;new page and newline'. When it is removed from the test in flushlines() the problem described below goes away. Before I willy-nilly add a change that solves this problem but causes grief in another circumstance, I'ld like to understand what it is supposed to be doing. Thanks Ken Beuk

[iText-questions] Horizontal Positioning of long paragraphs

2003-08-29 Thread Ken AtPdi
, how did you solve it? Thank you Ken Beukelman _ MSN 8: Get 6 months for $9.95/month. http://join.msn.com/?page=dept/dialup --- This sf.net email is sponsored by:ThinkGeek

[iText-questions] Fonts

2003-08-22 Thread Ken AtPdi
re do we go to arrange proper licensing, Sun? Thank you Ken B Personnel Decisions International _ Help protect your PC: Get a free online virus scan at McAfee.com. http://clinic.mcaf

Re: [iText-questions] Preserving bookmarks in PdfCopy

2003-07-23 Thread G. Ken Holman
At 2003-07-23 09:51 -0400, Leonard Rosenthol wrote: At 9:32 AM -0400 7/23/03, G. Ken Holman wrote: Hi everyone! I hope someone can help me with my use of PdfCopy. My bookmarks in my source are not being preserved in my target. That is correct. At this time, PdfCopy doesn&#

[iText-questions] Preserving bookmarks in PdfCopy

2003-07-23 Thread G. Ken Holman
that bookmarks are supported but I cannot find the entry in the http://www.lowagie.com/iText/docs.html TOC. Is there a magic incantation for preservation? Thanks! .... Ken -- Upcoming hands-on courses: in-house corporate training available; North America public: XSL-FO Aug 4,2003;

Re: [iText-questions] Loss of internal links using addTemplate

2003-07-16 Thread G. Ken Holman
losing the links? Thanks! ... Ken -- Upcoming hands-on courses: in-house corporate training available; North America public: XSL-FO Aug 4,2003; XSLT/XPath Aug 12, 2003 G. Ken Holmanmailto:[EMAIL PROTECTED] Crane Softwrights Ltd. http://www.CraneSoftwrights.com

[iText-questions] Activity on SourceForge for iText

2003-07-15 Thread G. Ken Holman
being used. Can anyone guide me on the best place to post my questions and comments? I've included working code illustrating my issues. Thanks! ....... Ken -- Upcoming hands-on courses: in-house corporate training available; North America public: XSL-FO Aug 4,2003; XS

[iText-questions] HtmlParser

2002-11-21 Thread Beukelman, Ken
level parser I have run afoul of some tag not yet supported (per the comment in the 'Parsing (X)HTML' section of Chapter 7 in the tutorial I am clueless and have performed some significant programming gaffe Any direction would be appreciated. Ken Beukelman <>

[iText-questions] Reference to CJK fonts

2002-10-31 Thread Beukelman, Ken
uppress it (we aren't interested in Chinese, Japanese, or Korean). 3) Will this cause problems of any sort when we port to our Sun boxes (we develop on NT but deploy on Sun boxes and I like to do anything that I can to avoid issues early). Thanks Ke

[iText-questions] Java2D connection

2002-10-28 Thread Beukelman, Ken
Any hints as to how to get the figure drawn in Java2D to appear? Thanks Ken Beukelman --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ iText-questions

Re: [iText-questions] Cannot print JTable

2002-08-26 Thread Ken Lo
the main. Is there are a way to enforce the column width? Also, I notice the file size of the resulting pdf is large. In my case, it is > 500K. Is this expected? I guess I have more than one request. Thanks again for your time and efforts. Ken import java.awt.*; import java.awt.ev

Re: [iText-questions] Cannot print JTable

2002-08-16 Thread Ken Lo
implementation of > >> > > > PdfGraphics2D. It only works for simple things. > >> > > > > >> > > > Best Regards, > >> > > > Paulo Soares > >> > > > > >> > > > - Original Message - > >

[iText-questions] Cannot print JTable

2002-08-15 Thread Ken Lo
Hi all, I trying to print a JTable to a PDF using iText. So far, the resulting PDF only shows the table outlines, but not the table's contents. I don't know which part of the code went wrong. Could someone please help me out. The following is a sample application demonstrating the problems.

[iText-questions] Cannot print JTable

2002-08-14 Thread Ken Lo
Hi all, I trying to print a JTable to a PDF using iText. So far, the resulting PDF only shows the table outlines, but not the table's contents. I don't know which part of the code went wrong. Could someone please help me out. The following is a sample application demonstrating the problem