Re: [iText-questions] Can IText Acheive this ?

2010-03-09 Thread 1T3XT info
Anil h k wrote: > I am in process of designing an > app where in a student fills out an information online (PDF File) Online = an important word. The Flemish Universities in Ghent and Leuven have a similar application for which they use iText. It's a self-tutoring application. The student choose

[iText-questions] Can IText Acheive this ?

2010-03-09 Thread Anil h k
Hi all, I am in process of requirements gathering phase and I am exploring all the possible solutions to complete my project. I am in process of designing an app where in a student fills out an information online (PDF File) the professor reviews the pdf and submits a new pdf (much similar to the

Re: [iText-questions] Spaces between words; word splitting and line wrapping

2010-03-09 Thread wkbutler
I figured it out. I used a Chunk and set the SplitCharacter to include '\u00a0'. Doing that does allow me to use '\u00a0' in between words and for blank spaces, and it splits along word boundaries. Adding the blank spaces to the Chunk before appending to the Paragraph gets the effect I was look

[iText-questions] Spaces between words; word splitting and line wrapping

2010-03-09 Thread wkbutler
Hello - I'm trying to create a form with underlined data - like a tax form for example - with labels on the left and blanks on the right. I know how to make an underlined blank - protected Phrase getBlankUnderline (int size, Font useFont) { StringBuilder sb = new Stri

Re: [iText-questions] colspan problem

2010-03-09 Thread Bruno Lowagie
Fırat KÜÇÜK wrote: > Hi, > I work in lots of opensource projects. > Some of them are play framework and JSF. > But none of them closes the bugs as fast as you. We prefer one channel: the mailing list. I only look at the Tracker @ sourceforge when I make a release. It's not very efficient, and at

Re: [iText-questions] Problem adding image to existing template with extended features

2010-03-09 Thread 1T3XT info
Hite . Gregory wrote: > Oooh, interesting idea! I'll give it a try and let you all know. This example contains the methods you need: http://itextpdf.com/examples/index.php?page=example&id=156 -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info

Re: [iText-questions] colspan problem

2010-03-09 Thread Fırat KÜÇÜK
Hi, I work in lots of opensource projects. Some of them are play framework and JSF. But none of them closes the bugs as fast as you. Sorry if i overreact but you may not close the bug and add a comment like this; Please add some detailed description about the situation and add a test case script f

Re: [iText-questions] Problem adding image to existing template with extended features

2010-03-09 Thread Hite . Gregory
Oooh, interesting idea! I'll give it a try and let you all know. Thanks to you and Paulo for the response! -Original Message- From: 1T3XT info [mailto:i...@1t3xt.info] Sent: Tuesday, March 09, 2010 9:56 AM To: Post all your questions about iText here Subject: Re: [iText-questions] Probl

Re: [iText-questions] Problem adding image to existing template with extended features

2010-03-09 Thread 1T3XT info
Hite . Gregory wrote: > Is there a different way to add the image in order to > overcome this? Use a button as placeholder and replace its icon with the image. (Don't know if that breaks the extended features, but it's worth trying.) -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/

Re: [iText-questions] colspan problem

2010-03-09 Thread Bruno Lowagie
Fırat KÜÇÜK wrote: > You should understand this. Community feedback is the most important > thing in an open source project. Writing documentation is important too. I'm writing a book about iText and you only gave me ONE day to look at the problem, whereas I won't have time to look at if before t

Re: [iText-questions] colspan problem

2010-03-09 Thread Paulo Soares
You should understand this, community support is not priority support and as far as I'm aware nobody signed a SLA with you. Your problem looks complex, it will take time, you're not forgotten. Paulo > -Original Message- > From: Fırat KÜÇÜK [mailto:firatku...@gmail.com] > Sent: Tuesday

Re: [iText-questions] Problem adding image to existing template with extended features

2010-03-09 Thread Paulo Soares
You can't add content without breaking the extended rights. The extended rights only work for fields and comments. Paulo > -Original Message- > From: Hite . Gregory [mailto:gh...@drc.com] > Sent: Tuesday, March 09, 2010 3:40 PM > To: iText-questions@lists.sourceforge.net > Subject: [iT

[iText-questions] Problem adding image to existing template with extended features

2010-03-09 Thread Hite . Gregory
[reposting now that I'm a proper member of the list - also added little more code for context] I've searched far and wide but cannot find an answer. I'm using iTextSharp 5.0.0 along with good ol' Adobe 9. I have a template with extended features enabled that I have to read in, populate certain

Re: [iText-questions] colspan problem

2010-03-09 Thread Fırat KÜÇÜK
Hi, i report this situation as a bug report (#*2965329*) then closed immediately without any effort to understand the possible bug or waiting any feed back from bug reporter. As you said in the bug report comment. I post it to this list with detailed description and 5 attachments. But there is no

Re: [iText-questions] Setting CIDSet in the Font Descriptor

2010-03-09 Thread Paulo Soares
The CIDSet is only created for PDFA. Paulo > -Original Message- > From: Leonard Rosenthol [mailto:lrose...@adobe.com] > Sent: Tuesday, March 09, 2010 11:29 AM > To: 'Post all your questions about iText here' > Subject: Re: [iText-questions] Setting CIDSet in the Font Descriptor > > I d

Re: [iText-questions] itextsharp for Pdf generation using ASP.NET and C#

2010-03-09 Thread 1T3XT info
Venkata Solasa wrote: > 1. Can i merge the text of 2 different pdf files into a single page. (I > have seen merging of pdf as different pages ) Define "merge". If you want to merge two pages that are half full into one full page (almost no more white space), then you're asking something that is

Re: [iText-questions] Setting CIDSet in the Font Descriptor

2010-03-09 Thread Nirmal Fernando
Ya Paulo, I want to apply PDF/A standards!! On Tue, Mar 9, 2010 at 5:46 PM, Paulo Soares wrote: > The CIDSet is only created for PDFA. > > Paulo > > > -Original Message- > > From: Leonard Rosenthol [mailto:lrose...@adobe.com] > > Sent: Tuesday, March 09, 2010 11:29 AM > > To: 'Post all

Re: [iText-questions] Setting CIDSet in the Font Descriptor

2010-03-09 Thread Leonard Rosenthol
I don't know - why don't you search the sources and find out ;). From: Nirmal Fernando [mailto:nirmal070...@gmail.com] Sent: Monday, March 08, 2010 10:36 PM To: Post all your questions about iText here Subject: Re: [iText-questions] Setting CIDSet in the Font Descriptor Hi Leonard, If I create a

[iText-questions] itextsharp for Pdf generation using ASP.NET and C#

2010-03-09 Thread Venkata Solasa
Hi, I have recently come across the itextsharp component used to generate pdf files dynamically. Looks like a great component. Had few questions related to the possiblities of the component. They are as follows: 1. Can i merge the text of 2 different pdf files into a single page. (I have seen me