[iText-questions] Email-function problem

2010-11-16 Thread riffla
This is not an iText-issue, but anyway, it seems the Email-function is not working. Tried to send an email to another member but the "number check" did not validate, got notification that my code did not match the one provided. Reproduction is simple since it happens with every attempt to post. /

[iText-questions] ICC Color Profiles - how to decide when you dont control images coming into document

2010-11-16 Thread Adam Mork
Hi, If I do not have any control over the images coming into the PDF and I want optimal display performance for computer monitors how can I decide the best ICC profile to use when I get images. Should I take the ICC profile out from each image and do it that way ? Or can I always set it to one spec

[iText-questions] Best way to make entire page background one color ?

2010-11-16 Thread Adam Mork
Hi, Im looking to replicate a feature of word where you can set the page color of a document. Anyone know a simple way to go about doing that ? Thanks -- Beautiful is writing same markup. Internet Explorer 9 supports stand

Re: [iText-questions] faded image color

2010-11-16 Thread Leonard Rosenthol
http://en.wikipedia.org/wiki/Color_management#Rendering_intent From: Tomas Ramirez [mailto:tom...@windward.net] Sent: Tuesday, November 16, 2010 2:32 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] faded image color Hi, I have a question about this post: http://comments.g

Re: [iText-questions] Pagebreak changes paragraph leading

2010-11-16 Thread riffla
Tried different things now. It seems impossible to prevent the leading through a page break. Is this perhaps a bug ? No matter what leading I set to the paragraph, the text in the page that breaks the paragraph will fall back on default leading. even tried setting the initial leading in the page e

[iText-questions] faded image color

2010-11-16 Thread Tomas Ramirez
Hi, I have a question about this post: http://comments.gmane.org/gmane.comp.java.lib.itext.general/54528 What is rendering intent, and where can I find more information about it? Tomas Ramirez My Blog - Tea Time with Meowkins

Re: [iText-questions] FW: Welcome to the "iText-questions" mailing list (Digest mode)

2010-11-16 Thread 1T3XT info
On 16/11/2010 19:34, Chris Ulbright wrote: > As far as I know I am a member of this listserve? > > My previous message was "held" because: > > Post by non-member to a members-only list > > Did I somehow get unsubscribed? I don't know. I just checked the administrative interface and I didn't f

[iText-questions] FW: Welcome to the "iText-questions" mailing list (Digest mode)

2010-11-16 Thread Chris Ulbright
As far as I know I am a member of this listserve? My previous message was "held" because: Post by non-member to a members-only list Did I somehow get unsubscribed? -- Forwarded Message From: Date: Fri, 14 Mar 2008 11:38:31 -0800 To: Chris Ulbright Subject: Welcome to the "iText-questi

[iText-questions] Non-rectangular multi-line Text Field?

2010-11-16 Thread Chris Ulbright
Hello, I am interested in creating a TextField that has multiple lines that aren't necessarily the same length. Is this something that can be done? Thanks for any input on this. -Chris Ulbright Confidentiality Notice: This communication (including any attachment

Re: [iText-questions] jfreechart and itext, how to determine absolute position at runtime/dynamically

2010-11-16 Thread 1T3XT info
On 16/11/2010 5:23, Jake Vang wrote: > Thanks, figured it out on my own the tinkering way, but the solution > is as you stated. It's just that a lot of examples do not show that > approach, which I believe is a more natural approach. You're correct. I'll put it on the list of tutorial examples tha

Re: [iText-questions] When will 5.0.5 be available in maven.itextpdf.com ?

2010-11-16 Thread 1T3XT info
On 16/11/2010 10:46, Stefan Thurnherr wrote: > Hi all > > I'd like to upgrade to itext 5.0.5, but that release is not yet > available in http://maven.itextpdf.com. When will it be available? Thanks! Remind me after http://devoxx.com/ For those of you who are attending Devoxx, there will be a book

Re: [iText-questions] how to find if a checkbox is checked (NOT get thevalue)

2010-11-16 Thread Mark Storer
> can i ignore the creators string assignments by > simply checking if the checkbox is *checked* so i can assign > my own values like "true" and "false"? The "on" value may change at the whim of the PDF creator, but the "off" value does not. So work with that: value = acroFields.getField(key)

Re: [iText-questions] Broken word

2010-11-16 Thread riffla
Hi guys Did some more research after your posts. There was a quite nested flow of operations upon the string that was to be rendered - involving creating different chunks with different fonts (based upon start and end markups within the string) which actually left that end parenthesis in a chunk

Re: [iText-questions] Broken word

2010-11-16 Thread Paulo Soares
The ')' is not a default split character, something else must be going on. Please provide a small standalone program so that the problem can be reproduced. Paulo -Original Message- From: Mark Storer [mailto:msto...@autonomy.com] Sent: Tuesday, November 16, 2010 5:02 PM To: Post all you

Re: [iText-questions] Broken word

2010-11-16 Thread Mark Storer
The only think I can think of off the top of my head is a "non breaking space" character, u+00A0. OTOH, your odd breaking behavior could be a result of having this character when you weren't expecting it. I suggest you check your original string. --Mark Storer Senior Software Engineer Cardif

Re: [iText-questions] Drawing on top of an image

2010-11-16 Thread Bob Barnes
Check out PdfContentByte. You can add your image to the document then use absolute positioning to add content on top of the image. On Nov 15, 2010, at 2:24 PM, Kevin Jordan wrote: > I'm trying to add an image to my PDF and draw on top of it (probably a > rectangle and text). However, they see

Re: [iText-questions] Decoding Images

2010-11-16 Thread alchemist
You really seem to be missing my point throughout this entire discussion because, for reasons unknown, you refuse to read up on what you are doing. You seem to lack patients, I wouldn't be posting a question if I thought I had enough information to answer it myself. I'm an experienced developer

[iText-questions] Pagebreak changes paragraph leading

2010-11-16 Thread riffla
Hi again When adding a Paragraph with a given Leading and a pagebreak occurs in the middle of the text, the Leading on the new page is increased. Is there a default element leading that sets when a new page is created or is there something else that could cause this? /R -- View this message in

[iText-questions] Broken word

2010-11-16 Thread riffla
Hi Is there a way to prevent ordinary flow to line break a block of characters? An example: String str = "Your id (social security id), name and address need to be supplied."; Paragraph p = new Paragraph(); p.add(new Chunk(str, myFont)); document.add(p); There are scenarios, due to the precedi

Re: [iText-questions] Decoding Images

2010-11-16 Thread Leonard Rosenthol
You really seem to be missing my point throughout this entire discussion because, for reasons unknown, you refuse to read up on what you are doing. So I'll give you actual URLs for you to read: Let's start with the difference between Raster images (

Re: [iText-questions] Decoding Images

2010-11-16 Thread alchemist
> What do you mean by "image"? Raster image? Vector image? > The image is in gs notation I assume vectored (similar to and EPS) Here is some background: I am trying to extract FPO low res images that appear in a PDF document (those appearing with OPI comments). For the most part I have been

Re: [iText-questions] Decoding Images

2010-11-16 Thread Leonard Rosenthol
Yes, I am quite familiar with EPS. It is NOT identical - though it is similar. The PDF content stream language is derived from Postscript, but has a number of differences. I don't know what a "gs vectored graphic" is, however. Is that Ghostscript? Ghostscript is just a processor for Postscr

Re: [iText-questions] Rich Media Annotation movie

2010-11-16 Thread Leonard Rosenthol
RichMedia is for Flash/SWF and 3D content. If you are using an avi file, you need ot use the classic multimedia types (screen/rendition). -Original Message- From: die_ekschper...@arcor.de [mailto:die_ekschper...@arcor.de] Sent: Tuesday, November 16, 2010 3:56 AM To: itext-questions@list

Re: [iText-questions] Decoding Images

2010-11-16 Thread alchemist
I have got a response to this question on another forum and have investigated it myself... I'm not sure if you are familiar with EPS format but it looks identical. This is an image using gs vectored graphics (much like and EPS) eg gs can describe a complex image Whilst not normally associated

[iText-questions] When will 5.0.5 be available in maven.itextpdf.com ?

2010-11-16 Thread Stefan Thurnherr
Hi all I'd like to upgrade to itext 5.0.5, but that release is not yet available in http://maven.itextpdf.com. When will it be available? Thanks! Gruäss, stefan. -- Beautiful is writing same markup. Internet Explorer

[iText-questions] Rich Media Annotation movie

2010-11-16 Thread die_ekschperten
Hey guys, I have some problems with embedding movies in pdf with Rich Media Annotations. I have an avi movie file which I'm trying to embed, but it does not work. The reader's annotation context menu always claims: "Movie not loaded." I am trying to achieve a movie player in pdf with some contro

Re: [iText-questions] jfreechart and itext, how to determine absolute position at runtime/dynamically

2010-11-16 Thread Jake Vang
Thanks, figured it out on my own the tinkering way, but the solution is as you stated. It's just that a lot of examples do not show that approach, which I believe is a more natural approach. On Wed, Nov 3, 2010 at 8:00 AM, 1T3XT info wrote: > On 3/11/2010 11:48, Jake Vang wrote: >> >> i have adap

[iText-questions] Drawing on top of an image

2010-11-16 Thread Kevin Jordan
I'm trying to add an image to my PDF and draw on top of it (probably a rectangle and text). However, they seem to always show up under the image. I tried creating layers with my rectangle/text layer having the layer I draw the image in as a child and I've also tried ColumnText but it always seems