Hi Bruno,
yes, I know that Pdf 1.7 suports those features but the real production
printing machines does not support Pdf 1.7.
Ok, ok, perhaps there are few printers supporting it now... but I dont know
them.
The problem of "real" pdf direct printing is complex and hard to make it
work well (
No. iText does not generate PostScript. You can generate Pdf and then
convert it to PostScript using another tool (like ghoscript).
Fabrizio
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuf
Fabrizio Accatino wrote:
> Hi,
>
> Pdf does not support selective duplex/simplex and paper tray selection.
Please read the PDF Reference 1.7.
Simplex/duplex and other printer properties are supported
in Acrobat and Adobe Reader 8. I have added all the new
printer functionality to iText, if you wa
hello,
thank you for your answer :)
But maybe i make myself misunderstood. I don't want to convert to
postscript, but only generate postscript instead of pdf.
I want to use iText API to generated postscript not PDF. Maybe there is
an option ?
thanks
--
yves piel
Le mardi 06 février 2007 à 15:57
Hi,
Pdf does not support selective duplex/simplex and paper tray selection.
There are some solutions but tipically they are related with a particular
printer manufacturer.
But the argument is OffTopic on this mailing list.
Feel free to write me privately if you need more infos/suggestions.
Fab
Hello, Paulo Soares.
I already tried with AddSubstitutionFont function ago but I failed.
Finally, I found the source of problem!!!
It was the xfdfReader of iTextSharp.
When I set some break points and investigated the values of xfdfReader
object, I found that the Korean chars of xfdfReader ob
Hi.
I have a multi page PDF and would like to get the page numbers of each
page. In the PDF spec this is called Page Label. I was wondering if iText
supports the getting of these page numbers. I am looking in the book on page
402 it shows that I can change them on documents I create. But doesn't s
iText will not convert to PostScript, no. But there is at least one free
PDF->PS converter out there, called GhostScript. It's not written in Java, so
you'd probably have Runtime.exec().
You might also experiment with the Java Print API, though I didn't see anything
conclusive.
http://www.go
hello,
I have to genertte postscript to print a job which has duplex mode on
some pages and no duplex for other, and paper are selected from several
paper tray.
I don't know how to do this with PDF, so I wonder if iText can generate
postacript. So I would be able to modify iText source code add
po
> > Actually I am not meant to forge a signed PDF.
> > Example: 1 pdf contains 2 pages and has signed in each pages.
> > User needs to split the pdf become 2 pdf instead.
> > I can managed spliting it become 2 pdf but reliazed the signature is
> > missing.
> when you split a document you are alter
when you split a document you are altering it. This voids the
signature. Because you do not sign a page, but the whole document
On 2/6/07, Reinardy Halim <[EMAIL PROTECTED]> wrote:
> Thank you for your reply.
> Actually I am not meant to forge a signed PDF.
> Example: 1 pdf contains 2 pages and ha
DPI and PageSize have nothing to do with eachother.
Bruno is right, i suspect that you are not properly setting your page size
to be the size that you want.
When you open your document in Acrobat, what are the dimesions of the
document?
-Bill Ensley
www.bearprinting.com
_
From: [EM
in C#:
Font f = FontFactory.GetFont(fontfacename, BaseFont.CP1252,
BaseFont.EMBEDDED, fontsize, Font.NORMAL);
gives me a pdfx1a compatible embedded font (I control font style by using
the full face name eg "Arial Bold", not by Font.Bold)
hth
neptuno wrote:
>
> Hello,
>
> Can someone tell me
magesh rathnam wrote:
> Hi,
>
> Is it possible to set the print DPI of the PDF via code? If yes, Can
> you explain me how? I create a document of 4.82 * 6.94 in. But when I
> print it, it comes out a lot smaller
Have you use the correct PageSize (347.04 x 499.68)?
Have you set the PrintScali
Henry Lu wrote:
> Is there a way to find out how many page in a document after a
> processing (right before or after document.close();)?
No, this is inherent to the RTF format.
PDF is a PDL, which means the content and layout
of each page is described regardless of the program
that will render th
On Tuesday 06 February 2007 15:11, Henry Lu wrote:
> Is there a way to find out how many page in a document after a
> processing (right before or after document.close();)?
Read this http://itextdocs.lowagie.com/tutorial/rtf/index.html
Greetings,
Mark
--
porcupine wrote:
> Congrats, iText reaches the bookshelves of Thailand... and I thought I was
> the only one who had a copy! yours for US$50
> http://img264.imageshack.us/my.php?image=pic00481vc9.jpg
> http://img264.imageshack.us/img264/2325/pic00481vc9.jpg
Oh, this is nice! Thanks for the pict
Is there a way to find out how many page in a document after a
processing (right before or after document.close();)?
-Henry
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly w
The problem here is that the font is not embedded. As the font is not embedded
you must provide iText with an alternative to show the glyphs. This is done
with AcroFields.AddSubstitutionFont().
Paulo
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Beha
Congrats, iText reaches the bookshelves of Thailand... and I thought I was
the only one who had a copy! yours for US$50
http://img264.imageshack.us/my.php?image=pic00481vc9.jpg
http://img264.imageshack.us/img264/2325/pic00481vc9.jpg
--
View this message in context:
http://www.nabble.com/iText
Hi,
Is it possible to set the print DPI of the PDF via code? If yes, Can you
explain me how? I create a document of 4.82 * 6.94 in. But when I print it,
it comes out a lot smaller and I had to change the DPI so that it prints to
the correct size. So my question is how can I set this DPI inside
magesh rathnam wrote:
> Hi,
>
> Is it possible to set the print DPI of the PDF via code? If yes, Can
> you explain me how? I'm using Java as my programming language.
You do know that PDF doesn't really have a resolution, do you?
http://itext.ugent.be/library/question.php?id=100
However since P
Hi,
Is it possible to set the print DPI of the PDF via code? If yes, Can you
explain me how? I'm using Java as my programming language.
--
Thanks & Regards,
Magesh
-
Using Tomcat but need to do more? Need to support web ser
Thank you for your reply.
Actually I am not meant to forge a signed PDF.
Example: 1 pdf contains 2 pages and has signed in each pages.
User needs to split the pdf become 2 pdf instead.
I can managed spliting it become 2 pdf but reliazed the signature is
missing.
Is there any better way to solve th
Hello,
Can someone tell me how does iText manage the insertion of fonts into a pdf
file? For instance, if I create a pdf file using itext.writer and add a
label and/or field of a specified font, how does that font will be added to
the file?
I´m asking this because, if I can´t add fonts to
1) -> I tried with Acrobat 6, 7 and 8. The version of the PDF file that I
created is 1.4.
2) -> I tried with Korean font pack installed and uninstalled.
Indeed, Acrobat always shows dialog box that font pack needed when I
insert text field and change its font to any Korean font.
Therefore, if
Uros Vonta wrote:
> The files won't bo online, they'll be accessible over Lotus Notes
> application. User is allowed to read the file with less permissions
> possible. What I have to do with file, that user can't open file if he
> has saved a copy on his file system.
Leonard has answered your q
The files won't bo online, they'll be accessible over Lotus Notes
application. User is allowed to read the file with less permissions
possible. What I have to do with file, that user can't open file if he has
saved a copy on his file system.
On 2/6/07, Bruno Lowagie (iText) <[EMAIL PROTECTED]> wr
Sérgio Oliveira wrote:
> Hi,
>
> Is it possible to change/set the permissions of a pdf file using iText?
http://itext.ugent.be/library/api/com/lowagie/text/pdf/PdfWriter.html#setEncryption(boolean,%20java.lang.String,%20java.lang.String,%20int)
> What I want is to set the permissions not to pri
Udo Rader wrote:
> http://www.joeschmidt.com/img/211820.jpg
>
> ... could not resist, sorry :-)
No need to say sorry. It's a good one.
I hadn't seen it before ;-)
br,
Bruno
-
Using Tomcat but need to do more? Need to support
On Tuesday 06 February 2007 13:29, Raghu wrote:
> My requirment is to genberate Word document.
> But are the limitations of word compared to RTF.
> Does generated RTF file can be renamed to .doc ?
You can do that, but it doesn't magically make a DOC document out of an RTF
document.
> or RTF/.DOC
Uros Vonta wrote:
> I have to prevent copying, printing, editing AND SAVING pdf files for
> most users. The problem is saving the documents. I was thinking about
> revoking access for a period of time or something because I read that
> this is doable. Please post any suggestions. I wonder if som
Uros Vonta wrote:
> How can i revoke access to a document and what possibilities do I have?
> Can everyone post some sample code or samething.
If you have put a document online,
and you remove it. People no longer
have access to it.
Of course if they have downloaded it,
or if someone/something ar
On Tue, 2007-02-06 at 18:59 +0530, Raghu wrote:
> My requirment is to genberate Word document.
> But are the limitations of word compared to RTF.
> Does generated RTF file can be renamed to .doc ?
>
> or RTF/.DOC are same ?
sometimes the only thing that can be said is RTFM or even better
http://
Raghu wrote:
> My requirment is to generate Word document.
If that's your requirement, then you should
generate documents that are in Word format.
> Does generated RTF file can be renamed to .doc ?
RTF files can have a doc extension.
> or RTF/.DOC are same ?
Are Tigers and Lions the same. NO,
Take a look at Adobe's LiveCycle Policy Server available online at
dc.adobe.com.
Leonard
On Feb 6, 2007, at 8:15 AM, Uros Vonta wrote:
> How can i revoke access to a document and what possibilities do I
> have? Can everyone post some sample code or samething.
>
> tnx, Uros (don't look at my
I have to prevent copying, printing, editing AND SAVING pdf files for most
users. The problem is saving the documents. I was thinking about revoking
access for a period of time or something because I read that this is doable.
Please post any suggestions. I wonder if something like this can be done
My requirment is to genberate Word document.
But are the limitations of word compared to RTF.
Does generated RTF file can be renamed to .doc ?
or RTF/.DOC are same ?
-Original Message-
From: Mark Hall [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 06, 2007 4:06 PM
To: [EMAIL PROTECTED
On Feb 5, 2007, at 10:51 PM, Praveen BALAGOWNI wrote:
> I am generating a pdf dynamically from a servlet using
> iText.It also embeds signature generated by electronic signature
> pad using Acitve X component.When embedding the signature in pdf
> file,it is in text(string) format genera
How can i revoke access to a document and what possibilities do I have? Can
everyone post some sample code or samething.
tnx, Uros (don't look at my english mistakes)
-
Using Tomcat but need to do more? Need to support web se
On Tuesday 06 February 2007 13:06, Henry Lu wrote:
> In RTF, how do we reduce the space between rows in table?
Please provide some code of what you are currently doing. Then I can provide
pointers how to fix your problem.
Greetings,
Mark
--
On Tuesday 06 February 2007 12:46, Henry Lu wrote:
> RtfFont plain11Font = new RtfFont("Arial", 11, RtfFont.STYLE_NONE);
>
> What I realy got is font size 10. Why? How to fix it?
I don't know. You'll have to show some more code, so that I can see what you
are doing.
Greetings,
Mark
-
In RTF, how do we reduce the space between rows in table?
-Henry
SXrgio Oliveira wrote:
> Hi,
>
> Is it possible to change/set the permissions of a pdf file using
> iText? What I want is to set the permissions not to print in a
> existing pdf (well, it doenst´matter if I will need to copy it t
When I define
RtfFont plain11Font = new RtfFont("Arial", 11, RtfFont.STYLE_NONE);
What I realy got is font size 10. Why? How to fix it?
-Henry
SXrgio Oliveira wrote:
> Hi,
>
> Is it possible to change/set the permissions of a pdf file using
> iText? What I want is to set the permissions not
Hi,
Is it possible to change/set the permissions of a pdf file using iText? What
I want is to set the permissions not to print in a existing pdf (well, it
doenst´matter if I will need to copy it to another document created with
writer).
Thank you
___
SeungHyun Park wrote:
> But, all Korean characters disappeared at the filled PDF file when I
> open it by Acrobat.
1) What version of Acrobat? Old version don't support Unicode in fields
2) Is the Korean font pack installed?
br,
Bruno
-
Ramachandran wrote:
> I need to design my document by drawing vertical and horizontal
> lines with width 5f.it should looks like T - ShapeAny body please
> let me know the option . Coz im trying using LineTo method but i cant
> able to make vertical lines...
This doesn't make sense. If you
Mohammed, Mohamed (IE10) wrote:
> Hi,
> How to convert a pdf document to HTML Document using iTextSharp.
You don't.
> If you have any sample code, please send it to my mail.
It's impossible with iText.
> I need this very urgently.
you will have a hard time finding another product
that is capab
Hi,
iText can't generate DOC files, but if RTF is sufficient then read
http://itextdocs.lowagie.com/tutorial/rtf/index.html to understand
the limitations of generating RTF documents with iText.
Greetings,
Mark
On 06.02.2007, at 05:59, Raghuveer wrote:
> I have a requirment to generate a wor
Hi,
How to convert a pdf document to HTML Document using iTextSharp in
ASP.NET 2.0? If you have any sample code, please send it to my mail
I need this very urgently.
Thanks in advance.
Regards,
Buhari
This e-mail and any attachments thereto, are intended only for use by
the
Hello again,
I just installed SEAM 1.1.5 on my machine, and I had a quick glance at
the source code of the PDF related functionality. As soon as I have the
time, I'll do a more thorough inspection.
These are some remarks:
In package org.jboss.seam.pdf.ui.ITextComponent, there's
a method replac
Hi
i need to design my document by drawing vertical and horizontal lines
with width 5f.it should looks like T - ShapeAny body please let me know the
option . Coz im trying using LineTo method but i cant able to make vertical
lines...im Going in a complex way for getting two li
Bruno Lowagie wrote:
> Again I haven't received any mail from the list today.
I have just received my first mail from the list in almost two days.
When looking at the archives I can see I have missed several mails.
I only have time for a short answer:
To the person wanting to display a PDF: iTex
Reinardy Halim wrote:
> Hi,
> I've pdf with signature field with signed. I wanted to get that signature
> field and copy to new pdf form. Is it posible ?
In other words: you want to forge a signed PDF.
No, that's not possible. If it were, there would
be a serious security problem.
br,
Bruno
Hi,
I've pdf with signature field with signed. I wanted to get that signature
field and copy to new pdf form. Is it posible ?
Regards
_
Find just what you are after with the more precise, more powerful new
Windows Live Search. http
55 matches
Mail list logo