How to Convert PDF in landscape mode in C#

First
  1. Document document = new Document(PageSize.A4_LANDSCAPE);    
  2. document.SetPageSize(iTextSharp.text.PageSize.A4.Rotate());   
Second
  1. // it is for portrait pdf    
  2.     
  3. Rectangle A4 = new RectangleReadOnly(595,842);    
  4.     
  5. // For landscape    
  6.     
  7. Document doc = new Document(PageSize.A4, 88f, 88f, 10f, 10f);