Re: [iText-questions] My plan to shut down the mailing-list

2012-10-08 Thread Alex Jones
I've recently joined the mailing list and I found it to be invaluable, the only reason I found it so useful is that there aren't any decent official forums. You need to purchase the book and then each of the forum sections are chapters in the book, I appreciate the need to monetize the library and

[iText-questions] W2 Form pdf -- dynamically or Acrobat Form

2012-09-10 Thread Alex Assali
Hi all,   I am new to iText and I have a task where a user might log in to HR to see his  W2 Form for the year in pdf format. The Same official form layout we see when accessing our W2 at our company portal.    I am reading the w2 data from a database.   What would be the best approach to generat

[iText-questions] Using iTextSharp in Windows Metro Apps to create PDF files

2012-06-27 Thread Alex Duhamel
Does iTextSharp support Windows Metro Apps? We are trying to create PDFs from a C# Metro App, but PdfWriter.GetInstance requires a System.IO.Stream argument. System.IO has been replaced by Windows.Storage in Windows 8 development. Any help would be EXTREMELY appreciated!

Re: [iText-questions] PAdES-LTV implementation

2011-09-06 Thread Alex B
> in iText. > > Paulo > > -- > *From:* Alex B [mailto:lxndr...@gmail.com] > *Sent:* Tuesday, September 06, 2011 10:21 AM > *To:* itext-questions@lists.sourceforge.net > *Subject:* [iText-questions] PAdES-LTV implementation > > Hi all, > >

[iText-questions] PAdES-LTV implementation

2011-09-06 Thread Alex B
Hi all, I am new to itext, currently trying to implement PAdES-LTV using it (and understanding how it works). I read old posts on this implementation, seeing that it would be necessary to modify itext's core. If this implementation still needs to modify iText's core, is it possible to have some

[iText-questions] HELP NEEDED

2011-04-12 Thread Alex K Baby
ve me a better solution. Thanks and Regards Alex KB -- Forrester Wave Report - Recovery time is now measured in hours and minutes not days. Key insights are discussed in the 2010 Forrester Wave Report as part of an in-

[iText-questions] pdf encryption

2010-08-12 Thread Alex Symeonidis
riter.STRENGTH128BITS); Does this stuff really work? It shows me that PdfWriter.AllowDegradedPrinting, PdfWriter.STRENGTH128BITS are deprecated. Any advice how this could be solved? Thank you, Alex -- This SF.net email

Re: [iText-questions] Displaying a table as page header

2010-06-21 Thread Alex . Broytman
I do use writeSelectedRows(): public class Test extends PdfPageEventHelper { Document doc; PdfWriter writer; public void openDocument throws DocumentException, IOException { doc = new Document(PageSize.A4.rotate()); writer = PdfWriter.getInstance(doc, new FileOutputSt

Re: [iText-questions] Displaying a table as page header

2010-06-21 Thread Alex . Broytman
That is excatly what I do, but header and text overlaps. The code is below: public class Test extends PdfPageEventHelper { Document document = null; PdfWriter writer = null; void openDocument() throws DocumentException, IOException { document = new Document(PageSi

[iText-questions] Displaying a table as page header

2010-06-21 Thread Alex . Broytman
Hi, I need to display a table as a header on every page of my document. I tried to use onEndPage() event for that, but table overlaps with the document text on every page. If a header would have been a phrase, then ColumnText.showTextAligned() would do the trick, but how to do that in case of a

[iText-questions] open pdf and add image

2010-01-26 Thread Aleksey (Alex) Rakhlin
I'd like to open a PDF file stored locally and add an image to it. I should only have 1 file when this is done, meaning I don't want to open existing file stamp it and save to another file. I want to affect the existing file

Re: [iText-questions] Missing spaces in extracted text

2009-07-22 Thread Alex Vigdor
Yes, I did use the version from SVN. Hopefully we can get Kevin's feedback - I've done a few more side-by-side comparisons with PDFBox and while the "Tl < 200" logic seems entirely consistent, I don't think my change with Td is quite as solid - it has introduced extra spaces in a couple of PDFs.

Re: [iText-questions] Missing spaces in extracted text

2009-07-21 Thread Alex Vigdor
One more followup: the words with 0 kerning that needed space had 'Td' or new line commands before them that were not working properly. I found another approach to fix those cases that doesn't introduce space in places where there is legitimately 0 kerning. The new patch follows. Once again, I

Re: [iText-questions] Missing spaces in extracted text

2009-07-21 Thread Alex Vigdor
t; -200 || tj==0){ + unicode = " ".concat(unicode); + } Matrix nextTextMatrix = new Matrix(width, 0).multiply(textMatrix); displayText(unicode, nextTextMatrix); textMatrix = nextTextMatrix; } -Alex On Tue, Jul 21, 2009 at 4:23 PM, Alex Vigdor

[iText-questions] Missing spaces in extracted text

2009-07-21 Thread Alex Vigdor
implementedasan extensionofanestablishedRDFstore(Sesame)withIRcapabilitiesus- ingthetextsearchlibraryLucene ,withoutrequiringmodicationsto existingRDFquerylanguages. Thanks for the great work, and hope this isn't too complicated to

[iText-questions] require help for itext

2009-05-26 Thread alex
dear , i cannot find about itext for rtf directory when i use itext ,i donot konw how to make directory ? alex-- Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side

[iText-questions] have more blank page

2009-05-14 Thread alex cgf
when use itext create a PDF.will have a blank page after last page,why? please sent a mail to me cgf198...@hotmail.com -- View this message in context: http://www.nabble.com/have-more-blank-page-tp23541731p23541731.html Sent from the iText - General mailing list archive at Nabble.com. ---

Re: [iText-questions] Imported PDF pages are too slow

2009-05-06 Thread Kruzic, Alex x55204
much file IO going on when using the RandomAccessFileOrArray. I really needed to load the entire PDF into memory. Oh well, live and learn. Take care everyone. Alex Alex Kruzic Application Development Analyst, Document Solutions Department Broadridge Investor Communication Solutions, Canada

[iText-questions] Imported PDF pages are too slow

2009-05-05 Thread Kruzic, Alex x55204
ontent(); page = PDFwriter.getImportedPage(PDFreader, iPages); cb.addTemplate(page, 1f, 0, 0, 1f, 0, 0); I tried using the image object, and it seems to be a bit faster but not much. PdfImportedPage page = PDFwriter.getImportedPage(PDFreader, iPages); Image image = Image.getInstance(page)

[iText-questions] Imported pages are too slow

2009-05-01 Thread Kruzic, Alex x55204
even more importantly, is there a way to do this better. Thanks. Alex PdfImportedPage page = null; PdfContentByte cb= PDFwriter.getDirectContent(); page = PDFwriter.getImportedPage(PDFreader, iPages); cb.addTemplate(page, 1f, 0, 0, 1f, 0, 0); Alex Kruzic Application Development An

[iText-questions] Bookmark location (beginning or middle of the page) when splitting a document

2009-01-28 Thread Alex Toron
I'm splitting a pdf document by bookmarks, but I can't figure out if the bookmark is located in the beginning of the page or in the middle. Is there are way to find it out? Thank you, Alex T-- This SF.ne

[iText-questions] pdf

2008-12-17 Thread alex
Hi, I am trying to generate an editable pdf from a scanned pdf. I want the program to recognize all text fields and check boxes in the scanned pdf and convert each of them in to corresponding controls. How can I achieve this using iText? Thank you, Alex

[iText-questions] PdfPTable cells in different layers

2008-11-11 Thread Alex Palau
Hi, I want to insert a PdfPTable with cells written in different layers. Any suggestions? Best regards Àlex - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux bas

Re: [iText-questions] Get javascript from flateCompress format back to String

2008-09-04 Thread Alex Bech Jensen
I found the solution myself. Here it is in C# code PRStream prs = (PRStream)PdfReader.GetPdfObject(formatScript.Get(PdfName.JS)); byte[] b = PdfReader.GetStreamBytes(prs); string s = System.Text.ASCIIEncoding.ASCII.GetString(b); Kind regards Alex Fra

[iText-questions] Get javascript from flateCompress format back to String

2008-09-04 Thread Alex Bech Jensen
stream back to a known format for example a byte[] or even better a string? Kind regards Alex Jensen, System developer Bording Data, Denmark - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Buil

[iText-questions] Form flattening & over content

2008-07-30 Thread Alex Wibowo
Gday, I have a PDF with some sensitive information in it. I was thinking of putting white box on top of this location. But I find out later that the white box can be removed by simply opening the PDF in Acrobat Designer. (or even simpler, do a text highlight & drag over the overlapped texts, then

[iText-questions] JSON to iText?

2008-07-24 Thread Alex Rice
ed text: Etiam diam est, fermentum id, lacinia nec, auctor vel, justo. Curabitur vestibulum tempor turpis. Nunc vitae mi. Etiam eget magna. Etiam blandit porta justo.", "font", "font ...", "color", &qu

Re: [iText-questions] not embedding arial unicode...possible?

2008-02-11 Thread Alejandro (Alex) Soini
installed on their own computer. ALSO, it means that you can only use the ISO-Latin-1 character set. Leonard On Feb 11, 2008, at 2:36 PM, Alejandro (Alex) Soini wrote: > My apologies, > > > > The real question I want answered was dismissed twice, perhaps >

[iText-questions] not embedding arial unicode...possible?

2008-02-11 Thread Alejandro (Alex) Soini
My apologies, The real question I want answered was dismissed twice, perhaps because it was at the way bottom. Is it possible to *not* embed the Arial Unicode font? If so, could you kindly provide some abstract idea of what this would entail? Thank you for your time, -Alejandro --

[iText-questions] legality issues of embedding Arial

2008-02-08 Thread Alejandro (Alex) Soini
it in your application? Or having your application embed it into a PDF? Those are two VERY different things... Leonard On Feb 8, 2008, at 1:31 PM, Alejandro (Alex) Soini wrote: > I am curious about legal issues of embedding Arial Unicode in our > application.

[iText-questions] legality issues of embedding Arial unicode

2008-02-08 Thread Alejandro (Alex) Soini
I am curious about legal issues of embedding Arial Unicode in our application. Is this OK to do? Is there a way to *not* embed Arial Unicode? I think we would actually prefer to not embed it but I cannot find any examples of using Arial Unicode without embedding it. Kind regards and tha

[iText-questions] page numbers in RTF docs

2007-10-01 Thread Alex Jacoby
x27;t work either*: http://itext.ugent.be/library/com/ lowagie/examples/rtf/extensions/hf/ExtendedHeaderFooter.rtf I'm new to itext, but I've spent hours pouring over available documentation, mailing list archives, and sample code. Any ideas? Thanks, Alex ps- The relevant code, basical

[iText-questions] OT: Invitation to participate in research project

2007-06-25 Thread Ben Alex
s and results will be freely available. Participation will also provide a custom licensing report for your project. To learn more, please visit: http://licensing-research.newcastle.edu.au Thanks for reading this email, and I hope you'll consider participating. Best regards Ben Alex (My apo

[iText-questions] How to genrate a PDF from html fragment?

2007-05-20 Thread Alex Chew
Hi, I want to generate a pdf file from an html fragment. How can I? I tried following html,but only text content output. [Original HTML] Test HTML2PDF Simple Text http://www.google.com/intl/en_ALL/images/logo.gif"; border="0"/> DATA11DATA12DATA13 DATA21DATA22DATA23 DATA31DATA32DATA33 DATA4

Re: [iText-questions] PDFReader GetCropBox

2007-03-26 Thread Alex
2---1 || || || --> reader.getPageRotation (i2) == 0 || 3---4 3-2 || --> reader.getPage

[iText-questions] PDF To Text

2006-09-11 Thread alex leong
hi, May I know is itext able to convert any pdf file to pure text file ? Thanks __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --

Re: [iText-questions] Barcode sometimes not generated correctly

2006-06-28 Thread Alex
Hi, Thanks for the quick response. What is it in the original pdf that I would look for (I hope I can get is)? The information on the pdf is confidential, so I won't be able to post it here. The corruption is only on the barcode. Regards, Alex --- Paulo Soares <[EMAIL PROTECTED

[iText-questions] Barcode sometimes not generated correctly

2006-06-27 Thread Alex
mbers are correct! This only happens once in a long while. Does anyone know what could be the case? Or what input would make a barcode like this? Thanks and regards, Alex __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection a

[iText-questions] Content of splitted cell

2006-04-20 Thread alex . b78
Hi everybody, I've built a PDF document using PdfPTable and PdfPCell. I've used nested tables to "rowspan" the first column of my table to obtain something like this : __ _ ___ __ |__|_|___|__| | Label Cell1 |___

[iText-questions] reading and writing hidden fields

2006-04-18 Thread Alex Bischof
s "Hello". But i haven't found a way to get to the "World"-value. Anybody has an idea? Greets, Alex Bischof --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications i

[iText-questions] reading and writing hidden fields

2006-04-18 Thread Alex Bischof
Form form = reader.getAcroForm(); ArrayList fields = form.getFields(); for (int i = 0; i < fields.size(); i++) { FieldInformation info = (FieldInformation) fields.get(i); System.out.println(info.getName()); } How do i get the "World"-value? Is there another way to s

[iText-questions] Fwd: Help me for HTMLWorker

2005-12-15 Thread Alex Chew
leOutputStream("worker.pdf"));      document.open();     worker.parse(stringReader);//     worker.parse(fileReader);   document.close();  }catch (DocumentException e1) {   e1.printStackTrace();  }    catch (IOException e) {    e.printStackTrace();  }  System.out.println(&q

[iText-questions] HTMLWorker cannot output unicode-encoding

2005-11-14 Thread Alex Chew
I am working on a task to covert html fragment to pdf using iText HTMLWorker.  i put some unicode of chinese words such as \u80CC\u666F in a String and try to parse it using worker.parse(stringReader) method, but i got nothing output.   I tried chinese words directly, it replaced by "?".   It seem

[iText-questions] Convert HTML to PDF problem

2005-11-10 Thread Alex Chew
Hay, guys   I try to generate pdf from html In my application but cannot come over.  I used htmlparser, and using html stream(String/StringBuffer) as input. Any advice?   Thanks.

Re: [iText-questions] Merging several PDF-Documents into one PDF document

2005-08-03 Thread Alex Greif
Hi, look for the "Concatenate" samples on the tutorial page http://itextdocs.lowagie.com/tutorial/ cheers, Alex. On 8/3/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hello, > > is it possible to merge (copy) several pdf documents into one pdf docume

[iText-questions] large image problem

2005-08-03 Thread Alex Greif
easy but in a further process the pdf will be used to print a 300 dpi image. is this a bug or some sort of overflow problem in the scaling algorithm? Any help is appreciated. Thanks, Alex. --- SF.Net email is sponsored by: Discover Easy Linux

[iText-questions] PDF417 has grey spots when printed

2004-10-05 Thread Alex Sannikov
e between printouts. I'm using  the code from examples-133, Adobe5, 6, similar results on different computers/printers. What do I do wrong? is that anything to do with image transparency?   Any ideas would be greatly appreciated! Thanks, Alex   Do you Yahoo!? Yahoo! Mail is new and improved - Check it out!

Re: [iText-questions] URL for CVS in build.xml broken. - Correction

2004-09-24 Thread Alex Potter
Alex Potter wrote: I've noticed that the links to the sourceforge CVS server in both the build.xml that I have just downloaded and in the instructions at http://www.lowagie.com/iText/download.html are incorrect. The correct URL is http://www.lowagie.com/iText/download.html. HTH Alex Sorry

[iText-questions] URL for CVS in build.xml broken.

2004-09-24 Thread Alex Potter
I've noticed that the links to the sourceforge CVS server in both the build.xml that I have just downloaded and in the instructions at http://www.lowagie.com/iText/download.html are incorrect. The correct URL is http://www.lowagie.com/iText/download.html. HTH

[iText-questions] Send a pdf to the default printer

2004-08-11 Thread Alex Talbott
Is it possible to send a pdf that I just created to a default printer instead of opening it in a window?

[iText-questions] Form filling

2004-06-30 Thread Alex Talavera
Two questions, I need to populate a pdf form in a unix and java invironment. Can I use itext(any examples)? What tool can I use to convert a pdf file to a pdf form. Thanks, __ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard.

[iText-questions] Re: PdfAcroForm - coordinates for pages > 1?

2004-04-27 Thread Alex Molochnikov
Leonard Rosenthol pdfsages.com> writes: > > Correct. Do each set of fields as you do the page. > > Leonard Thank you very much; it worked. I appreciate your guidance. Alex. --- This SF.net email is sponsored

[iText-questions] Re: PdfAcroForm - coordinates for pages > 1?

2004-04-26 Thread Alex Molochnikov
, null, url, cb, xOrigin, yOrigin - height, xOrigin + width, yOrigin); 4. The Document is closed: document.close(); Should I perhaps do addMap() in the loop that creates pages, and sensitize the page fields before the next page is created? Alex. -

[iText-questions] Question about FontMapper

2003-07-10 Thread Alex Geller
DefaultFontMapper do the Job if the correct directories are configured by DefaultFontMapper.insertDirectory(String dir)? Regards, Alex Jetzt bei WEB.DE FreeMail anmelden = 1qm Regenwald schuetzen! Helfen Sie mit! Nutzen

Re: [iText-questions] BARCODE: com.lowagie.text.DocumentException: Helvetica not found as resource

2003-07-03 Thread Alex Potter
ib? Sounds to me like its not in the classpath. HTH Alex --- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or

Re: [iText-questions] Text rotation

2003-07-03 Thread Alex Potter
Paolo Thanks! I ended up using the technique illustrated in text_fields.java from your examples.zip - I couldn't get the hang of the rotation/scaling/transformation using the templates, not being a mathematician :) regards Alex ---

[iText-questions] Text rotation

2003-07-02 Thread Alex Potter
I have a rquirement to output text to be displayed both normally and "upside down" in the same document. So far I've been unable to find any method to accomplish this. Is it possible? Any pointers would be much appreciated.

RE: [iText-questions] Question about line height for paging

2003-05-30 Thread Alex, Ian
Hi, Thanks for the suggestion, but unfortunately it didn't work at all. The output becomes skewed all over and the line height problem still isn't resolved. Ian -Original Message- From: Matt Benson [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 2:14 PM To: Alex, Ia

[iText-questions] Question about line height for paging

2003-05-30 Thread Alex, Ian
I am having a problem with writing a Unix-created document to PDF using iText. Unix output files don't use any fonts and there is minimal spacing between lines (using the lpr output). My algorithm was to read each line in from the original file and then write it to PDF landscape document with t

[iText-questions] insertDirectory in a OS-independent way?

2003-01-15 Thread Alex Molochnikov
without having the programmer supply the font location. Or, for this matter, is there any way to "feed" the fonts returned by getAllFonts() into DefaultFontMapper, thus circumventing the physical location issue altogether? Alex Molochnikov Gestalt C

[iText-questions] stretching a table

2002-06-14 Thread Alex Radka
. That or any other suggestions would be appreciated. Thx, Alex ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm

Re: [iText-questions] Re: merging two libraries

2002-03-12 Thread alex
nload the software since the licences will be in the software package, no? Alex ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions