Re: [iText-questions] Printing in bold

2013-07-19 Thread Leo Donahue - RDSA IT
>From: SALAZAR, DANTE [mailto:digitron...@cwpanama.net] >Sent: Thursday, July 18, 2013 6:21 PM >To: itext-questions@lists.sourceforge.net >Subject: [iText-questions] Printing in bold >I am writing a form using ShowText >First I defined: basefont bf and PdfContentByte cb >Th

[iText-questions] Printing in bold

2013-07-18 Thread SALAZAR, DANTE
I am writing a form using ShowText First I defined: basefont bf and PdfContentByte cb Then I set the font and size of cb:cb.SetFontAndSize(bf, 12) Finally I fill in the form with: cb.SetTextMatrix(100, 200) cb.ShowText("Text to be printed 1") cb.SetTextMatrix(100

[iText-questions] Printing Mailing Labels

2013-07-11 Thread Stewart Anderson
Hi, Is there a consensus of opinion of what the best approach is to position mailing labels containing differently formatted text and barcodes onto a page of printed label media? A page of say 3x7 labels, on which each label gets the same detail. I have looked at setting tables for

[iText-questions] Printing a paragraph at the end of a document

2013-06-26 Thread SALAZAR, DANTE
I am generating a report consisting in a group of short fields, like Name, Phone number, age, etc; but at the end I need to show a wider field of commentaries (3 to 5 lines) For the first short fields I am using function ShowTextAlignedKerned, to print at specifics xy positions To print the last a

Re: [iText-questions] Printing different page size as A4

2012-04-26 Thread 1T3XT BVBA
On 26/04/2012 6:32, Balajiprasad.R wrote: I can do it manually in Adobe Reader by changing the printer settings by checking "Fit to Printable Area" property. You're looking for a specific type of "Viewer Preferences", more specifically "Printer Preferences". If you read ISO-32000-1 (the ISO st

[iText-questions] Printing a table only till half of the page in itextsharp document

2012-04-19 Thread praveen
Hello, I have a table with around 100 rows.Now i want to print it in the form of pdf using itextsharp.Here I want to print the table in such a way that as soon as the table reaches half the page's height , the remaining rows should be discarded. Please suggest a good solution to identify the printe

Re: [iText-questions] Printing PDF from iTextSharp

2012-03-14 Thread iText Info
Op 14/03/2012 15:30, NasaFun schreef: > Please let me know if it is feasible to do. No, Adobe Reader considers silent printing as a security hazard (and with good reason). What you're asking can't be done without having a dialog popup.

[iText-questions] Printing PDF from iTextSharp

2012-03-14 Thread NasaFun
All, I am new bee to this mailing list, please spare me if any rules are violated. I am trying to print a PDF from C# using iTextSharp in silent mode (This is back ground print and I do not want any dialog poping up during printing). Please let me know if it is feasible to do. If anyone h

Re: [iText-questions] printing pdf stream

2011-07-07 Thread 1T3XT BVBA
On 7/07/2011 17:09, Kevin Day wrote: > Acrobat doesn't handle things very > well when you submit multiple print jobs in quick succession. When you call Acrobat or Reader from the Execute class, you start up a process that stays alive for a while even after the Java process has been terminated. Th

Re: [iText-questions] printing pdf stream

2011-07-07 Thread Kevin Day
well... they certainly could save the byte[] to a file and print it from there... be careful with printing PDFs, though - Acrobat doesn't handle things very well when you submit multiple print jobs in quick succession. -- View this message in context: http://itext-general.2136553.n4.nabble.com/p

Re: [iText-questions] printing pdf stream

2011-07-07 Thread 1T3XT BVBA
On 6/07/2011 17:08, bobsyouruncle wrote: > Hello, > > We have been using iText to print existing pdf's with the line: > > com.lowagie.tools.Executable.printDocument("c:/test.pdf"); > > We would like to change it so that some of the pdf's are dynamic, is it > possible to print a ByteArrayOutputStrea

[iText-questions] printing pdf stream

2011-07-07 Thread bobsyouruncle
Hello, We have been using iText to print existing pdf's with the line: com.lowagie.tools.Executable.printDocument("c:/test.pdf"); We would like to change it so that some of the pdf's are dynamic, is it possible to print a ByteArrayOutputStream or ByteArray? I have looked for examples but have b

Re: [iText-questions] printing notes

2011-01-05 Thread va
ok, it's done.i didn' take into account the header of the table so there was a problem that i'didnt undurstand with the last row of each page if that row had a note. great..thank you again -- View this message in context: http://itext-general.2136553.n4.nabble.com/printing-notes-tp3172791p3

Re: [iText-questions] printing notes

2011-01-05 Thread va
...no I don't need the first. my job is to make reports with reportintg tools and i'm accustumed with the kind of mess that a page can showso when yesterday night I sow the first result i thought:"NO.NOT AGAIN!!" indeed now its getting better and better and i think that evetually I'll do i

Re: [iText-questions] printing notes

2011-01-05 Thread 1T3XT BVBA
Op 5/01/2011 3:13, va schreef: > yes, the writeSelectedRows() method. I didn't remember it. > I made some attemps and it seems the way to follow. > The think that I do not understand is how to put the PdfPTable written with > writeSelectedRows() in the first ColumnText to trigger the simulatio

Re: [iText-questions] printing notes

2011-01-04 Thread va
yes, the writeSelectedRows() method. I didn't remember it. I made some attemps and it seems the way to follow. The think that I do not understand is how to put the PdfPTable written with writeSelectedRows() in the first ColumnText to trigger the simulation mode. as a matter of fact there is

Re: [iText-questions] printing notes

2011-01-04 Thread 1T3XT BVBA
Op 4/01/2011 15:43, va schreef: > I need to mantaint a tabular structure. one PdfPTable per row? my good! Not necessarily: I overlooked the fact that you were using a PdfPTable. Why don't you add the table row per row using writeSelectedRows. Use a ColumnText object for the notes (all in simulation

Re: [iText-questions] printing notes

2011-01-04 Thread va
ok, but the table it's added to the first ColumnText all in one go when it is compleatly loaded (ct.addElement(t)), and then starts the ColumnText loop that tries to flash the entire table, doasn't manage to and split it across n° pages. In this case I would have to say to the ColumnText to try to

Re: [iText-questions] printing notes

2011-01-04 Thread 1T3XT BVBA
Op 3/01/2011 23:56, va schreef: > thanks in advance, expecially to 1T3XT BVBA that helped me in the first > part. you are the welcomed here! I think this isn't something you can solve in an onEndPage method. I think you should go for a solution where you take control over the distribution of the c

[iText-questions] printing notes

2011-01-03 Thread va
hi, i recently wrote in another post looking for help regarding printing text(notes) at the buttom of the page, notes that are in reletion with some of the table rows printed as the main content of the page. i did it setting one of the row's cell Chunk content as genericTag, passing to it the no

Re: [iText-questions] Printing PDFs

2010-05-13 Thread Mark Storer
-questions@lists.sourceforge.net Subject: [iText-questions] Printing PDFs Does iTextpdf support any printing operations like sending a pdf to the printer directly? Thanks, Dan Mellette Applications Developer dmelle

Re: [iText-questions] Printing PDFs

2010-05-13 Thread 1T3XT info
Dan Mellette wrote: > Does iTextpdf support any printing operations like sending a pdf to the > printer directly? No, you need another tool to do that. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info

[iText-questions] Printing PDFs

2010-05-13 Thread Dan Mellette
Does iTextpdf support any printing operations like sending a pdf to the printer directly? Thanks, Dan Mellette Applications Developer dmelle...@squarei.com Office: 970-377-0077 Mobile: 970-691-1310 <>-

Re: [iText-questions] Printing PDF after Convert from html to pdf

2009-07-06 Thread 1T3XT info
MDG wrote: > After Converting the document from html to pdf format it Generating fine and > open it also showing Data Good. > > After the compleation of convertion i am trying to print the document it is > printing but it is not Getting orginal format. it is giving like > > %PDF-1.4 > % > 2 0 obj

[iText-questions] Printing PDF after Convert from html to pdf

2009-06-29 Thread MDG
After Converting the document from html to pdf format it Generating fine and open it also showing Data Good. After the compleation of convertion i am trying to print the document it is printing but it is not Getting orginal format. it is giving like %PDF-1.4 % 2 0 obj <>stream - - - - - - - - -

Re: [iText-questions] Printing PDF

2009-05-30 Thread 1T3XT info
Leonard Rosenthol wrote: > iText doesn’t support printing. Correct: > *From:* Ludger Roßkamp [mailto:rossk...@online.de] > I have buy the book, but I can’t find the right information. Hmm, did you read the Table of Contents? "18.3.1 How to print a PDF programmatically?" I quote: If you post the

Re: [iText-questions] Printing PDF

2009-05-29 Thread Leonard Rosenthol
iText doesn't support printing. From: Ludger Roßkamp [mailto:rossk...@online.de] Sent: Friday, May 29, 2009 6:20 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Printing PDF Hello I want to print my PDF directly in Black and White. The PDF contains colored graphic

[iText-questions] Printing PDF

2009-05-29 Thread Ludger Roßkamp
Hello I want to print my PDF directly in Black and White. The PDF contains colored graphics and tables. I have buy the book, but I can’t find the right information. How do I print the PDF in black/white? Thank for help. Best Regards Ludger Mit freundlichen Grüßen Lud

Re: [iText-questions] Printing problems with rotated A4 and PdfPTable

2009-04-27 Thread 1T3XT info
Pierre G wrote: > I have upload my real example. There is a global table with 2 cells > containing a table. > This global table has 100% width. > In this case the bottom of the page is not printed although it's perfecly > displayed in adobe reader. Try printing it on different types of printers. S

Re: [iText-questions] Printing problems with rotated A4 and PdfPTable

2009-04-27 Thread Paulo Soares
erre G [mailto:pgilq...@bluewin.ch] > Sent: Monday, April 27, 2009 4:10 PM > To: itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] Printing problems with rotated > A4 and PdfPTable > > > I have upload my real example. There is a global table with 2 cells > con

Re: [iText-questions] Printing problems with rotated A4 and PdfPTable

2009-04-27 Thread Pierre G
I have upload my real example. There is a global table with 2 cells containing a table. This global table has 100% width. In this case the bottom of the page is not printed although it's perfecly displayed in adobe reader. I dont have any idea where is the problem. Thanks in advance for any hint.

[iText-questions] Printing problems with rotated A4 and PdfPTable

2009-04-27 Thread Pierre G
Hi all, I have a PdfPTable on A4 rotated document. In the reader everything looks ok but when printing the left side and bottom are not printed. Thanks in avance for any help. Pierre My code : import com.lowagie.text.*; import com.lowagie.text.pdf.*; import java.io.*; import java.awt.*; impor

Re: [iText-questions] Printing takes a long time

2009-04-06 Thread kumarmenon
Never mind. I made a boo boo. -- This message was sent on behalf of kumarme...@hotmail.com at openSubscriber.com http://www.opensubscriber.com/message/itext-questions@lists.sourceforge.net/11864680.html -- ___

Re: [iText-questions] Printing takes a long time

2009-04-06 Thread 1T3XT info
Arun Menon wrote: > > Hi > > This is really very silly. I am able to succesfully create pdf documents > without any issues using Itext. But printing the same document takes a > long time. I am sure the file size is not the issue (903 bytes). I am > using Itext 2.1.5. At first i thought it had

[iText-questions] Printing takes a long time

2009-04-06 Thread Arun Menon
Hi This is really very silly. I am able to succesfully create pdf documents without any issues using Itext. But printing the same document takes a long time. I am sure the file size is not the issue (903 bytes). I am using Itext 2.1.5. At first i thought it had to do with my printing images

Re: [iText-questions] Printing PDF-document with invisible signature - reated with i-text

2009-03-10 Thread Leonard Rosenthol
: Tuesday, March 10, 2009 3:51 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Printing PDF-document with invisible signature - reated with i-text Dear specialists, using the i-text library (vs. 2.0.6) we create PDF-documents and sign them with an invisible signature

[iText-questions] Printing PDF-document with invisible signature - reated with i-text

2009-03-10 Thread hofinger
Dear specialists, using the i-text library (vs. 2.0.6) we create PDF-documents and sign them with an invisible signature. Everything works fine so far - only when printing 2 or 3 (or several) pages per sheet out of Acrobat Reader the first sheet breaks after the first page. Furhter sheets are

Re: [iText-questions] Printing both sides with iText

2009-02-17 Thread Leonard Rosenthol
d location (folder, web site, etc.) as specified in the Trust Manager of Adobe Acrobat/Reader. Leonard -Original Message- From: 1T3XT info [mailto:i...@1t3xt.info] Sent: Tuesday, February 17, 2009 5:39 AM To: Post all your questions about iText here Subject: Re: [iText-questions] Printing both

Re: [iText-questions] Printing both sides with iText

2009-02-17 Thread 1T3XT info
Uma Gudi wrote: > > When I tried to Print Pdf, using below code > > writer.addJavaScript("this.print(false);", > *false*); > > response.setHeader("Expires", "0"); > response.setHeader("Cache-Control", > "must-revalidate, p

Re: [iText-questions] Printing both sides with iText

2009-02-17 Thread Uma Gudi
questions about iText here To Post all your questions about iText here cc Subject Re: [iText-questions] Printing both sides with iText Uma Gudi wrote: > > How do i print pdf with retro verso(both sides) with iText? iText creates PDF files, it doesn't print them. You c

Re: [iText-questions] Printing both sides with iText

2009-02-16 Thread 1T3XT info
Uma Gudi wrote: > > How do i print pdf with retro verso(both sides) with iText? iText creates PDF files, it doesn't print them. You can set the viewer preference to DUPLEX using this method: http://1t3xt.info/api/com/lowagie/text/pdf/PdfWriter.html#addViewerPreference(com.lowagie.text.pdf

[iText-questions] Printing both sides with iText

2009-02-16 Thread Uma Gudi
How do i print pdf with retro verso(both sides) with iText? Thanks and Regards Uma Maheswara Rao Gudi Experience certainty. IT Services Business Solutions Outsourcing ___

Re: [iText-questions] Printing without creating a PDFFile

2008-12-18 Thread 1T3XT info
lucie.b...@armor-group.com wrote: > > Hi, > > For the moment, I create a PDF file with itext and try to print it > unsuccessfully. I've tried LPR but it says "Error while start sending > control file". > So I'm trying to find out a way to send my PDF document directly to a > specific printer (

Re: [iText-questions] Printing without creating a PDFFile

2008-12-18 Thread Leonard Rosenthol
You need to create the PDF file first before sending to the printer. PDF is NOT consumable in a stream like Postscript is... Leonard On Dec 18, 2008, at 7:37 AM, lucie.b...@armor-group.com wrote: Hi, For the moment, I create a PDF file with itext and try to print it unsuccessfully. I'v

[iText-questions] Printing without creating a PDFFile

2008-12-18 Thread lucie . BABU
Hi, For the moment, I create a PDF file with itext and try to print it unsuccessfully. I've tried LPR but it says "Error while start sending control file". So I'm trying to find out a way to send my PDF document directly to a specific printer (given the name of the printer that the user can ch

[iText-questions] Printing problems with rotated images

2008-06-24 Thread Stefan Ziegler
Hi I have some strange problems with imported, rotated images (png or gif). The resulting PDF looks fine in Adobe Reader but printing is a problem and the print product has either some white stripes in it or half of the image is not printed. My code looks like this: URL myUrl = (URL) aMap.get("u

Re: [iText-questions] Printing, non-visible watermark.

2008-05-20 Thread Paulo Soares
Use a annotation, there's a flag for "print but not visible". Paulo - Original Message - From: "Mark Patterson" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Tuesday, May 20, 2008 7:01 PM Subject: [iText-questions]

Re: [iText-questions] Printing, non-visible watermark.

2008-05-20 Thread Bruno Lowagie
Mark Patterson wrote: > I'm looking to add a watermark to an existing multi-page document that > is not visible, but prints. Is this capability being added to a future > version of iText? My second option is to add an optional content layer > to the document, how would I go about that, and can a

[iText-questions] Printing, non-visible watermark.

2008-05-20 Thread Mark Patterson
I'm looking to add a watermark to an existing multi-page document that is not visible, but prints. Is this capability being added to a future version of iText? My second option is to add an optional content layer to the document, how would I go about that, and can a layer span multiple pages?

[iText-questions] Printing more than one Swing Component in PDF

2008-03-06 Thread Kiran Kodimela
Hi, Iam facing problems with printing more than two components in a PDF. If iam trying to set the Boundaries for JTable, which does not have any Header. Now i set the boundaries for text which i want to display above the JTable. Below is the code: PdfWriter writer = PdfWriter.*getInstance*(do

Re: [iText-questions] printing front-back

2008-02-28 Thread Fabrizio Accatino
Ciao Davide, No. You cannot. You must create 2 different pdfs: one for simplex printing (italian: solo fronte) and one for duplex printing (italian: fronte e retro). Fabrizio On Thu, Feb 28, 2008 at 10:03 AM, davide tau <[EMAIL PROTECTED]> wrote: > Hello, > I'm using your library iText in m

Re: [iText-questions] printing front-back

2008-02-28 Thread Leonard Rosenthol
No, there is no way to do this. Leonard On Feb 28, 2008, at 4:03 AM, davide tau wrote: Hello, I'm using your library iText in my software to create pdf documents. I need to create a document which can be print at the same time in front/back mode and front only mode. I wonder wether exsists

[iText-questions] printing front-back

2008-02-28 Thread davide tau
Hello, I'm using your library iText in my software to create pdf documents. I need to create a document which can be print at the same time in front/back mode and front only mode. I wonder wether exsists a way to do this without inserting white pages when I am in front/back mode and I need to pr

[iText-questions] Printing problems PDF417 blurred image

2008-02-26 Thread Bennie
I found a solution/work around for the printing problems related to PDF417 (posted on http://www.junlu.com/msg/394098.html ) Printing to HP LaserJet or opening PDF with foxit shows PDF417 Barcode with gray tones and is unreadable. Adobe Reader renders the Image correctly. (I mention Foxit beca

Re: [iText-questions] Printing Flash in a PDF

2008-01-04 Thread Leonard Rosenthol
You need to put some actual content into that template - perhaps load a static image or something from the Flash... Leonard On Jan 4, 2008, at 11:00 AM, Aaron Watkins wrote: > Hello, > > This is my first time using iText and I must say that I'm very > pleased with how easily it's made the pr

[iText-questions] Printing Flash in a PDF

2008-01-04 Thread Aaron Watkins
Hello, This is my first time using iText and I must say that I'm very pleased with how easily it's made the process of creating a PDF that mostly suits my requirements. I've created a Flex application (which compiles down to a Flash "swf" file) that I need to embed into a PDF. I've managed to emb

Re: [iText-questions] Printing problem on PS driver

2007-10-22 Thread Leonard Rosenthol
IIRC, Samsung doesn't use Adobe Postscript - it uses a clone. I suspect you are running into issues/bugs/errors in their implementation. Trying telling Acrobat to "dumb down" the Postscript by choosing a lower PS level in the printer settings. Leonard On Oct 22, 2007, at 12:32 PM, Matthew

[iText-questions] Printing problem on PS driver

2007-10-22 Thread Matthew Darlison
Dear List, Firstly - iText is a great tool - *thanks* to the developers! After extensive fiddling around to get colourspaces and font quality issues right, I can create a sequence of coloured barcharts in jFreeChart and move them into iText without loss of quality in their font rendering and w

Re: [iText-questions] Printing a footer on the first page of a multi-page document

2007-08-28 Thread Bruno Lowagie (iText)
Thompson, Mark wrote: > This question may have been asked already. Yes, it has been answered over and over again. > How do I have the footer print at the bottom of the first page as well > as all subsquent pages? Either you are using the HeaderFooter class (a class you shouldn't use) and you ar

[iText-questions] Printing a footer on the first page of a multi-page document

2007-08-28 Thread Thompson, Mark
This question may have been asked already. How do I have the footer print at the bottom of the first page as well as all subsquent pages? I'm writing a report that uses iText to create the PDF version, and the clients would like a footer printed at the bottom of each page. Thanks for your response

Re: [iText-questions] Printing Mailing Labels 3 X 10

2007-04-12 Thread Jitendra
Thank you very Much now it is working -- With Regards Jitendra - Original Message From: Paulo Soares <[EMAIL PROTECTED]> To: Post all your questions about iText here <[EMAIL PROTECTED]> Sent: Thursday, April 12, 2007 2:55:44 PM Subject: Re: [iText-questions] Printing Mail

Re: [iText-questions] Printing Mailing Labels 3 X 10

2007-04-12 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of jitendra > Sent: Thursday, April 12, 2007 9:59 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Printing Mailing Labels 3 X 10 > > Hi > >

[iText-questions] Printing Mailing Labels 3 X 10

2007-04-12 Thread jitendra
Hi I am facing problem with creating Address Mailing Labels of size 3X10 per page. As it is Address I need to print, the no of lines per label is getting varied. In general there are seven lines need to be printed per label, so for some labels I get less than 7 lines at that time if I g

Re: [iText-questions] Printing on sticking labels.

2007-01-23 Thread Bruno Lowagie (iText)
[EMAIL PROTECTED] wrote: > This class should take care of your labels or demonstrate how to handle this. > > Here ya go, its public domain, no license or copyrights to wory about: > > http://www.datavirtue.com/Software/dev/PDFLabels.java Once in a while people are asking for support for Avery TM

Re: [iText-questions] Printing on sticking labels.

2007-01-22 Thread seanka
This class should take care of your labels or demonstrate how to handle this. Here ya go, its public domain, no license or copyrights to wory about: http://www.datavirtue.com/Software/dev/PDFLabels.java Sean - Take Surve

Re: [iText-questions] Printing on sticking labels.

2007-01-22 Thread Bruno Lowagie (iText)
Gérard Martinelli wrote: > I have a A4 format paper which is divided in 8 fixed-size rows and 3 > fixed-size colums (no margins neither for top/bottom nor for left/right). > That means there are exactly 24 cells. I would take the dimensions of the page, and divide the height by 8 (h) and the

[iText-questions] Printing on sticking labels.

2007-01-22 Thread Gérard Martinelli
Hello, I'm using ITEXT for a while, and today I have a problem about printing on sticking labels. I have a A4 format paper which is divided in 8 fixed-size rows and 3 fixed-size colums (no margins neither for top/bottom nor for left/right). That means there are exactly 24 cells. I need

Re: [iText-questions] printing pdf - from java

2006-10-25 Thread Damien Drix
Hello, First here's a related entry in the iText FAQ : http://itext.ugent.be/library/question.php?id=5 Now: On Unixes : - the lpr command on most systems works quite well. On Windows (prepare to enter a world of pain) : - If you're only interested in PS-capable printers : Go for the stan

[iText-questions] printing pdf - from java

2006-10-24 Thread David Thielen
Hi;   What's the best program out there for printing pdf files - on linux and preferably a java program so it can run on Windows too.   thanks - dave- Using Tomcat but need to do more? Need to support web services, security?

[iText-questions] Printing Watermarks

2006-07-19 Thread Kharas
Hi I've just added a watermark to a document. It looks great, but when I print it, the background of the rectangle containing the watermark is light grey instead of white. I've tried to use a png with a transparent background, but I get the same result. I would really appreciatte any insights i

[iText-questions] Printing PDF from HTML.

2006-06-18 Thread KA Jaganatha
I have a PDF generated using iText API in a Struts WebAPP.  Want users to print  this PDF from html in the Struts WebApp.   SilentPrintServlet given in iText is not very clear.  Does anyone have a sample to print from Struts actions?   Thanks in advance.   K. A. Jaganatha[EMAIL PROTECTED](919

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-06-15 Thread Kristoffer Jacobsen
I'm experiencing the same problem for some end users, only I'm not able to reproduce it myself. My question is: - Did you embed the fonts in your PDF? I'm currently not embedding the fonts, but will absolutely consider it if that can prevent the character shift issue. -- View this message in con

Re: [iText-questions] Printing takes forever......

2006-05-16 Thread Brian
When you say transparency , do you mean images on the overlay? If so then yes. How would I fix this then? Thanks, B --- Leonard Rosenthol <[EMAIL PROTECTED]> wrote: > At 03:57 PM 5/11/2006, Brian wrote: > > We currently have an internal application that > makes > >use of itext. It takes text f

Re: [iText-questions] Printing takes forever......

2006-05-16 Thread Joseph Brady
Brian wrote: Hello All, We currently have an internal application that makes use of itext. It takes text files, and converts them to pdf's dynamically with a pdf overlay. Viewing the document is quick and easy. However, when we pring, it's like the pdf document gets bloated and printing has tak

Re: [iText-questions] Printing takes forever......

2006-05-11 Thread Leonard Rosenthol
At 03:57 PM 5/11/2006, Brian wrote: We currently have an internal application that makes use of itext. It takes text files, and converts them to pdf's dynamically with a pdf overlay. Are you using any transparency in the document? If so, that's the problem! Leonard -

[iText-questions] Printing takes forever......

2006-05-11 Thread Brian
Hello All, We currently have an internal application that makes use of itext. It takes text files, and converts them to pdf's dynamically with a pdf overlay. Viewing the document is quick and easy. However, when we pring, it's like the pdf document gets bloated and printing has taken up to 5 minu

Re: [iText-questions] Printing PDF without opening the document.

2006-04-27 Thread Vineet Reynolds
Vivek, to be more specific you could look at this page - http://www.noliturbare.com/ChicksTools.htmlOn 4/27/06, Vineet Reynolds <[EMAIL PROTECTED]> wrote: Thanks Bruno.Vivek, you could try if the programs available at http://www.noliturbare.com/ can match your needs.These are not my programs thou

Re: [iText-questions] Printing PDF without opening the document.

2006-04-27 Thread Vineet Reynolds
Thanks Bruno.Vivek, you could try if the programs available at http://www.noliturbare.com/ can match your needs.These are not my programs though. But they're worth a try. You could ask the author (Govert) regarding any licensing issues for commercial projects. On 4/27/06, bruno <[EMAIL PROTECTED]>

Re: [iText-questions] Printing PDF without opening the document.

2006-04-27 Thread bruno
Vivek Mishra wrote: Hi, There is this requirement to print all the PDF's kept in a folder on a Windows XP based machine without opening all the individual documents. There will be a batch program which will run and will scan all the PDFs and print the same without opening the individual fil

[iText-questions] Printing PDF without opening the document.

2006-04-27 Thread Vivek Mishra
Hi, There is this requirement to print all the PDF's kept in a folder on a Windows XP based machine without opening all the individual documents. There will be a batch program which will run and will scan all the PDFs and print the same without opening the individual files. How can I proceed wi

Re: [iText-questions] Printing MS Office documents as PDF

2006-04-07 Thread Leonard Rosenthol
At 08:23 AM 4/7/2006, Michael D wrote: I'm looking for a way of like-printing an MS Office (Word,Excel, PowerPoint docs) as PDF. Actually what I need is to develop a routine that will take as an input parameter an MS Office file and will output a PDf representation of it or a byte stream that can

Re: [iText-questions] Printing MS Office documents as PDF

2006-04-07 Thread bruno
Michael D wrote: Hi, I'm looking for a way of like-printing an MS Office (Word,Excel, PowerPoint docs) as PDF. Sorry, iText isn't able to read/parse MS Office documents. You will have to look for another product. br, Bruno --- This SF.Net

[iText-questions] Printing MS Office documents as PDF

2006-04-07 Thread Michael D
Hi, I'm looking for a way of like-printing an MS Office (Word,Excel, PowerPoint docs) as PDF. Actually what I need is to develop a routine that will take as an input parameter an MS Office file and will output a PDf representation of it or a byte stream that can be saved as PDF. There are a numb

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-03-05 Thread Steve Vanspall
Among everything that apeeasrs in my itext inbox, I competely missed this reply. As a later email states, this is exactly the problem I am having. Someone else has suggested that Print As Image prints correctly each time. It's not a great solution but it is one. I havne't been able to confirm

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-01-26 Thread Jeff Buhrt
Steve, What you described sounds like a problem I am tracking also. For me it isn't really 'random' text. It too one of our support people a while to find out it is really Rot1'd. See the iText email: [iText-questions] Re: PDF printing from Reader is randomly ROT1'ing the printed page(s) An

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-01-17 Thread Vineet Reynolds
Yep, you're right. The printer settings for spooling are not easily manipulated by programs. maybe you should have a support page explaining how to change such settings. Spooling before printing will make the start to printing slow, but the overall printing speed will not matter (unless the documen

RE: [iText-questions] printing with iText

2006-01-17 Thread Paulo Soares
> Subject: [iText-questions] printing with iText > > Hello there, > > is it possible to create a simle g2d-print-service from the > pdfreader get-functions by translating the dictionaries ? > > Greetings A. Kreuzer > _

Re: [iText-questions] printing with iText

2006-01-17 Thread bruno
Andreas Kreuzer wrote: Hello there, is it possible to create a simle g2d-print-service from the pdfreader get-functions by translating the dictionaries ? Everything is possible, but it's a hell of a job; nobody has implemented this in iText yet. You should have a look at JPedal. I think they

[iText-questions] printing with iText

2006-01-17 Thread Andreas Kreuzer
Hello there, is it possible to create a simle g2d-print-service from the pdfreader get-functions by translating the dictionaries ? Greetings A. Kreuzer __ Erweitern Sie FreeMail zu einem noch leistungsstärkeren E-Mail-Postfa

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-01-16 Thread Vineet Reynolds
Maybe you should set the printer to print only after the document is completely spooled. Usually, printers start printing when they receive th first page of the document, and that could be the real problem. On 1/17/06, Steve Vanspall <[EMAIL PROTECTED]> wrote: > Thanks for that, > > having clarifi

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-01-16 Thread Steve Vanspall
Thanks for that, having clarified the problem a bit, it only really seems to happen when they are printing a large number of the generated PDF's. They are definately not shutting down the PC before printing finishes. It does seem to suggest that something residual is haging around in the pri

Re: [iText-questions] Printing PDF's randomly outputs junk characters

2006-01-15 Thread Bruno Lowagie
Steve Vanspall wrote: Has anyone else had this problem, anyone found a solution??? I once spent some time on a similar problem at work. The problem never occured when I was around. Then I got an idea: I printed a large document and I shut down the PC of the end user before the document was com

[iText-questions] Printing PDF's randomly outputs junk characters

2006-01-15 Thread Steve Vanspall
Hi there, I am not sure if this is an Acrobat or Itext issue. I have read a feew people have had this problem and not many replies have come in. Basically I have a system that creates PDF's that the user can choose to print if they want. Usually everything runs smoothly, the PDF's diplay p

[iText-questions] Printing PDF

2005-11-08 Thread Steve Simpson (AVR IT Dept)
Is there a way to programmatically print a PDF file in Java?  I'm looking for something that will automatically print to the current printer defined within Windows.    I've seen a way to do it by reading the FAQ by calling command or cmd but I'd need to specify the path to the installed

Re: [iText-questions] printing pdf files

2005-09-23 Thread Leonard Rosenthol
At 10:31 AM 9/23/2005, Markus Eberhard wrote: i can create pdf files dynamically. those part its working fine. Now i want to print the generated PDF files on the client location with out opening acrobat reader. The only way to do that is with a custom browser plugin on your user's com

[iText-questions] printing pdf files

2005-09-23 Thread Markus Eberhard
i can create pdf files dynamically. those part its working fine. Now i want to print the generated PDF files on the client location with out opening acrobat reader.Is this possible with iText? Thanks MarkusMit der Gruppen-SMS von WEB.DE FreeMail können Sie eine SMS an alle    Freunde gleichzeitig

[iText-questions] Printing Pages more than one time

2005-09-02 Thread oliver . mondry_ext
Hello, is it possible with the iText framework to instruct a printer to print a document more than one time? Background: we send pdf documents from our server to our clients over slow internet connections. Every document has to be printed three times. It takes several minutes to donwload the thr

Re: [iText-questions] Printing to a specific printer?

2005-08-05 Thread Hans-Werner Hilse
Hi, On Thu, 4 Aug 2005 15:24:18 -0400 "Kelly Moran" <[EMAIL PROTECTED]> wrote: > I am generating a series of pdf files using iText. I need to print them > in the background to various printers without opening the print dialog > or viewing the files. Can anyone tell me if I can do this and iText

[iText-questions] Printing to a specific printer?

2005-08-04 Thread Kelly Moran
Hi All,   I am generating a series of pdf files using iText.  I need to print them in the background to various printers without opening the print dialog or viewing the files. Can anyone tell me if I can do this and iText and if so how?   Thanks! Kelly

Re: [iText-questions] printing a pdf document

2005-06-01 Thread Bruno Lowagie
David Graf wrote: Is it possible to print a pdf document directly from java using itext? Printing is very platform dependant, see: http://www.lowagie.com/iText/faq.html#printing In iText 1.3.1, there's also a new untested, poorly documented class Executable. I wrote it, based on some user

  1   2   3   >