Re: [iText-questions] rotation issues

2012-01-20 Thread Stephen More
I have solved my issue by switching to com.itextpdf.text.pdf.PdfCopy. I no longer need a separate rotate process, but if I did com.itextpdf.text.pdf.PdfDictionary and com.itextpdf.text.pdf.PdfStamper will rotate. On Thu, Jan 19, 2012 at 12:34 PM, Stephen More wrote: > I have tried multiple ways

[iText-questions] rotation issues

2012-01-19 Thread Stephen More
I have tried multiple ways to rotate the content of a page using 5.1.3, but nothing seems to be working for me. I either get a blank page, or no difference. current working code: com.itextpdf.text.pdf.PdfDictionary pageDict = reader.getPageN( pageNum ); com.itextpd

Re: [iText-questions] Rotation of PDF with pdfsmartcopy?

2011-07-28 Thread 1T3XT BVBA
On 27/07/2011 19:09, Botte, John wrote: I am currently using pdfsmartcopy to merge documents that have annotations. Is there a way to rotate these documents without using a writer and maintaining annotations? I'm not sure if I understand this question. What exactly do you mean: do you want

[iText-questions] Rotation of PDF with pdfsmartcopy?

2011-07-27 Thread Botte, John
I am currently using pdfsmartcopy to merge documents that have annotations. Is there a way to rotate these documents without using a writer and maintaining annotations? Thanks, John -- Got Input? Slash

Re: [iText-questions] Rotation from center point of any object

2010-02-23 Thread 1T3XT info
rhul_rk wrote: > Can any one help us??? As I said before, and as you confirmed: it's a not an iText question, but a question about algebra. You do the math... -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info --

Re: [iText-questions] Rotation from center point of any object

2010-02-23 Thread Paulo Soares
sday, February 23, 2010 11:10 AM > To: [email protected] > Subject: [iText-questions] Rotation from center point of any object > > > Hi Everyone!!! > > Just want to know, is there any mechanism in iTextSharp to > rotate the object > from cente

[iText-questions] Rotation from center point of any object

2010-02-23 Thread rhul_rk
Hi Everyone!!! Just want to know, is there any mechanism in iTextSharp to rotate the object from center point of object, instead of Bottom left Corner. iTextSharp has a rotation mechanism which is "Image.RotationDegree=45". But it is not allowing us to rotate the object from center point. It allo

RE: [iText-questions] rotation of textcolumn

2005-04-19 Thread Paulo Soares
PdfContentByte.concatCTM() or PdfContentByte.transform(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Thomas Kübler > Sent: Tuesday, April 19, 2005 4:50 PM > To: [email protected] > Subject: [iText-q

[iText-questions] rotation of textcolumn

2005-04-19 Thread Thomas Kübler
hallo to all, how can i rotate a textcolumn? with regards thomas kübler -- Dynamic Document Solution variex Alt-Marienfelde 25 12277 Berlin t. + 49 (0)30.723.23.183 f. + 49 (0)30.723.23.185 mobil +49 (0)163 633 36 96 www.variex.de Ansprechpartner [EMAIL PROTECTED] --

RE: [iText-questions] rotation of PdfTable in a PdfStamper

2003-11-03 Thread Paulo Soares
Use PdfContentByte.concatCTM() or PdfContentByte.transform() before placing the table. Best Regards, Paulo Soares > -Original Message- > From: Philippe Couas [SMTP:[EMAIL PROTECTED] > Sent: Monday, November 03, 2003 14:43 > To: [EMAIL PROTECTED] > Subject: [

[iText-questions] rotation of PdfTable in a PdfStamper

2003-11-03 Thread Philippe Couas
Title: Message Hi, I need to create a new PDF document, this document use, a model in landscape mode, arotate logo and an rotate text in a Table     I use a Pdfreader for reading my model and PdfStamper for writing it, next i have added a rotated background image, and now i need to add a Pd

RE: [iText-questions] rotation

2003-03-26 Thread Matt Benson
Sent: Tuesday, March 25, 2003 20:26 > > To: Paulo Soares; itext-questions > > Subject:Re: [iText-questions] rotation > > > > Is there a way to convert a PdfImportedPage to an > > Image so that I can avoid duplication of code and > use > > matrix()

RE: [iText-questions] rotation

2003-03-26 Thread Paulo Soares
See the code in PdfContentByte.addImage(). Best Regards, Paulo Soares > -Original Message- > From: Matt Benson [SMTP:[EMAIL PROTECTED] > Sent: Tuesday, March 25, 2003 20:26 > To: Paulo Soares; itext-questions > Subject: Re: [iText-questions] rotation > > Is t

Re: [iText-questions] rotation

2003-03-25 Thread Matt Benson
D]> > To: "itext-questions" > <[EMAIL PROTECTED]> > Sent: Thursday, March 20, 2003 21:11 > Subject: [iText-questions] rotation > > > > I am using the following values to assist with > > (clockwise) rotation: > > > > 90 degrees: 0, -1, 1, 0,

Re: [iText-questions] rotation

2003-03-20 Thread Paulo Soares
ssage - From: "Matt Benson" <[EMAIL PROTECTED]> To: "itext-questions" <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 21:11 Subject: [iText-questions] rotation > I am using the following values to assist with > (clockwise) rotation: > > 90 degrees: 0, -1, 1

Re: [iText-questions] rotation

2003-03-20 Thread Leonard Rosenthol
At 1:11 PM -0800 3/20/03, Matt Benson wrote: I am using the following values to assist with (clockwise) rotation: 90 degrees: 0, -1, 1, 0, 0, rect.height() 180 degrees: -1, 0, 0, -1, rect.width(), rect.height() 270 degrees: 0, 1, -1, 0, rect.width(), 0 0/360 degrees: 1, 0, 0, 1, 0, 0 Those seem co

[iText-questions] rotation

2003-03-20 Thread Matt Benson
I am using the following values to assist with (clockwise) rotation: 90 degrees: 0, -1, 1, 0, 0, rect.height() 180 degrees: -1, 0, 0, -1, rect.width(), rect.height() 270 degrees: 0, 1, -1, 0, rect.width(), 0 0/360 degrees: 1, 0, 0, 1, 0, 0 Paulo gave me the values for 90 and 0/360 ages ago and I