Op 15/12/2011 3:40, ruben mussi schreef:
> I've created this pdf file to use it as an template for filling
> purposes using itextsharp: http://i43.tinypic.com/103cw83.png
>
> I want to export a datatable but it must go below the title on the
> second page, this is what i've already made: http://p
Hi,
We are working with inetsoft reporting libraries to generate PDF version of
a report which also requires the barcode to be printed on it. We are using
the Barcode128 to print the barcode on the pdf. And we are using the
following code:
-
I've created this pdf file to use it as an template for filling purposes using
itextsharp: http://i43.tinypic.com/103cw83.png
I want to export a datatable but it must go below the title on the second page,
this is what i've already made: http://paste2.org/p/1824176
Well, i guess i'm almost the
I don't want to create an ink signature with iText, I want to
dynamically build a pdf using iText, email it to an end user, then
have the end user sign it in ink with Adobe Reader then email it back.
-Stephen More
On Wed, Dec 14, 2011 at 4:08 PM, Martin Bene wrote:
>> Is there an example how I c
> Is there an example how I can generate a pdf using iText that will allow a
> 'ink signature' ?
I don't think ink signatures as defined by adobe are possible with iText.
However: you can add a digital signature that uses a custom image for signature
field appearance.
* get "ink signatu
It's not possible.
On 12/14/11 7:15 PM, "Stephen More" wrote:
>According to Adobe:
>http://help.adobe.com/en_US/Acrobat/9.0/Standard/WS58a04a822e3e50102bd6151
>09794195ff-7d48.w.html
>
>"Sign a PDF with an ink signature In Reader, choose Document > Sign >
>Apply Ink Signature. (This command is
According to Adobe:
http://help.adobe.com/en_US/Acrobat/9.0/Standard/WS58a04a822e3e50102bd615109794195ff-7d48.w.html
"Sign a PDF with an ink signature In Reader, choose Document > Sign >
Apply Ink Signature. (This command is available only if the PDF
creator enabled digital signature and commentin
That was the missing piece. Should have seen it sooner. Thank you.
From: Benjamin Rein [mailto:r...@viessmann.com]
Sent: Wednesday, December 14, 2011 11:06 AM
To: Post all your questions about iText here
Subject: [iText-questions] Antwort: Re: Antwort: Re: Converting Fax Tiff toPDF
In ad
In addition to the error Keith found there is another one. You've missed
to include the second last line of coding in the if clause with the
special handling for images with different dpi values.
***
'if images have a different resolution (dpi value) for
x and y the scaling
On Wed, Dec 14, 2011 at 3:59 PM, Hugh McLaughlin wrote:
> Thanks for the response and offer. I have attached the code in a text file.
> I'm not sure if it is a Java to C# to Vb.Net problem or a possible difference
> between the iText and the iTextSharp port. Since I'm pretty new to the whole
Attila,
aszomor wrote
> Michael,
>
>> Wait for Paulo to finish working on PAdES-LTV specific verification or do
>> it
>> yourself... ;)
>
> Is it possible to know about when it get ready ?
That I cannot tell.
Paulo,
any estimates?
Regards, Michael
--
View this message in context:
http:/
Thanks for the response and offer. I have attached the code in a text file.
I'm not sure if it is a Java to C# to Vb.Net problem or a possible difference
between the iText and the iTextSharp port. Since I'm pretty new to the whole
iText scene, I'm still chasing my tale little bit with the dif
On Wed, Dec 14, 2011 at 2:20 PM, Hugh McLaughlin wrote:
> Yeah, it looks like it. So any idea where I'm jumping the track on my Vb.Net
> and iTextSharp implementation?
Since this seems to be a problem with a C# => vb.net conversion, send
me an attachment with what you have. But please only th
Yeah, it looks like it. So any idea where I'm jumping the track on my Vb.Net
and iTextSharp implementation?
-Original Message-
From: Keith O [mailto:kuujinbo.mail.l...@googlemail.com]
Sent: Wednesday, December 14, 2011 1:45 AM
To: Post all your questions about iText here
Subject: Re: [
Of course!
iText is not build for Android
as explained before..
On 14/12/11 10:33, Brage wrote:
> Thanks.
> It seams that it's impossible to use CJK fonts on android with itext.
>
>
> -- Original --
> *From:* "iText Info";
> *Date:* 2011年12月14日(星期三) 下午4:5
Thanks.
It seams that it's impossible to use CJK fonts on android with itext.
-- Original --
From: "iText Info";
Date: 2011年12月14日(星期三) 下午4:50
To: "itext-questions";
Subject: Re: [iText-questions] Using itextpdf-5.1.3,itext-asian to write
Chinese is ok on the
Hi,
pdfTable.DefaultCell.HorizontalAlignment = Element.ALIGN_LEFT;
pdfTable.DefaultCell.NoWrap = true;
pdfTable.AddCell(new Phrase("bla bla", FontFactory.GetFont("Courier", 5)));
OR
pdfCell = new PdfPCell(new Phrase("bla bla",
FontFactory.GetFont("Courier", 5)));
pdfCell.HorizontalAlignment =
As you know, the Java code you write for Android isn't executed on the
Java Virtual Machine from Oracle, but on the Dalvik VM. There's a
difference between both VMs. Google has compiled a whitelist of Java
classes that are allowed on Android. All classes not on this list can't
be used. This "fo
file = new FileOutputStream("test.pdf");
Document document = new Document();
PdfWriter.getInstance(document, file);
document.open();
BaseFont bf=BaseFont.createFont( "STSong-Light", "UniGB-UCS2-H",
BaseFont.NOT_EMBEDDED);
Font font=new Font(bf,12,Font.NORMAL);
I was able to solve this a with a workaround. I created two form fields, one
above the other. "formfieldtop" and "formfieldbottom". Then I manage the
line break in my JAVA code likeso:
String valueString= getValueString();
if(valueString.length()>60){
int half = valueString.length()/2;
20 matches
Mail list logo