Does anyone know if it's possible to add a vertical textbox to a PDF document using itextsharp.
I have tried rotating the page first
PdfDictionary pDict = reader.GetPageN(1);
pDict.Put(PdfName.ROTATE, new PdfNumber(90));
AddTextBox(stamper, ...........)
// Rotate back
but this just adds the textbox horizontally, do I need to get another instance of stamper after the rotation?