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();
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:
> >
>
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
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
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:
&
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
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
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 [
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
-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
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
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
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
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
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
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
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
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
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! Messengers low PC-to-Phone call rates.
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
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
ce the 3-line footer to print?Ken
How low will we go? Check out Yahoo! Messengers 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
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
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.
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.
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(),
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
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.
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.
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
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.
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
---
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
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
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
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
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 -----
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
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
__
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
, 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
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
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
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;
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
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
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
<>
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
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
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
implementation of
> >> > > > PdfGraphics2D. It only works for simple things.
> >> > > >
> >> > > > Best Regards,
> >> > > > Paulo Soares
> >> > > >
> >> > > > - Original Message -
> >
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.
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
53 matches
Mail list logo